Spaces:
Sleeping
Sleeping
File size: 485 Bytes
3f9f23d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[tool.poetry]
name = "nlp2024-title-search"
version = "0.1.0"
description = ""
authors = ["Kaito Sugimoto <[email protected]>"]
readme = "README.md"
packages = [{include = "nlp2024_title_search"}]
[tool.poetry.dependencies]
python = "^3.10"
transformers = "^4.37.2"
beautifulsoup4 = "^4.12.3"
requests = "^2.31.0"
pandas = "^2.2.0"
torch = "^2.2.0"
faiss-cpu = "^1.7.4"
streamlit = "^1.31.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|