Created
November 16, 2021 09:18
-
-
Save Yevgnen/f2b1a3a3822ba40ef266be3819c34d40 to your computer and use it in GitHub Desktop.
poetry debug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "venv" | |
version = "0.1.0" | |
description = "Virtual Env." | |
authors = ["Yevgnen Koh <[email protected]>"] | |
[[tool.poetry.source]] | |
name = "default" | |
url = "https://pypi.org/simple/" | |
default = true | |
[[tool.poetry.source]] | |
name = "pytorch" | |
url = "https://download.pytorch.org/whl/cu113/" | |
[tool.poetry.dependencies] | |
python = "3.8" | |
contexttimer = "^0.3.3" | |
dash = "^2.0.0" | |
datasets = "^1.15.1" | |
elasticsearch = "^7.15.2" | |
faiss-cpu = "^1.7.1" | |
fuzzywuzzy = "^0.18.0" | |
gensim = "^4.1.2" | |
h2o = "^3.34.0" | |
h5py = "^3.5.0" | |
imbalanced-learn = "^0.8.1" | |
jieba = "^0.42.1" | |
lightgbm = "^3.3.1" | |
matplotlib = "^3.4.3" | |
nltk = "^3.6.5" | |
numpy = "^1.21.4" | |
opencc-python-reimplemented = "^0.1.6" | |
openpyxl = "^3.0.9" | |
pandas = "^1.3.4" | |
pandas-log = "^0.1.7" | |
psutil = "^5.8.0" | |
pyahocorasick = "^1.4.2" | |
pyarrow = "^6.0.0" | |
pybrat = "^0.1.4" | |
pytoml = "^0.1.21" | |
pytorch-crf = "^0.7.2" | |
pytorch-nlp = "^0.5.0" | |
pyyaml = "^6.0" | |
rouge = "^1.0.1" | |
ruyaml = "^0.20.0" | |
scipy = "^1.7.2" | |
seaborn = "^0.11.2" | |
sentence-transformers = "^2.1.0" | |
seqeval = "^1.2.2" | |
spacy = "^3.2.0" | |
sru = "^2.6.0" | |
streamlit = "^1.2.0" | |
tensorboard = "^2.7.0" | |
toml = "^0.10.2" | |
torch = { version = "=1.10.0+cu113", source = "pytorch" } | |
torchvision = { version = "=0.11.1+cu113", source = "pytorch" } | |
torch-cluster = "^1.5.9" | |
torch-geometric = "^2.0.2" | |
torch-scatter = "^2.0.9" | |
torch-sparse = "^0.6.12" | |
torchelastic = "^0.2.2" | |
transformers = "^4.12.3" | |
umap-learn = "^0.5.2" | |
wandb = "^0.12.6" | |
xgboost = "^1.5.0" | |
xlrd = "^2.0.1" | |
onnx = "^1.10.2" | |
onnxruntime = "^1.9.0" | |
onnxoptimizer = "^0.2.6" | |
onnxruntime-tools = "^1.7.0" | |
pycarton = { path = "../../../git/pycarton", develop = true} | |
texi = { path = "../../../git/texi", develop = true} | |
pytorch-light = { path = "../../../git/pytorch-light", develop = true} | |
pytorch-ignite = "^0.4.7" | |
pyspark = "^3.2.0" | |
py7zr = "^0.16.3" | |
orjson = "^3.6.4" | |
simplejson = "^3.17.5" | |
scikit-learn = "^1.0.1" | |
nebula2-python = "^2.6.0" | |
[tool.poetry.dev-dependencies] | |
better-exceptions = "^0.3.3" | |
ipdb = "^0.13.9" | |
ipython = "^7.29.0" | |
jupyter-nbextensions-configurator = "^0.4.1" | |
loguru = "^0.5.3" | |
watchpoints = "^0.2.5" | |
jupyter = "^1.0.0" | |
jupyter-client = "^7.0.6" | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment