nexusbert commited on
Commit
9cc6459
·
1 Parent(s): 2e77991

tokenizer fix for BIOGPT

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. requirements.txt +1 -0
Dockerfile CHANGED
@@ -21,7 +21,7 @@ COPY requirements.txt .
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
23
  # Hugging Face + model tools
24
- RUN pip install --no-cache-dir huggingface-hub sentencepiece accelerate
25
 
26
  # Hugging Face cache environment
27
  ENV HF_HOME=/models/huggingface \
 
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
23
  # Hugging Face + model tools
24
+ RUN pip install --no-cache-dir huggingface-hub sentencepiece accelerate sacremoses
25
 
26
  # Hugging Face cache environment
27
  ENV HF_HOME=/models/huggingface \
requirements.txt CHANGED
@@ -7,4 +7,5 @@ Pillow
7
  requests
8
  hyperon
9
  uvicorn
 
10
 
 
7
  requests
8
  hyperon
9
  uvicorn
10
+ sacremoses
11