Details about the algorithm can be found in I. Segalovich «A fast morphological algorithm with unknown word guessing induced by a dictionary for a web search engine», MLMTA-2003, Las Vegas, Nevada, USA.
The wrapper's code in under MIT license, but please remember that Yandex.MyStem is not open source and licensed under conditions of the Yandex License.
The wrapper should at least work on Ubuntu Linux 12.04+, and Windows 7+.
<dependency>
<groupId>ru.stachek66.nlp</groupId>
<artifactId>mystem-scala</artifactId>
<version>0.1.3</version>
</dependency>Only mystem 3.0 is supported currently. Please create issues for compatibility troubles and other requests (https://github.com/alexeyev/mystem-scala/issues)
Probably the most important thing to remember when working with mystem-scala is that you should have just one MyStem instance per mystem/mystem.exe file in your application.
###Scala
import java.io.File
import ru.stachek66.nlp.mystem.holding.{Factory, MyStem, Request}
object MystemSingletonScala {
val mystemAnalyzer: MyStem =
new Factory("-igd --eng-gr --format json --weight")
.newMyStem(
"3.0",
Option(new File("/home/coolguy/coolproject/3dparty/mystem")))
}
object AppExampleScala extends App {
MystemSingletonScala
.mystemAnalyzer
.analyze(Request("Есть большие пассажиры мандариновой травы"))
.info
.foreach(info => println(info.initial + " -> " + info.lex))
}###Java
import ru.stachek66.nlp.mystem.holding.Factory;
import ru.stachek66.nlp.mystem.holding.MyStem;
import scala.Option;
import java.io.File;
public class MystemSingleton {
public final static MyStem mystemAnalyzer =
new Factory("-igd --eng-gr --format json --weight")
.newMyStem(
"3.0",
Option.apply(new File("/home/coolguy/coolproject/3dparty/mystem")));
}import ru.stachek66.nlp.mystem.holding.Request;
import ru.stachek66.nlp.mystem.model.Info;
import scala.collection.JavaConversions;
public class AppExample {
public static void main(final String[] args) {
final Iterable<Info> result =
JavaConversions.asJavaIterable(
MystemSingleton
.mystemAnalyzer
.analyze(Request.apply("Есть загадочные девушки с магнитными глазами"))
.info()
.toIterable());
for (final Info info : result) {
System.out.println(info.initial() + " -> " + info.lex());
}
}
}Anton Alekseev anton.m.alexeyev@gmail.com