Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
/ embeddings-kt Public archive

A easy-to-use library for Word Embeddings for JVM (written in Kotlin)

License

Notifications You must be signed in to change notification settings

londogard/embeddings-kt

Repository files navigation

Buy Me a Coffee at ko-fi.com

⚠️ This project is archived in favour of https://github.com/londogard/londogard-nlp-toolkit ⚠️

londogard-nlp-toolkit contains all "general" NLP utilties for Kotlin in a small package keeping dependencies low. Tools such as the summarizer will still be kept separate.
Word Embedding functionality exists under com.londogard.nlp.embeddings! :)

This library should continue to be functional though as the core logic is completed if you so wish.


embeddings-kt

A easy-to-use library for Word Embeddings for JVM (written in Kotlin)

Installation

Jitpack (the easiest)
Add the following to your build.gradle. $version should be equal to the version supplied by tag above.

repositories {
  maven { url "https://jitpack.io" }
}
dependencies {
  implementation 'com.londogard:smile-nlp-kt:$version'
}        
GitHub Packages
Add the following to your build.gradle. $version should be equal to the version supplied by tag above. The part with logging into github repository is how I understand that you need to login. If you know a better way please ping me in an issue.

repositories {
   maven {
     url = uri("https://maven.pkg.github.com/londogard/smile-nlp-kt")
     credentials {
         username = project.findProperty("gpr.user") ?: System.getenv("GH_USERNAME")
         password = project.findProperty("gpr.key") ?: System.getenv("GH_TOKEN")
     }
}
}
dependencies {
   implementation "com.londogard:smile-nlp-kt:$version"
}   

Usage

TODO()

TODO

  • Add usage section
  • Add SIF Embeddings
  • Add test for TfIdf Embeddings
  • Add some kind of documentation

About

A easy-to-use library for Word Embeddings for JVM (written in Kotlin)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages