Allow passing max number of collocates

Change-Id: Ida073dde970549974adff899891ae1f4b968b83a
4 files changed
tree: 7ec3912816a1ffbc188f3e05421c981055a9b479
  1. .github/
  2. src/
  3. test/
  4. .gitignore
  5. .gitlab-ci.yml
  6. Artifacts.toml
  7. LICENSE
  8. Manifest.toml
  9. Project.toml
  10. README.md
README.md

DerekoVecs.jl

Minimal Julia package to load and use dereko2vec language models.

Currently, only paradigmatic analysis is supported.

Installation

From the command line:

julia -e 'using Pkg; Pkg.add(url = "https://korap.ids-mannheim.de/gerrit/ids-kl/DerekoVecs.jl")'

From within Julia:

pkg> add "https://korap.ids-mannheim.de/gerrit/ids-kl/DerekoVecs.jl"

Example Usage

using DerekoVecs

model = load("model.vecs")

knn(model, "interessant", 10)

cos_sim(model, "gut", "besser")


model2 = load("model2.vecs")
cos_sim(model, model2, "also")

kld(model2, model)

c = get_collocates(model)

License

This package is licensed under the Apache License 2.0