├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lmdb_embeddings ├── __init__.py ├── exceptions.py ├── reader.py ├── serializers.py ├── tests │ ├── __init__.py │ └── test_embeddings.py └── writer.py ├── setup.cfg └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/README.md -------------------------------------------------------------------------------- /lmdb_embeddings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/__init__.py -------------------------------------------------------------------------------- /lmdb_embeddings/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/exceptions.py -------------------------------------------------------------------------------- /lmdb_embeddings/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/reader.py -------------------------------------------------------------------------------- /lmdb_embeddings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/serializers.py -------------------------------------------------------------------------------- /lmdb_embeddings/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/tests/__init__.py -------------------------------------------------------------------------------- /lmdb_embeddings/tests/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/tests/test_embeddings.py -------------------------------------------------------------------------------- /lmdb_embeddings/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/lmdb_embeddings/writer.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtRiver/lmdb-embeddings/HEAD/setup.py --------------------------------------------------------------------------------