Shefreie commited on
Commit
9460ee1
1 Parent(s): a103b24

Model save

Browse files
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: albert-base-v2
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - f1
9
+ - accuracy
10
+ model-index:
11
+ - name: empathetic_dialogues_context_classification
12
+ results: []
13
+ ---
14
+
15
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
16
+ should probably proofread and complete it, then remove this comment. -->
17
+
18
+ # empathetic_dialogues_context_classification
19
+
20
+ This model is a fine-tuned version of [albert-base-v2](https://huggingface.co/albert-base-v2) on an unknown dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 1.6758
23
+ - F1: 0.5315
24
+ - Accuracy: 0.5315
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
+ ## Training procedure
39
+
40
+ ### Training hyperparameters
41
+
42
+ The following hyperparameters were used during training:
43
+ - learning_rate: 1e-05
44
+ - train_batch_size: 32
45
+ - eval_batch_size: 32
46
+ - seed: 42
47
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
48
+ - lr_scheduler_type: constant
49
+ - num_epochs: 10
50
+
51
+ ### Training results
52
+
53
+ | Training Loss | Epoch | Step | Validation Loss | F1 | Accuracy |
54
+ |:-------------:|:-----:|:----:|:---------------:|:------:|:--------:|
55
+ | 2.3973 | 1.0 | 558 | 2.2506 | 0.4080 | 0.4080 |
56
+ | 1.7624 | 2.0 | 1116 | 1.8044 | 0.4870 | 0.4870 |
57
+ | 1.5362 | 3.0 | 1674 | 1.6312 | 0.5094 | 0.5094 |
58
+ | 1.3443 | 4.0 | 2232 | 1.6225 | 0.5145 | 0.5145 |
59
+ | 1.2083 | 5.0 | 2790 | 1.5858 | 0.5355 | 0.5355 |
60
+ | 1.079 | 6.0 | 3348 | 1.5721 | 0.5409 | 0.5409 |
61
+ | 0.9522 | 7.0 | 3906 | 1.5888 | 0.5308 | 0.5308 |
62
+ | 0.8075 | 8.0 | 4464 | 1.6758 | 0.5315 | 0.5315 |
63
+
64
+
65
+ ### Framework versions
66
+
67
+ - Transformers 4.44.2
68
+ - Pytorch 2.5.0+cu121
69
+ - Datasets 3.0.2
70
+ - Tokenizers 0.19.1
config.json ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "albert-base-v2",
3
+ "architectures": [
4
+ "AlbertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0,
7
+ "bos_token_id": 2,
8
+ "classifier_dropout_prob": 0.1,
9
+ "down_scale_factor": 1,
10
+ "embedding_size": 128,
11
+ "eos_token_id": 3,
12
+ "gap_size": 0,
13
+ "hidden_act": "gelu_new",
14
+ "hidden_dropout_prob": 0,
15
+ "hidden_size": 768,
16
+ "id2label": {
17
+ "0": "LABEL_0",
18
+ "1": "LABEL_1",
19
+ "2": "LABEL_2",
20
+ "3": "LABEL_3",
21
+ "4": "LABEL_4",
22
+ "5": "LABEL_5",
23
+ "6": "LABEL_6",
24
+ "7": "LABEL_7",
25
+ "8": "LABEL_8",
26
+ "9": "LABEL_9",
27
+ "10": "LABEL_10",
28
+ "11": "LABEL_11",
29
+ "12": "LABEL_12",
30
+ "13": "LABEL_13",
31
+ "14": "LABEL_14",
32
+ "15": "LABEL_15",
33
+ "16": "LABEL_16",
34
+ "17": "LABEL_17",
35
+ "18": "LABEL_18",
36
+ "19": "LABEL_19",
37
+ "20": "LABEL_20",
38
+ "21": "LABEL_21",
39
+ "22": "LABEL_22",
40
+ "23": "LABEL_23",
41
+ "24": "LABEL_24",
42
+ "25": "LABEL_25",
43
+ "26": "LABEL_26",
44
+ "27": "LABEL_27",
45
+ "28": "LABEL_28",
46
+ "29": "LABEL_29",
47
+ "30": "LABEL_30",
48
+ "31": "LABEL_31"
49
+ },
50
+ "initializer_range": 0.02,
51
+ "inner_group_num": 1,
52
+ "intermediate_size": 3072,
53
+ "label2id": {
54
+ "LABEL_0": 0,
55
+ "LABEL_1": 1,
56
+ "LABEL_10": 10,
57
+ "LABEL_11": 11,
58
+ "LABEL_12": 12,
59
+ "LABEL_13": 13,
60
+ "LABEL_14": 14,
61
+ "LABEL_15": 15,
62
+ "LABEL_16": 16,
63
+ "LABEL_17": 17,
64
+ "LABEL_18": 18,
65
+ "LABEL_19": 19,
66
+ "LABEL_2": 2,
67
+ "LABEL_20": 20,
68
+ "LABEL_21": 21,
69
+ "LABEL_22": 22,
70
+ "LABEL_23": 23,
71
+ "LABEL_24": 24,
72
+ "LABEL_25": 25,
73
+ "LABEL_26": 26,
74
+ "LABEL_27": 27,
75
+ "LABEL_28": 28,
76
+ "LABEL_29": 29,
77
+ "LABEL_3": 3,
78
+ "LABEL_30": 30,
79
+ "LABEL_31": 31,
80
+ "LABEL_4": 4,
81
+ "LABEL_5": 5,
82
+ "LABEL_6": 6,
83
+ "LABEL_7": 7,
84
+ "LABEL_8": 8,
85
+ "LABEL_9": 9
86
+ },
87
+ "layer_norm_eps": 1e-12,
88
+ "max_position_embeddings": 512,
89
+ "model_type": "albert",
90
+ "net_structure_type": 0,
91
+ "num_attention_heads": 12,
92
+ "num_hidden_groups": 1,
93
+ "num_hidden_layers": 12,
94
+ "num_memory_blocks": 0,
95
+ "pad_token_id": 0,
96
+ "position_embedding_type": "absolute",
97
+ "problem_type": "single_label_classification",
98
+ "torch_dtype": "float32",
99
+ "transformers_version": "4.44.2",
100
+ "type_vocab_size": 2,
101
+ "vocab_size": 30000
102
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c916da20b389c8be80b0bed11fe1e5c4c52ceaba8736b5d8083b2e003e96db13
3
+ size 46842495
runs/Oct28_06-02-00_ef58dfcc0109/events.out.tfevents.1730095321.ef58dfcc0109.311.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dd0ec8d564bd76a0618ce9a0afb9cc65ded7fd8cee7718f4a4248bf5243f8c1
3
+ size 6460
runs/Oct28_06-02-45_ef58dfcc0109/events.out.tfevents.1730095371.ef58dfcc0109.311.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4da5fdb48c0682d0b3f4615d30454bf1429859052becb40d5e8212fb5867eac1
3
+ size 6509
runs/Oct28_06-18-22_ef58dfcc0109/events.out.tfevents.1730096303.ef58dfcc0109.5496.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7ef9102cfb72d99717f3f0e525e0d5111c59c01256f5b5be8610ece6ba5a5dc
3
+ size 7511
runs/Oct28_07-04-30_ef58dfcc0109/events.out.tfevents.1730099071.ef58dfcc0109.16809.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d8a9ccfba0b159515b4f9ae6635f1cae0170c6af8e3a06ac30f017f71ddc08d
3
+ size 6667
runs/Oct28_07-10-49_ef58dfcc0109/events.out.tfevents.1730099449.ef58dfcc0109.18475.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9ac22bb90fe075e9db950dee4be712976bc730c05c331ba1e9851842559ff67
3
+ size 19046
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efdd4b3f403750585784e73310fb98b6d97752ce8626d7681e09a86c1a2b88ee
3
+ size 5304