All Downloads are FREE. Search and download functionalities are using the official Maven repository.

axle.nlp.Language.scala Maven / Gradle / Ivy

The newest version!
package axle.nlp

trait Language {

  def stopWords: Set[String]

  def tokenize(s: String): IndexedSeq[String]

  def stem(word: String): String

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy