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 +4 -4
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
sentence-transformers
|
| 2 |
-
pyewts
|
| 3 |
-
Cython
|
| 4 |
-
requests
|
|
|
|
| 1 |
+
sentence-transformers
|
| 2 |
+
pyewts
|
| 3 |
+
Cython
|
| 4 |
+
requests
|