The fasttest is "Library for efficient text classification and representation learning"
457
The FastText is "Library for efficient text classification and representation learning". THe FastText is an open-source, free, lightweight library that allows users to learn text representations and text classifiers. It works on standard, generic hardware. Models can later be reduced in size to even fit on mobile devices.
Dockerfile and example for Facebook Research's fastText.
The quickest way to see the fastText classification tutorial with fastText-docker is:
docker pull hephaex/fasttext:latest
mkdir -p /tmp/data && mkdir -p /tmp/result
docker run --rm -v /tmp/data:/data -v /tmp/result:/result -it hephaex/fasttext ./example-train.sh
$ mkdir -p /tmp/data && mkdir -p /tmp/result
$ docker run --rm -it -v /tmp/data:/data -v /tmp/result:/result hephaex/fasttext train.sh $[input data] $[output model]
The development container is meant to be interactive, so the best way to use it is probably with a mounted volume and bash.
$ mkdir -p /tmp/data && mkdir -p /tmp/result
$ docker run --rm -it -v /tmp/data:/data -v /tmp/result:/result fasttext /bin/bash
Content type
Image
Digest
Size
412.6 MB
Last updated
over 8 years ago
docker pull hephaex/fasttext