Translation
Transformers
Safetensors
Tibetan
English
t5
text2text-generation
tibetan
english
nlp
buddhism
dharma
text-generation-inference
Instructions to use billingsmoore/prototype-tibetan-to-english-translation-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use billingsmoore/prototype-tibetan-to-english-translation-v1 with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="billingsmoore/prototype-tibetan-to-english-translation-v1")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("billingsmoore/prototype-tibetan-to-english-translation-v1") model = AutoModelForSeq2SeqLM.from_pretrained("billingsmoore/prototype-tibetan-to-english-translation-v1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -36,12 +36,11 @@ This work is licensed under Creative Commons Attribution-NonCommercial 4.0 Inter
|
|
| 36 |
This model is a finetuned T5 model with 770 million parameters.
|
| 37 |
|
| 38 |
- **Developed by:** billingsmoore
|
| 39 |
-
- **
|
| 40 |
-
- **Language(s) (NLP):** Tibetan, English
|
| 41 |
- **License:** [Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/)
|
| 42 |
-
- **Finetuned from model
|
| 43 |
|
| 44 |
-
### Model Sources
|
| 45 |
|
| 46 |
- **Repository:** [MLotsawa on Github](https://github.com/billingsmoore/MLotsawa)
|
| 47 |
|
|
|
|
| 36 |
This model is a finetuned T5 model with 770 million parameters.
|
| 37 |
|
| 38 |
- **Developed by:** billingsmoore
|
| 39 |
+
- **Languages (NLP):** Tibetan, English
|
|
|
|
| 40 |
- **License:** [Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/)
|
| 41 |
+
- **Finetuned from model:** 'google-t5/t5-large'
|
| 42 |
|
| 43 |
+
### Model Sources
|
| 44 |
|
| 45 |
- **Repository:** [MLotsawa on Github](https://github.com/billingsmoore/MLotsawa)
|
| 46 |
|