Categorygithub.com/ekzhu/go-fasttext
modulepackage
0.0.0-20201031062930-7a691b47fa53
Repository: https://github.com/ekzhu/go-fasttext.git
Documentation: pkg.go.dev

# README

go-fasttext

Build Status

Usage Guide and API Documentation

This package provides a Go API for the Facebook's fastText dataset for word embeddings, with data stored in a persistent SQLite database.

# Functions

NewFastText starts a new FastText session given the location of the SQLite3 database file.
NewFastTextInMem creates a new FastText session that uses an in-memory database for faster query time.

# Constants

Dim is the number of dimensions in FastText word embedding vectors.
TableName used in SQLite3.

# Variables

ByteOrder is for the serialization of the embedding vector in SQLite3 database.
ErrNoEmbFound ...

# Structs

The FastText session.