gbharathi80 commited on
Commit
9d876c6
1 Parent(s): 7b3b1ec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -6
README.md CHANGED
@@ -21,7 +21,7 @@ probably proofread and complete it, then remove this comment. -->
21
 
22
  # gbharathi80/mt5-small-finetuned-amazon-en-es
23
 
24
- This model is a fine-tuned version of [google/mt5-small](https://huggingface.co/google/mt5-small) on an unknown dataset.
25
  It achieves the following results on the evaluation set:
26
  - Train Loss: 4.2325
27
  - Validation Loss: 3.4452
@@ -29,15 +29,26 @@ It achieves the following results on the evaluation set:
29
 
30
  ## Model description
31
 
32
- More information needed
33
-
34
  ## Intended uses & limitations
35
 
36
- More information needed
37
-
38
  ## Training and evaluation data
39
 
40
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  ## Training procedure
43
 
 
21
 
22
  # gbharathi80/mt5-small-finetuned-amazon-en-es
23
 
24
+ This model is a fine-tuned version of [google/mt5-small](https://huggingface.co/google/mt5-small) on an amazon reviews dataset.
25
  It achieves the following results on the evaluation set:
26
  - Train Loss: 4.2325
27
  - Validation Loss: 3.4452
 
29
 
30
  ## Model description
31
 
32
+ This is a fine-tuned version of the google/mt5-small model for translation tasks from English to Spanish for text summarization
 
33
  ## Intended uses & limitations
34
 
35
+ multi lingual text summarization. model trained using spanish and english revirwes
 
36
  ## Training and evaluation data
37
 
38
+ DatasetDict({
39
+ train: Dataset({
40
+ features: ['review_id', 'product_id', 'reviewer_id', 'stars', 'review_body', 'review_title', 'language', 'product_category'],
41
+ num_rows: 200000
42
+ })
43
+ validation: Dataset({
44
+ features: ['review_id', 'product_id', 'reviewer_id', 'stars', 'review_body', 'review_title', 'language', 'product_category'],
45
+ num_rows: 5000
46
+ })
47
+ test: Dataset({
48
+ features: ['review_id', 'product_id', 'reviewer_id', 'stars', 'review_body', 'review_title', 'language', 'product_category'],
49
+ num_rows: 5000
50
+ })
51
+ })
52
 
53
  ## Training procedure
54