asdaswqe2313 commited on
Commit
eb9db86
·
verified ·
1 Parent(s): 280d82c

my_models_best_1111

Browse files
README.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: mit
4
+ base_model: akdeniz27/bert-base-turkish-cased-ner
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ - f1
10
+ model-index:
11
+ - name: results
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
+ # results
19
+
20
+ This model is a fine-tuned version of [akdeniz27/bert-base-turkish-cased-ner](https://huggingface.co/akdeniz27/bert-base-turkish-cased-ner) on the None dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 8.5343
23
+ - Accuracy: 0.1071
24
+ - F1: 0.1212
25
+ - Classification Report: precision recall f1-score support
26
+
27
+ DATE 0.07 0.67 0.13 3
28
+ LOCATION 0.00 0.00 0.00 1
29
+ PERSON 0.00 0.00 0.00 1
30
+
31
+ micro avg 0.07 0.40 0.12 5
32
+ macro avg 0.02 0.22 0.04 5
33
+ weighted avg 0.04 0.40 0.08 5
34
+
35
+
36
+ ## Model description
37
+
38
+ More information needed
39
+
40
+ ## Intended uses & limitations
41
+
42
+ More information needed
43
+
44
+ ## Training and evaluation data
45
+
46
+ More information needed
47
+
48
+ ## Training procedure
49
+
50
+ ### Training hyperparameters
51
+
52
+ The following hyperparameters were used during training:
53
+ - learning_rate: 2e-05
54
+ - train_batch_size: 8
55
+ - eval_batch_size: 8
56
+ - seed: 42
57
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
58
+ - lr_scheduler_type: linear
59
+ - num_epochs: 3
60
+
61
+ ### Training results
62
+
63
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Classification Report |
64
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
65
+ | No log | 1.0 | 1 | 10.3125 | 0.1071 | 0.1212 | precision recall f1-score support
66
+
67
+ DATE 0.07 0.67 0.13 3
68
+ LOCATION 0.00 0.00 0.00 1
69
+ PERSON 0.00 0.00 0.00 1
70
+
71
+ micro avg 0.07 0.40 0.12 5
72
+ macro avg 0.02 0.22 0.04 5
73
+ weighted avg 0.04 0.40 0.08 5
74
+ |
75
+ | No log | 2.0 | 2 | 9.1622 | 0.1071 | 0.1212 | precision recall f1-score support
76
+
77
+ DATE 0.07 0.67 0.13 3
78
+ LOCATION 0.00 0.00 0.00 1
79
+ PERSON 0.00 0.00 0.00 1
80
+
81
+ micro avg 0.07 0.40 0.12 5
82
+ macro avg 0.02 0.22 0.04 5
83
+ weighted avg 0.04 0.40 0.08 5
84
+ |
85
+ | No log | 3.0 | 3 | 8.5343 | 0.1071 | 0.1212 | precision recall f1-score support
86
+
87
+ DATE 0.07 0.67 0.13 3
88
+ LOCATION 0.00 0.00 0.00 1
89
+ PERSON 0.00 0.00 0.00 1
90
+
91
+ micro avg 0.07 0.40 0.12 5
92
+ macro avg 0.02 0.22 0.04 5
93
+ weighted avg 0.04 0.40 0.08 5
94
+ |
95
+
96
+
97
+ ### Framework versions
98
+
99
+ - Transformers 4.44.2
100
+ - Pytorch 2.4.0+cu121
101
+ - Datasets 2.21.0
102
+ - Tokenizers 0.19.1
config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "akdeniz27/bert-base-turkish-cased-ner",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "O",
14
+ "1": "B-PER",
15
+ "2": "I-PER",
16
+ "3": "B-ORG",
17
+ "4": "I-ORG",
18
+ "5": "B-LOC",
19
+ "6": "I-LOC"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 3072,
23
+ "label2id": {
24
+ "B-LOC": 5,
25
+ "B-ORG": 3,
26
+ "B-PER": 1,
27
+ "I-LOC": 6,
28
+ "I-ORG": 4,
29
+ "I-PER": 2,
30
+ "O": 0
31
+ },
32
+ "layer_norm_eps": 1e-12,
33
+ "max_position_embeddings": 512,
34
+ "model_type": "bert",
35
+ "num_attention_heads": 12,
36
+ "num_hidden_layers": 12,
37
+ "pad_token_id": 0,
38
+ "position_embedding_type": "absolute",
39
+ "torch_dtype": "float32",
40
+ "transformers_version": "4.44.2",
41
+ "type_vocab_size": 2,
42
+ "use_cache": true,
43
+ "vocab_size": 32000
44
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae3918ea58a50bf4980149642bed5c034e02bf351bb2b6567ced3fcc3fdb74fd
3
+ size 440151884
runs/Sep04_18-20-29_ba514ec57714/events.out.tfevents.1725474032.ba514ec57714.751.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eacc91ec252c0be397f983257b86980730a3390d36a6c641738d25c2e421f05
3
+ size 6637
runs/Sep04_18-20-29_ba514ec57714/events.out.tfevents.1725474446.ba514ec57714.751.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8616c76bcb948f20682257f6e1fd4a435b35c562c0842d8fa4a534c897b87698
3
+ size 450
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9a9c8d4a3899d5d535f928151adc823f27c014bac64be7864821b43921ee9a4
3
+ size 5176