Instructions to use prelington/OrcaleSeek with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastText
How to use prelington/OrcaleSeek with fastText:
from huggingface_hub import hf_hub_download import fasttext model = fasttext.load_model(hf_hub_download("prelington/OrcaleSeek", "model.bin")) - Notebooks
- Google Colab
- Kaggle
Create requirements.txt
Browse files- requirements.txt +7 -0
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch>=1.9.0
|
| 2 |
+
transformers>=4.20.0
|
| 3 |
+
datasets>=2.0.0
|
| 4 |
+
numpy>=1.21.0
|
| 5 |
+
fastapi>=0.68.0
|
| 6 |
+
uvicorn>=0.15.0
|
| 7 |
+
pydantic>=1.8.0
|