Instructions to use jmeadows17/MathT5-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jmeadows17/MathT5-base with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("jmeadows17/MathT5-base") model = AutoModelForSeq2SeqLM.from_pretrained("jmeadows17/MathT5-base", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
e153adf
1
Parent(s): d0adee8
Update README.md
Browse files
README.md
CHANGED
|
@@ -29,4 +29,6 @@ then obtain (- \\sin{(q)})^{q} (\\frac{d}{d q} \\cos{(q)})^{q} = (- \\sin{(q)})^
|
|
| 29 |
|
| 30 |
Output derivations are equations separated by "and".
|
| 31 |
|
|
|
|
|
|
|
| 32 |
For the large version based on FLAN-T5 use ```"jmeadows17/MathT5-large"```.
|
|
|
|
| 29 |
|
| 30 |
Output derivations are equations separated by "and".
|
| 31 |
|
| 32 |
+
Additional prompts can be found in "training_prompts.json" alongside the model files.
|
| 33 |
+
|
| 34 |
For the large version based on FLAN-T5 use ```"jmeadows17/MathT5-large"```.
|