Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -1,7 +1,8 @@
1
  # --- Lens en offload complet pour GPU 16 Go ---
2
-
3
- !git clone https://github.com/microsoft/Lens.git
4
- !pip install diffusers transformers accelerate sentencepiece
 
5
 
6
  import sys
7
  sys.path.append("/content/Lens")
 
1
  # --- Lens en offload complet pour GPU 16 Go ---
2
+ # importing os for running commands.
3
+ import os
4
+ os.system("git clone https://github.com/microsoft/Lens.git")
5
+ os.system("pip install diffusers transformers accelerate sentencepiece")
6
 
7
  import sys
8
  sys.path.append("/content/Lens")