Spaces:
Sleeping
Sleeping
Gosse Minnema
commited on
Commit
•
ee23fc5
1
Parent(s):
05922fb
Change notebook version
Browse files- Dockerfile +1 -1
- requirements.txt +15 -15
- requirements_from_rug_demo_version.txt +210 -0
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
FROM python:3.9
|
2 |
WORKDIR /app
|
3 |
ADD . /app
|
4 |
-
RUN pip install -r
|
5 |
CMD ["python", "-m", "sociolome.lome_webserver", "0.0.0.0"]
|
|
|
1 |
FROM python:3.9
|
2 |
WORKDIR /app
|
3 |
ADD . /app
|
4 |
+
RUN pip install -r requirements_from_rug_demo_version.txt
|
5 |
CMD ["python", "-m", "sociolome.lome_webserver", "0.0.0.0"]
|
requirements.txt
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
allennlp
|
2 |
-
allennlp-models
|
3 |
-
transformers>=4.0.0 # Why is huggingface so unstable?
|
4 |
-
numpy
|
5 |
-
torch>=1.7.0,<1.8.0
|
6 |
-
tqdm
|
7 |
-
nltk
|
8 |
-
overrides
|
9 |
-
concrete
|
10 |
-
flask
|
11 |
-
scipy
|
12 |
-
https://github.com/explosion/spacy-models/releases/download/it_core_news_md-3.0.0/it_core_news_md-3.0.0-py3-none-any.whl
|
13 |
-
https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.0.0/en_core_web_md-3.0.0-py3-none-any.whl
|
14 |
-
https://github.com/explosion/spacy-models/releases/download/nl_core_news_md-3.0.0/nl_core_news_md-3.0.0-py3-none-any.whl
|
15 |
-
https://github.com/explosion/spacy-models/releases/download/xx_sent_ud_sm-3.0.0/xx_sent_ud_sm-3.0.0-py3-none-any.whl
|
|
|
1 |
+
allennlp==2.8.0
|
2 |
+
allennlp-models==2.8.0
|
3 |
+
# transformers>=4.0.0 # Why is huggingface so unstable?
|
4 |
+
# numpy
|
5 |
+
# torch>=1.7.0,<1.8.0
|
6 |
+
# tqdm
|
7 |
+
# nltk
|
8 |
+
# overrides
|
9 |
+
# concrete
|
10 |
+
# flask
|
11 |
+
# scipy
|
12 |
+
# https://github.com/explosion/spacy-models/releases/download/it_core_news_md-3.0.0/it_core_news_md-3.0.0-py3-none-any.whl
|
13 |
+
# https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.0.0/en_core_web_md-3.0.0-py3-none-any.whl
|
14 |
+
# https://github.com/explosion/spacy-models/releases/download/nl_core_news_md-3.0.0/nl_core_news_md-3.0.0-py3-none-any.whl
|
15 |
+
# https://github.com/explosion/spacy-models/releases/download/xx_sent_ud_sm-3.0.0/xx_sent_ud_sm-3.0.0-py3-none-any.whl
|
requirements_from_rug_demo_version.txt
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
aiohttp==3.8.1
|
2 |
+
aiosignal==1.2.0
|
3 |
+
allennlp==2.8.0
|
4 |
+
allennlp-models==2.8.0
|
5 |
+
argon2-cffi==21.3.0
|
6 |
+
argon2-cffi-bindings==21.2.0
|
7 |
+
asttokens==2.0.5
|
8 |
+
async-timeout==4.0.2
|
9 |
+
attrs==21.4.0
|
10 |
+
backcall==0.2.0
|
11 |
+
backports.csv==1.0.7
|
12 |
+
base58==2.1.1
|
13 |
+
beautifulsoup4==4.10.0
|
14 |
+
black==21.12b0
|
15 |
+
bleach==4.1.0
|
16 |
+
blis==0.7.5
|
17 |
+
boto==2.49.0
|
18 |
+
boto3==1.20.41
|
19 |
+
botocore==1.23.41
|
20 |
+
bottle==0.12.19
|
21 |
+
cached-path==0.3.2
|
22 |
+
cachetools==4.2.4
|
23 |
+
catalogue==2.0.6
|
24 |
+
certifi==2021.10.8
|
25 |
+
cffi==1.15.0
|
26 |
+
chardet==4.0.0
|
27 |
+
charset-normalizer==2.0.10
|
28 |
+
# checklist==0.0.11
|
29 |
+
cheroot==8.6.0
|
30 |
+
CherryPy==18.6.1
|
31 |
+
click==7.1.2
|
32 |
+
concrete==4.15.1
|
33 |
+
configparser==5.2.0
|
34 |
+
conllu==4.4.1
|
35 |
+
cryptography==36.0.1
|
36 |
+
cymem==2.0.6
|
37 |
+
datasets==1.18.0
|
38 |
+
debugpy==1.5.1
|
39 |
+
decorator==5.1.1
|
40 |
+
defusedxml==0.7.1
|
41 |
+
Deprecated==1.2.13
|
42 |
+
dill==0.3.4
|
43 |
+
docker-pycreds==0.4.0
|
44 |
+
en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.0.0/en_core_web_sm-3.0.0-py3-none-any.whl
|
45 |
+
entrypoints==0.3
|
46 |
+
executing==0.8.2
|
47 |
+
fairscale==0.4.0
|
48 |
+
feedparser==6.0.8
|
49 |
+
filelock==3.3.2
|
50 |
+
Flask==2.0.2
|
51 |
+
frozenlist==1.3.0
|
52 |
+
fsspec==2022.1.0
|
53 |
+
ftfy==6.0.3
|
54 |
+
future==0.18.2
|
55 |
+
gitdb==4.0.9
|
56 |
+
GitPython==3.1.26
|
57 |
+
google-api-core==2.4.0
|
58 |
+
google-auth==2.3.3
|
59 |
+
google-cloud-core==2.2.2
|
60 |
+
google-cloud-storage==1.44.0
|
61 |
+
google-crc32c==1.3.0
|
62 |
+
google-resumable-media==2.1.0
|
63 |
+
googleapis-common-protos==1.54.0
|
64 |
+
h5py==3.6.0
|
65 |
+
huggingface-hub==0.1.2
|
66 |
+
humanfriendly==10.0
|
67 |
+
idna==3.3
|
68 |
+
iniconfig==1.1.1
|
69 |
+
ipykernel==6.7.0
|
70 |
+
ipython==8.0.1
|
71 |
+
ipython-genutils==0.2.0
|
72 |
+
ipywidgets==7.6.5
|
73 |
+
iso-639==0.4.5
|
74 |
+
it-core-news-md @ https://github.com/explosion/spacy-models/releases/download/it_core_news_md-3.0.0/it_core_news_md-3.0.0-py3-none-any.whl
|
75 |
+
itsdangerous==2.0.1
|
76 |
+
jaraco.classes==3.2.1
|
77 |
+
jaraco.collections==3.5.1
|
78 |
+
jaraco.functools==3.5.0
|
79 |
+
jaraco.text==3.6.0
|
80 |
+
jedi==0.18.1
|
81 |
+
Jinja2==3.0.3
|
82 |
+
jmespath==0.10.0
|
83 |
+
joblib==1.1.0
|
84 |
+
jsonnet==0.18.0
|
85 |
+
jsonschema==4.4.0
|
86 |
+
jupyter==1.0.0
|
87 |
+
jupyter-client==7.1.2
|
88 |
+
jupyter-console==6.4.0
|
89 |
+
jupyter-core==4.9.1
|
90 |
+
jupyterlab-pygments==0.1.2
|
91 |
+
jupyterlab-widgets==1.0.2
|
92 |
+
lmdb==1.3.0
|
93 |
+
lxml==4.7.1
|
94 |
+
MarkupSafe==2.0.1
|
95 |
+
matplotlib-inline==0.1.3
|
96 |
+
mistune==0.8.4
|
97 |
+
more-itertools==8.12.0
|
98 |
+
multidict==6.0.1
|
99 |
+
multiprocess==0.70.12.2
|
100 |
+
munch==2.5.0
|
101 |
+
murmurhash==1.0.6
|
102 |
+
mypy-extensions==0.4.3
|
103 |
+
nbclient==0.5.10
|
104 |
+
nbconvert==6.4.0
|
105 |
+
nbformat==5.1.3
|
106 |
+
nest-asyncio==1.5.4
|
107 |
+
networkx==2.6.3
|
108 |
+
nl-core-news-md @ https://github.com/explosion/spacy-models/releases/download/nl_core_news_md-3.0.0/nl_core_news_md-3.0.0-py3-none-any.whl
|
109 |
+
nltk==3.6.3
|
110 |
+
notebook==6.0.1 # solves this issue https://github.com/marcotcr/checklist/issues/144
|
111 |
+
numpy==1.22.1
|
112 |
+
overrides==3.1.0
|
113 |
+
packaging==21.3
|
114 |
+
pandas==1.4.0
|
115 |
+
pandocfilters==1.5.0
|
116 |
+
parso==0.8.3
|
117 |
+
pathspec==0.9.0
|
118 |
+
pathtools==0.1.2
|
119 |
+
pathy==0.6.1
|
120 |
+
patternfork-nosql==3.6
|
121 |
+
pdfminer.six==20211012
|
122 |
+
pexpect==4.8.0
|
123 |
+
pickleshare==0.7.5
|
124 |
+
Pillow==9.0.0
|
125 |
+
platformdirs==2.4.1
|
126 |
+
pluggy==1.0.0
|
127 |
+
portend==3.1.0
|
128 |
+
preshed==3.0.6
|
129 |
+
prometheus-client==0.12.0
|
130 |
+
promise==2.3
|
131 |
+
prompt-toolkit==3.0.24
|
132 |
+
protobuf==3.19.3
|
133 |
+
psutil==5.9.0
|
134 |
+
ptyprocess==0.7.0
|
135 |
+
pure-eval==0.2.2
|
136 |
+
py==1.11.0
|
137 |
+
py-rouge==1.1
|
138 |
+
pyarrow==6.0.1
|
139 |
+
pyasn1==0.4.8
|
140 |
+
pyasn1-modules==0.2.8
|
141 |
+
pycountry==22.1.10
|
142 |
+
pycparser==2.21
|
143 |
+
pydantic==1.8.2
|
144 |
+
Pygments==2.11.2
|
145 |
+
pyparsing==3.0.7
|
146 |
+
pyrsistent==0.18.1
|
147 |
+
pytest==6.2.5
|
148 |
+
python-dateutil==2.8.2
|
149 |
+
python-docx==0.8.11
|
150 |
+
pytz==2021.3
|
151 |
+
PyYAML==6.0
|
152 |
+
pyzmq==22.3.0
|
153 |
+
qtconsole==5.2.2
|
154 |
+
QtPy==2.0.0
|
155 |
+
redis==4.1.1
|
156 |
+
regex==2022.1.18
|
157 |
+
requests==2.27.1
|
158 |
+
rsa==4.8
|
159 |
+
s3transfer==0.5.0
|
160 |
+
sacremoses==0.0.47
|
161 |
+
scikit-learn==1.0.2
|
162 |
+
scipy==1.7.3
|
163 |
+
Send2Trash==1.8.0
|
164 |
+
sentencepiece==0.1.96
|
165 |
+
sentry-sdk==1.5.3
|
166 |
+
sgmllib3k==1.0.0
|
167 |
+
shortuuid==1.0.8
|
168 |
+
six==1.16.0
|
169 |
+
smart-open==5.2.1
|
170 |
+
smmap==5.0.0
|
171 |
+
soupsieve==2.3.1
|
172 |
+
spacy==3.0.7
|
173 |
+
spacy-legacy==3.0.8
|
174 |
+
sqlitedict==1.7.0
|
175 |
+
srsly==2.4.2
|
176 |
+
stack-data==0.1.4
|
177 |
+
subprocess32==3.5.4
|
178 |
+
tempora==5.0.0
|
179 |
+
tensorboardX==2.4.1
|
180 |
+
termcolor==1.1.0
|
181 |
+
terminado==0.12.1
|
182 |
+
testpath==0.5.0
|
183 |
+
thinc==8.0.13
|
184 |
+
threadpoolctl==3.0.0
|
185 |
+
thrift==0.11.0
|
186 |
+
tokenizers==0.10.3
|
187 |
+
toml==0.10.2
|
188 |
+
tomli==1.2.3
|
189 |
+
torch==1.7.1
|
190 |
+
torchvision==0.8.2
|
191 |
+
tornado==6.1
|
192 |
+
tqdm==4.62.3
|
193 |
+
traitlets==5.1.1
|
194 |
+
transformers==4.12.5
|
195 |
+
typer==0.3.2
|
196 |
+
typing_extensions==4.0.1
|
197 |
+
urllib3==1.26.8
|
198 |
+
wandb==0.12.9
|
199 |
+
wasabi==0.9.0
|
200 |
+
wcwidth==0.2.5
|
201 |
+
webencodings==0.5.1
|
202 |
+
Werkzeug==2.0.2
|
203 |
+
widgetsnbextension==3.5.2
|
204 |
+
word2number==1.1
|
205 |
+
wrapt==1.13.3
|
206 |
+
xx-sent-ud-sm @ https://github.com/explosion/spacy-models/releases/download/xx_sent_ud_sm-3.0.0/xx_sent_ud_sm-3.0.0-py3-none-any.whl
|
207 |
+
xxhash==2.0.2
|
208 |
+
yarl==1.7.2
|
209 |
+
yaspin==2.1.0
|
210 |
+
zc.lockfile==2.0
|