Serving fastText model with go
- fastText
- cmake
This version still have dependency to libfasttext shared & static libraries and need to be located somewhere in the system in LD_LIBRARY_PATH (usually in /usr/local/lib)
- Install fastText with cmake. This will install dependencies to your system.
The use of this library is as easy as loading the model and call Predict
function. Result will be a list of struct of label and probabilities.
m, err := New("dbpedia.ftz")
result := m.Predict("this is testing", 5, float32(0.01))