Pranjal Tripathi
commited on
Commit
·
7a2e5d8
1
Parent(s):
d6d7e45
Update README.md
Browse files
README.md
CHANGED
@@ -8,4 +8,45 @@ metrics:
|
|
8 |
- rouge
|
9 |
library_name: transformers
|
10 |
pipeline_tag: summarization
|
11 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
- rouge
|
9 |
library_name: transformers
|
10 |
pipeline_tag: summarization
|
11 |
+
---
|
12 |
+
# T5 model is fine tuned on custom dataset
|
13 |
+
|
14 |
+
## Dataset
|
15 |
+
|
16 |
+
https://huggingface.co/datasets/pranjal0109/Text-summarizer-dataset
|
17 |
+
|
18 |
+
## Hypterparameters
|
19 |
+
|
20 |
+
evaluation_strategy="epoch",
|
21 |
+
learning_rate=1e-4,
|
22 |
+
per_device_train_batch_size=2,
|
23 |
+
per_device_eval_batch_size=2,
|
24 |
+
weight_decay=0.01,
|
25 |
+
save_total_limit=3,
|
26 |
+
num_train_epochs=50,
|
27 |
+
predict_with_generate=True,
|
28 |
+
fp16=True,
|
29 |
+
push_to_hub=True,
|
30 |
+
|
31 |
+
## Training Result
|
32 |
+

|
33 |
+
|
34 |
+
## Inference
|
35 |
+
|
36 |
+
test_text= " summarize: Why is this deal historic?\
|
37 |
+
It is just another club for Lionel Messi to go to and show his skills but it is indeed \
|
38 |
+
historic for the MLS and American Football as a whole. This will bring them the most eyeballs \
|
39 |
+
they have ever seen. The social media following of Inter Miami has risen by more than 300% and \
|
40 |
+
the ticket price for all the matches of Inter Miami have gone from $50 to $10,000 . The amount \
|
41 |
+
of worldwide attention that the MLS will get from this one signing will be humongous.\
|
42 |
+
Lionel Messi will bring fans to the Stadiums and Inter Miami will have to move \
|
43 |
+
from their 18,000 seater stadium to the Hard Rock Café Stadium which has a capacity of 70,000 because \
|
44 |
+
that is the standard of Messi. The sponsors that both Inter Miami and the league will get are \
|
45 |
+
unfathomable. It is like Michael Jordan playing in the Spanish Basketball League. All the celebrities \
|
46 |
+
will line up to watch him play and new TV and streaming deals will be made with all the countries around \
|
47 |
+
the world like India."
|
48 |
+
|
49 |
+
Summary: The sponsors that both Inter Miami and the league will get are unfathomable.Lionel Messi will bring fans to the Stadiums and Inter Miami \
|
50 |
+
will have to move from their 18,000 seater stadium to the Hard Rock Café Stadium which has a capacity of 70,000 because that is the standard of Messi. \
|
51 |
+
The social media following of Inter Miami has risen by more than 300% and the ticket price for all the matches of Inter Miami have gone from $50 to $10,000.\
|
52 |
+
It is just another club for Lionel Messi to go to and show his skills but it is indeed historic for the MLS and American Football as a whole.
|