JoshuaAAX commited on
Commit
29d9b5a
·
verified ·
1 Parent(s): fbb89f1

Training complete

Browse files
Files changed (4) hide show
  1. README.md +74 -0
  2. config.json +27 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: roberta-large
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ model-index:
10
+ - name: roberta-large-binary-classification
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
+ # roberta-large-binary-classification
18
+
19
+ This model is a fine-tuned version of [roberta-large](https://huggingface.co/roberta-large) on the None dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.6983
22
+ - Accuracy: 0.7580
23
+ - F1 Macro: 0.7453
24
+ - Precision Macro: 0.7498
25
+ - Recall Macro: 0.7425
26
+ - Auc: 0.7941
27
+
28
+ ## Model description
29
+
30
+ More information needed
31
+
32
+ ## Intended uses & limitations
33
+
34
+ More information needed
35
+
36
+ ## Training and evaluation data
37
+
38
+ More information needed
39
+
40
+ ## Training procedure
41
+
42
+ ### Training hyperparameters
43
+
44
+ The following hyperparameters were used during training:
45
+ - learning_rate: 2e-05
46
+ - train_batch_size: 16
47
+ - eval_batch_size: 16
48
+ - seed: 42
49
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
50
+ - lr_scheduler_type: linear
51
+ - num_epochs: 10
52
+
53
+ ### Training results
54
+
55
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 Macro | Precision Macro | Recall Macro | Auc |
56
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:--------:|:---------------:|:------------:|:------:|
57
+ | No log | 1.0 | 79 | 0.6751 | 0.5955 | 0.3733 | 0.2978 | 0.5 | 0.6194 |
58
+ | No log | 2.0 | 158 | 0.6642 | 0.5955 | 0.3733 | 0.2978 | 0.5 | 0.6210 |
59
+ | No log | 3.0 | 237 | 0.5609 | 0.7102 | 0.6895 | 0.7003 | 0.6859 | 0.7701 |
60
+ | No log | 4.0 | 316 | 0.5676 | 0.7070 | 0.6907 | 0.6954 | 0.6883 | 0.7734 |
61
+ | No log | 5.0 | 395 | 0.6983 | 0.7580 | 0.7453 | 0.7498 | 0.7425 | 0.7941 |
62
+ | No log | 6.0 | 474 | 0.7766 | 0.7420 | 0.7319 | 0.7322 | 0.7316 | 0.7802 |
63
+ | 0.4887 | 7.0 | 553 | 1.1879 | 0.7452 | 0.7266 | 0.7399 | 0.7217 | 0.7761 |
64
+ | 0.4887 | 8.0 | 632 | 1.6676 | 0.7484 | 0.7242 | 0.7504 | 0.7180 | 0.7789 |
65
+ | 0.4887 | 9.0 | 711 | 1.6440 | 0.7548 | 0.7364 | 0.7511 | 0.7310 | 0.7889 |
66
+ | 0.4887 | 10.0 | 790 | 1.7092 | 0.7548 | 0.7364 | 0.7511 | 0.7310 | 0.7928 |
67
+
68
+
69
+ ### Framework versions
70
+
71
+ - Transformers 4.57.1
72
+ - Pytorch 2.8.0+cu126
73
+ - Datasets 4.0.0
74
+ - Tokenizers 0.22.1
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "RobertaForSequenceClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": 0,
7
+ "classifier_dropout": null,
8
+ "dtype": "float32",
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 1024,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 4096,
15
+ "layer_norm_eps": 1e-05,
16
+ "max_position_embeddings": 514,
17
+ "model_type": "roberta",
18
+ "num_attention_heads": 16,
19
+ "num_hidden_layers": 24,
20
+ "pad_token_id": 1,
21
+ "position_embedding_type": "absolute",
22
+ "problem_type": "single_label_classification",
23
+ "transformers_version": "4.57.1",
24
+ "type_vocab_size": 1,
25
+ "use_cache": true,
26
+ "vocab_size": 50265
27
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:443df74619bd134e866996d772cdd208205bbcb8493aa420cadc7d0ea317791c
3
+ size 1421495416
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0200bb65fbd07e3d7620a03c006c5f392274486e188096f5d0f8f22919b3bd9f
3
+ size 5777