Merge branch 'main' of https://huggingface.co/flax-community/t5-base-wikisplit into main
Browse files
README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# T5 model for sentence splitting in English
|
| 2 |
+
|
| 3 |
+
Sentence Split is the task of dividing a long sentence into multiple sentences.
|
| 4 |
+
E.g.:
|
| 5 |
+
```
|
| 6 |
+
Mary likes to play football in her freetime whenever she meets with her friends that are very nice people.
|
| 7 |
+
```
|
| 8 |
+
could be split into
|
| 9 |
+
```
|
| 10 |
+
Mary likes to play football in her freetime whenever she meets with her friends.
|
| 11 |
+
```
|
| 12 |
+
```
|
| 13 |
+
Her friends are very nice people.
|
| 14 |
+
```
|
| 15 |
+
## Datasets:
|
| 16 |
+
[Wiki_Split](https://research.google/tools/datasets/wiki-split/)
|
| 17 |
+
|
| 18 |
+
## Results:
|
| 19 |
+
| Model | BLEU | SARI | Exact |
|
| 20 |
+
| --- | --- | --- | --- |
|
| 21 |
+
| T5-Base | 76.9 | | |
|