Instructions to use openpecha/aligner with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use openpecha/aligner with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("openpecha/aligner") model = AutoModelForSeq2SeqLM.from_pretrained("openpecha/aligner") - Notebooks
- Google Colab
- Kaggle
Update requirements.txt
Browse files- requirements.txt +7 -2
requirements.txt
CHANGED
|
@@ -1,4 +1,9 @@
|
|
| 1 |
-
sentence-transformers
|
| 2 |
pyewts
|
| 3 |
Cython
|
| 4 |
-
requests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
pyewts
|
| 2 |
Cython
|
| 3 |
+
requests
|
| 4 |
+
numba==0.56.4
|
| 5 |
+
#faiss-cpu==1.7.2
|
| 6 |
+
faiss-gpu==1.7.2
|
| 7 |
+
googletrans==4.0.0rc1
|
| 8 |
+
sentence-splitter==1.4
|
| 9 |
+
sentence-transformers==2.2.2
|