Summarization
Transformers
PyTorch
Safetensors
English
t5
text2text-generation
arxiv
text-generation-inference
Instructions to use AlgorithmicResearchGroup/flan-t5-base-arxiv-math-question-answering with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AlgorithmicResearchGroup/flan-t5-base-arxiv-math-question-answering with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" 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("summarization", model="AlgorithmicResearchGroup/flan-t5-base-arxiv-math-question-answering")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("AlgorithmicResearchGroup/flan-t5-base-arxiv-math-question-answering") model = AutoModelForSeq2SeqLM.from_pretrained("AlgorithmicResearchGroup/flan-t5-base-arxiv-math-question-answering", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
86fb14b
1
Parent(s): cc529da
Adding `safetensors` variant of this model (#1)
Browse files- Adding `safetensors` variant of this model (7eb1bf4ea2cf97bf26d344b24aa1f8e54c7992b3)
Co-authored-by: Safetensors convertbot <SFconvertbot@users.noreply.huggingface.co>
- model.safetensors +3 -0
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f112bb602b0ff876891c11e480f41f160c661e33e218d8cdc41fa5e7449e8d9a
|
| 3 |
+
size 990345064
|