Instructions to use flax-community/t5-base-wikisplit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use flax-community/t5-base-wikisplit with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("flax-community/t5-base-wikisplit") model = AutoModelForSeq2SeqLM.from_pretrained("flax-community/t5-base-wikisplit", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
24b7058
1
Parent(s): 0b16a85
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# T5 model for sentence splitting in English
|
| 2 |
|
| 3 |
Sentence Split is the task of dividing a long sentence into multiple sentences.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
datasets:
|
| 3 |
+
- wiki_split
|
| 4 |
+
|
| 5 |
+
widget:
|
| 6 |
+
- text: "Mary likes to play football in her freetime whenever she meets with her friends that are very nice people."
|
| 7 |
+
|
| 8 |
+
license: mit
|
| 9 |
+
---
|
| 10 |
# T5 model for sentence splitting in English
|
| 11 |
|
| 12 |
Sentence Split is the task of dividing a long sentence into multiple sentences.
|