Ineovitas commited on
Commit
ac4b613
1 Parent(s): 79215c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -3,6 +3,10 @@ import os
3
  #download for mecab
4
  os.system('python -m unidic download')
5
 
 
 
 
 
6
  # we need to compile a CUBLAS version
7
  # Or get it from https://jllllll.github.io/llama-cpp-python-cuBLAS-wheels/
8
  os.system('CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python==0.2.11')
 
3
  #download for mecab
4
  os.system('python -m unidic download')
5
 
6
+
7
+ # Ajout : il semble manquer des éléments de deepspeed
8
+ os.system('pip install deepspeed')
9
+
10
  # we need to compile a CUBLAS version
11
  # Or get it from https://jllllll.github.io/llama-cpp-python-cuBLAS-wheels/
12
  os.system('CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python==0.2.11')