LeoZZzzZZ commited on
Commit
e48084b
1 Parent(s): ec9c122

Training in progress epoch 0

Browse files
README.md CHANGED
@@ -15,13 +15,13 @@ probably proofread and complete it, then remove this comment. -->
15
 
16
  This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
17
  It achieves the following results on the evaluation set:
18
- - Train Loss: 0.2967
19
- - Validation Loss: 0.5395
20
- - Train Accuracy: 0.8097
21
- - Train Precision: 0.8082
22
- - Train Recall: 0.8097
23
- - Train F1: 0.8050
24
- - Epoch: 2
25
 
26
  ## Model description
27
 
@@ -40,21 +40,19 @@ More information needed
40
  ### Training hyperparameters
41
 
42
  The following hyperparameters were used during training:
43
- - optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': True, 'is_legacy_optimizer': False, 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 18780, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
44
  - training_precision: float32
45
 
46
  ### Training results
47
 
48
  | Train Loss | Validation Loss | Train Accuracy | Train Precision | Train Recall | Train F1 | Epoch |
49
  |:----------:|:---------------:|:--------------:|:---------------:|:------------:|:--------:|:-----:|
50
- | 0.6998 | 0.5708 | 0.7604 | 0.7585 | 0.7604 | 0.7569 | 0 |
51
- | 0.4521 | 0.5249 | 0.7986 | 0.7959 | 0.7986 | 0.7947 | 1 |
52
- | 0.2967 | 0.5395 | 0.8097 | 0.8082 | 0.8097 | 0.8050 | 2 |
53
 
54
 
55
  ### Framework versions
56
 
57
- - Transformers 4.40.2
58
  - TensorFlow 2.15.0
59
  - Datasets 2.19.1
60
  - Tokenizers 0.19.1
 
15
 
16
  This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
17
  It achieves the following results on the evaluation set:
18
+ - Train Loss: 0.5499
19
+ - Validation Loss: 0.5859
20
+ - Train Accuracy: 0.7608
21
+ - Train Precision: 0.7579
22
+ - Train Recall: 0.7608
23
+ - Train F1: 0.7578
24
+ - Epoch: 0
25
 
26
  ## Model description
27
 
 
40
  ### Training hyperparameters
41
 
42
  The following hyperparameters were used during training:
43
+ - optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': True, 'is_legacy_optimizer': False, 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 90930, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
44
  - training_precision: float32
45
 
46
  ### Training results
47
 
48
  | Train Loss | Validation Loss | Train Accuracy | Train Precision | Train Recall | Train F1 | Epoch |
49
  |:----------:|:---------------:|:--------------:|:---------------:|:------------:|:--------:|:-----:|
50
+ | 0.5499 | 0.5859 | 0.7608 | 0.7579 | 0.7608 | 0.7578 | 0 |
 
 
51
 
52
 
53
  ### Framework versions
54
 
55
+ - Transformers 4.41.0
56
  - TensorFlow 2.15.0
57
  - Datasets 2.19.1
58
  - Tokenizers 0.19.1
config.json CHANGED
@@ -9,15 +9,15 @@
9
  "dropout": 0.1,
10
  "hidden_dim": 3072,
11
  "id2label": {
12
- "0": "NOT ENOUGH INFO",
13
- "1": "SUPPORTS",
14
- "2": "REFUTES"
15
  },
16
  "initializer_range": 0.02,
17
  "label2id": {
18
- "NOT ENOUGH INFO": 0,
19
- "REFUTES": 2,
20
- "SUPPORTS": 1
21
  },
22
  "max_position_embeddings": 512,
23
  "model_type": "distilbert",
@@ -29,6 +29,6 @@
29
  "seq_classif_dropout": 0.2,
30
  "sinusoidal_pos_embds": false,
31
  "tie_weights_": true,
32
- "transformers_version": "4.40.2",
33
  "vocab_size": 30522
34
  }
 
9
  "dropout": 0.1,
10
  "hidden_dim": 3072,
11
  "id2label": {
12
+ "0": "SUPPORTS",
13
+ "1": "REFUTES",
14
+ "2": "NOT ENOUGH INFO"
15
  },
16
  "initializer_range": 0.02,
17
  "label2id": {
18
+ "NOT ENOUGH INFO": 2,
19
+ "REFUTES": 1,
20
+ "SUPPORTS": 0
21
  },
22
  "max_position_embeddings": 512,
23
  "model_type": "distilbert",
 
29
  "seq_classif_dropout": 0.2,
30
  "sinusoidal_pos_embds": false,
31
  "tie_weights_": true,
32
+ "transformers_version": "4.41.0",
33
  "vocab_size": 30522
34
  }
logs/train/events.out.tfevents.1716365651.f6a4bbb2972d.324.0.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a801398516cb6cecce47f53c9ee1950241fbb8f66ac4f77f5d759d264135248f
3
+ size 1924279
logs/validation/events.out.tfevents.1716366035.f6a4bbb2972d.324.1.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7c3fbe8e9113a1817c9003525e61c3f16ed23f2be34990620dc29f6f88fe6d1
3
+ size 232
tf_model.h5 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0374c08f0d1fba05b8c7cc7629b1b191e7dfba8b9215a4aedcac919834becc28
3
- size 267954880
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f63b8447d0785a0a4d8e56c4dcf3dd7d05dd74c2a0978969e652f0eaa1a454d
3
+ size 267958216