Spaces:
Runtime error
Runtime error
Commit
·
e542316
1
Parent(s):
f40c79e
merge requirements
Browse files- Dockerfile +1 -1
- requirements.txt +27 -0
Dockerfile
CHANGED
@@ -10,7 +10,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
RUN git clone --recurse-submodules -j8 https://github.com/gorkemozkaya/nmt-en-tr.git
|
13 |
-
RUN pip install --user -r /code/nmt-en-tr/models/official/requirements.txt
|
14 |
RUN pip install -e /code/nmt-en-tr/datasets
|
15 |
RUN wget -nc https://github.com/gorkemozkaya/nmt-en-tr/releases/download/pretrained_model_v2/pretrained_v2.zip
|
16 |
RUN unzip -n - pretrained_v2.zip
|
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
RUN git clone --recurse-submodules -j8 https://github.com/gorkemozkaya/nmt-en-tr.git
|
13 |
+
# RUN pip install --user -r /code/nmt-en-tr/models/official/requirements.txt
|
14 |
RUN pip install -e /code/nmt-en-tr/datasets
|
15 |
RUN wget -nc https://github.com/gorkemozkaya/nmt-en-tr/releases/download/pretrained_model_v2/pretrained_v2.zip
|
16 |
RUN unzip -n - pretrained_v2.zip
|
requirements.txt
CHANGED
@@ -4,4 +4,31 @@ tensorflow-text==2.8.2
|
|
4 |
tensorflow-addons==0.17.1
|
5 |
gin-config==0.5.0
|
6 |
etils==1.3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
notebook
|
|
|
4 |
tensorflow-addons==0.17.1
|
5 |
gin-config==0.5.0
|
6 |
etils==1.3.0
|
7 |
+
six
|
8 |
+
google-api-python-client>=1.6.7
|
9 |
+
kaggle>=1.3.9
|
10 |
+
numpy>=1.15.4
|
11 |
+
oauth2client
|
12 |
+
pandas>=0.22.0
|
13 |
+
psutil>=5.4.3
|
14 |
+
py-cpuinfo>=3.3.0
|
15 |
+
scipy>=0.19.1
|
16 |
+
tensorflow-hub>=0.6.0
|
17 |
+
tensorflow-model-optimization>=0.4.1
|
18 |
+
tensorflow-datasets
|
19 |
+
dataclasses;python_version<"3.7"
|
20 |
+
gin-config
|
21 |
+
tf_slim>=1.1.0
|
22 |
+
Cython
|
23 |
+
matplotlib
|
24 |
+
# Loader becomes a required positional argument in 6.0 in yaml.load
|
25 |
+
pyyaml>=5.1,<6.0
|
26 |
+
# CV related dependencies
|
27 |
+
opencv-python-headless
|
28 |
+
Pillow
|
29 |
+
pycocotools
|
30 |
+
# NLP related dependencies
|
31 |
+
seqeval
|
32 |
+
sentencepiece
|
33 |
+
sacrebleu
|
34 |
notebook
|