-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
46 lines (42 loc) · 1.09 KB
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[[source]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu/torch_stable.html"
verify_ssl = true
[packages]
elasticsearch = ">=6.0.0,<7.0.0"
requests = {extras = ["socks"], version = "*"}
nltk = "*"
numpy = "*"
pandas = "==1.2.4"
tqdm = "*"
#torch = { file = "https://download.pytorch.org/whl/cpu/torch-1.9.0%2Bcpu-cp39-cp39-linux_x86_64.whl" }
torch = { index = "pytorch-cpu", version = "*" }
transformers = "*"
networkx = "*"
chinese-whispers = {editable = true, git = "https://github.com/nlpub/chinese-whispers-python.git"}
matplotlib = "*"
tikzplotlib = "*"
qwikidata = "*"
wikipedia = "*"
termcolor = "*"
ipython = "*"
ipykernel = "*"
nbdime = "*"
sentence-transformers = "*"
pyvis = "*"
rouge-metric = "*"
requests-cache = "*"
gensim = "*"
spacy = "*"
en-core-web-trf = {file = "https://github.com/explosion/spacy-models/releases/download/en_core_web_trf-3.2.0/en_core_web_trf-3.2.0-py3-none-any.whl"}
tabulate = "*"
network2tikz = "*"
[dev-packages]
jupyter-spaces= "*"
pylama = "*"
[requires]
python_version = "3.9"