DerivedFunction1 commited on
Commit
d7b447c
·
1 Parent(s): a731129

Model save

Browse files
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: roberta-base
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ model-index:
10
+ - name: twitter-roberta-base-sentiment
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
+ # twitter-roberta-base-sentiment
18
+
19
+ This model is a fine-tuned version of [roberta-base](https://huggingface.co/roberta-base) on the None dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.9462
22
+ - Accuracy: 0.7222
23
+ - Macro Precision: 0.7068
24
+ - Macro Recall: 0.7491
25
+ - Macro F1: 0.7246
26
+
27
+ ## Model description
28
+
29
+ More information needed
30
+
31
+ ## Intended uses & limitations
32
+
33
+ More information needed
34
+
35
+ ## Training and evaluation data
36
+
37
+ More information needed
38
+
39
+ ## Training procedure
40
+
41
+ ### Training hyperparameters
42
+
43
+ The following hyperparameters were used during training:
44
+ - learning_rate: 5e-05
45
+ - train_batch_size: 8
46
+ - eval_batch_size: 8
47
+ - seed: 42
48
+ - gradient_accumulation_steps: 2
49
+ - total_train_batch_size: 16
50
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
51
+ - lr_scheduler_type: linear
52
+ - num_epochs: 2
53
+ - mixed_precision_training: Native AMP
54
+
55
+ ### Training results
56
+
57
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | Macro Precision | Macro Recall | Macro F1 |
58
+ |:-------------:|:------:|:----:|:---------------:|:--------:|:---------------:|:------------:|:--------:|
59
+ | 0.9337 | 0.2667 | 1000 | 0.8398 | 0.6273 | 0.6577 | 0.6723 | 0.6322 |
60
+ | 0.8101 | 0.5333 | 2000 | 0.7526 | 0.6780 | 0.6598 | 0.7406 | 0.6851 |
61
+ | 0.7097 | 0.8 | 3000 | 0.8075 | 0.7068 | 0.6853 | 0.7515 | 0.7081 |
62
+ | 0.5513 | 1.0667 | 4000 | 0.8310 | 0.7113 | 0.7007 | 0.7316 | 0.7135 |
63
+ | 0.4368 | 1.3333 | 5000 | 0.9000 | 0.7154 | 0.7001 | 0.7487 | 0.7192 |
64
+ | 0.4084 | 1.6 | 6000 | 0.9042 | 0.7154 | 0.7035 | 0.7413 | 0.7194 |
65
+ | 0.3481 | 1.8667 | 7000 | 0.9868 | 0.7246 | 0.7121 | 0.7441 | 0.7255 |
66
+ | 0.3693 | 2.0 | 7500 | 0.9462 | 0.7222 | 0.7068 | 0.7491 | 0.7246 |
67
+
68
+
69
+ ### Framework versions
70
+
71
+ - Transformers 5.9.0
72
+ - Pytorch 2.11.0+cu128
73
+ - Datasets 4.8.5
74
+ - Tokenizers 0.22.2
runs/May26_13-20-08_MSI/events.out.tfevents.1779816008.MSI CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3a4dbd1d51555395b04fd45a461d3ea6e894f0b2a815b253fcbf50ce761b3a3a
3
- size 10475
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fffa8ad01e024927b5adf551266503c644509f54ec382b45fc18dc4d0236ee56
3
+ size 12020
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<s>",
5
+ "cls_token": "<s>",
6
+ "eos_token": "</s>",
7
+ "errors": "replace",
8
+ "is_local": false,
9
+ "local_files_only": false,
10
+ "mask_token": "<mask>",
11
+ "model_max_length": 512,
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "tokenizer_class": "RobertaTokenizer",
15
+ "trim_offsets": true,
16
+ "unk_token": "<unk>"
17
+ }