├── .gitignore ├── README.md ├── embeddings.asd ├── embeddings.lisp ├── package.lisp └── version.sexp /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atgreen/cl-embeddings/HEAD/README.md -------------------------------------------------------------------------------- /embeddings.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atgreen/cl-embeddings/HEAD/embeddings.asd -------------------------------------------------------------------------------- /embeddings.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atgreen/cl-embeddings/HEAD/embeddings.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atgreen/cl-embeddings/HEAD/package.lisp -------------------------------------------------------------------------------- /version.sexp: -------------------------------------------------------------------------------- 1 | "1.0.0" 2 | --------------------------------------------------------------------------------