Spaces:
Running
Running
Create requirements.txt
Browse files- requirements.txt +9 -0
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Required libraries for the Gradio Translator App
|
2 |
+
|
3 |
+
gradio
|
4 |
+
transformers>=4.20.0 # Using a base version for compatibility
|
5 |
+
torch>=1.8.0 # PyTorch backend for transformers
|
6 |
+
sentencepiece # Required tokenizer for the NLLB model
|
7 |
+
|
8 |
+
# Note: Ensure these versions are compatible with your environment
|
9 |
+
# You might adjust versions based on specific needs or Hugging Face Space requirements
|