Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dkuku/ex_final_fusion
https://github.com/dkuku/ex_final_fusion
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dkuku/ex_final_fusion
- Owner: dkuku
- Created: 2024-04-09T22:39:14.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-04-13T22:08:55.000Z (8 months ago)
- Last Synced: 2024-04-13T23:53:50.977Z (8 months ago)
- Language: Elixir
- Size: 375 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ExFinalFusion
ExFinalFusion is an Elixir binding to the Rust crate.
[finalfusion](https://crates.io/crates/finalfusion)Finalfusion is a file format for word embeddings,
along with an associated set of libraries and utilities.From the crate documentation:
finalfusion supports a variety of formats:
- Vocabulary
- Subwords
- No subwords
- Storage
- Array
- Memory-mapped
- Quantized
- Format
- finalfusion
- fastText
- floret
- GloVe
- word2vecMoreover, finalfusion provides:
- Similarity queries
- Analogy queries
- Quantizing embeddings through reductive
- Conversion to the following formats:
- finalfusion
- word2vec
- GloVe[final fusion file format](https://finalfusion.github.io/spec)
[Project page](https://finalfusion.github.io/)
[Train embeddings](https://finalfusion.github.io/finalfrontier.html)
Where to get models:
- [Fasttext models](https://fasttext.cc/)
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `ex_final_fusion` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:ex_final_fusion, "~> 0.1.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at .