finalfusion-utils
is a Rust crate offering various
functionalities to process and query embeddings.
finalfusion-utils
supports conversion between different
formats, quantization of embedding matrices, similarity and
analogy queries as well as evaluation on analogy datasets.
cargo
finalfusion-utils
can be installed using an up-to-date Rust
toolchain, which can be installed with rustup.
With a valid Rust toolchain, the crate is most easily
installed through cargo
:
~~~shell $ cargo install finalfusion-utils ~~~
The development version of finalfusion-utils
can be directly
installed from its repository using the Nix
package manager. To install the current version from the master
branch into your user profile:
bash
$ nix-env -i \
-f https://github.com/finalfusion/finalfusion-utils/tarball/master
To install the latest release version of finalfusion-utils
, we
recommend you to use the finalfusion package
set. To install the
current release version into your user profile:
bash
nix-env -i \
-f https://github.com/finalfusion/nix-packages/tarball/master \
-A finalfusion-utils
You can get prebuilt Linux/macOS binaries using the finalfusion Cachix cache:
```bash
$ nix-env -iA cachix -f https://cachix.org/api/v1/install $ cachix use finalfusion ```
finalfusion-utils
can also be built from source,
after cloning this repository execute the following
command in the directory to find the exectuable under
target/release/finalfusion
:
~~~shell $ cargo build --release ~~~
finalfusion-utils
is built as a single binary, the
different functionality is invoked through subcommands:
~~~shell
$ finalfusion convert -f fasttext -t finalfusion \ embeddings.bin embeddings.fifu
$ finalfusion convert -f word2vec -t finalfusion \ embeddings.w2v embeddings.fifu
$ finalfusion convert --help ~~~
~~~shell
$ finalfusion quantize -f finalfusion -q pq -a 1 \ embeddings.pq ~~~
~~~ shell
$ finalfusion similar -f finalfusion -k 15 \ embeddings.fifu
$ finalfusion analogy -f finalfusion -k 5 \ Berlin Deutschland Amsterdam embeddings.fifu ~~~
~~~shell
$ finalfusion compute-accuracy embeddings.fifu \ analogies.txt ~~~
~~~shell
$ finalfusion metadata embeddings.fifu \
metadata.txt ~~~
~~~shell
$ finalfusion bucket-to-explicit buckets.fifu \ explicit.fifu ~~~
~~~shell
$ finalfusion completions zsh ~~~