Anukul1 commited on
Commit
e74d656
·
verified ·
1 Parent(s): af181b9

Model save

Browse files
Files changed (2) hide show
  1. README.md +74 -0
  2. generation_config.json +6 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: t5-small
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - wikisql
9
+ model-index:
10
+ - name: t5-small-finetuned-wikisql
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # t5-small-finetuned-wikisql
18
+
19
+ This model is a fine-tuned version of [t5-small](https://huggingface.co/t5-small) on the wikisql dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.1247
22
+ - Model Preparation Time: 0.0028
23
+ - Rouge1 Precision: 0.873
24
+ - Rouge1 Recall: 0.873
25
+ - Rouge1 Fmeasure: 0.873
26
+ - Rouge2 Precision: 0.7718
27
+ - Rouge2 Recall: 0.7718
28
+ - Rouge2 Fmeasure: 0.7718
29
+ - Rougel Precision: 0.8599
30
+ - Rougel Recall: 0.8599
31
+ - Rougel Fmeasure: 0.8599
32
+
33
+ ## Model description
34
+
35
+ More information needed
36
+
37
+ ## Intended uses & limitations
38
+
39
+ More information needed
40
+
41
+ ## Training and evaluation data
42
+
43
+ More information needed
44
+
45
+ ## Training procedure
46
+
47
+ ### Training hyperparameters
48
+
49
+ The following hyperparameters were used during training:
50
+ - learning_rate: 5e-05
51
+ - train_batch_size: 16
52
+ - eval_batch_size: 16
53
+ - seed: 42
54
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
55
+ - lr_scheduler_type: linear
56
+ - num_epochs: 5
57
+
58
+ ### Training results
59
+
60
+ | Training Loss | Epoch | Step | Validation Loss | Model Preparation Time | Rouge1 Precision | Rouge1 Recall | Rouge1 Fmeasure | Rouge2 Precision | Rouge2 Recall | Rouge2 Fmeasure | Rougel Precision | Rougel Recall | Rougel Fmeasure |
61
+ |:-------------:|:-----:|:-----:|:---------------:|:----------------------:|:----------------:|:-------------:|:---------------:|:----------------:|:-------------:|:---------------:|:----------------:|:-------------:|:---------------:|
62
+ | 0.1942 | 1.0 | 4049 | 0.1561 | 0.0028 | 0.863 | 0.863 | 0.863 | 0.7471 | 0.7471 | 0.7471 | 0.847 | 0.847 | 0.847 |
63
+ | 0.1646 | 2.0 | 8098 | 0.1373 | 0.0028 | 0.8698 | 0.8698 | 0.8698 | 0.763 | 0.763 | 0.763 | 0.8554 | 0.8554 | 0.8554 |
64
+ | 0.147 | 3.0 | 12147 | 0.1297 | 0.0028 | 0.8723 | 0.8723 | 0.8723 | 0.7684 | 0.7684 | 0.7684 | 0.8587 | 0.8587 | 0.8587 |
65
+ | 0.1412 | 4.0 | 16196 | 0.1256 | 0.0028 | 0.8725 | 0.8725 | 0.8725 | 0.7712 | 0.7712 | 0.7712 | 0.8594 | 0.8594 | 0.8594 |
66
+ | 0.14 | 5.0 | 20245 | 0.1247 | 0.0028 | 0.873 | 0.873 | 0.873 | 0.7718 | 0.7718 | 0.7718 | 0.8599 | 0.8599 | 0.8599 |
67
+
68
+
69
+ ### Framework versions
70
+
71
+ - Transformers 4.47.1
72
+ - Pytorch 2.5.1+cu121
73
+ - Datasets 3.2.0
74
+ - Tokenizers 0.21.0
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "decoder_start_token_id": 0,
3
+ "eos_token_id": 1,
4
+ "pad_token_id": 0,
5
+ "transformers_version": "4.47.1"
6
+ }