├── .gitignore ├── LICENSE ├── README.md ├── bentofile-gpu.yaml ├── bentofile.yaml ├── client.py ├── embedding_runnable.py ├── import_model.py ├── release.sh ├── requirements.txt ├── sentence_embedding.ipynb └── service.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/README.md -------------------------------------------------------------------------------- /bentofile-gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/bentofile-gpu.yaml -------------------------------------------------------------------------------- /bentofile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/bentofile.yaml -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/client.py -------------------------------------------------------------------------------- /embedding_runnable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/embedding_runnable.py -------------------------------------------------------------------------------- /import_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/import_model.py -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/release.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | transformers 3 | bentoml 4 | pydantic>2.0 5 | -------------------------------------------------------------------------------- /sentence_embedding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/sentence_embedding.ipynb -------------------------------------------------------------------------------- /service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/sentence-embedding-bento/HEAD/service.py --------------------------------------------------------------------------------