pnr-svc commited on
Commit
41a515f
1 Parent(s): 440ffd3

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "dbmdz/distilbert-base-turkish-cased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-DepositProduct",
14
+ "10": "I-ServiceClosest",
15
+ "11": "B-Location",
16
+ "12": "I-Location",
17
+ "13": "B-ServiceNumber",
18
+ "14": "I-ServiceNumber",
19
+ "15": "B-Brand",
20
+ "16": "I-Brand",
21
+ "17": "B-Campaign",
22
+ "18": "I-Campaign",
23
+ "19": "B-ProductSelector",
24
+ "2": "I-DepositProduct",
25
+ "20": "I-ProductSelector",
26
+ "21": "B-SpecialCampaign",
27
+ "22": "I-SpecialCampaign",
28
+ "3": "B-Product",
29
+ "4": "I-Product",
30
+ "5": "B-ProductProblemInfo",
31
+ "6": "I-ProductProblemInfo",
32
+ "7": "B-ServiceInformation",
33
+ "8": "I-ServiceInformation",
34
+ "9": "B-ServiceClosest"
35
+ },
36
+ "initializer_range": 0.02,
37
+ "label2id": {
38
+ "B-Brand": "15",
39
+ "B-Campaign": "17",
40
+ "B-DepositProduct": "1",
41
+ "B-Location": "11",
42
+ "B-Product": "3",
43
+ "B-ProductProblemInfo": "5",
44
+ "B-ProductSelector": "19",
45
+ "B-ServiceClosest": "9",
46
+ "B-ServiceInformation": "7",
47
+ "B-ServiceNumber": "13",
48
+ "B-SpecialCampaign": "21",
49
+ "I-Brand": "16",
50
+ "I-Campaign": "18",
51
+ "I-DepositProduct": "2",
52
+ "I-Location": "12",
53
+ "I-Product": "4",
54
+ "I-ProductProblemInfo": "6",
55
+ "I-ProductSelector": "20",
56
+ "I-ServiceClosest": "10",
57
+ "I-ServiceInformation": "8",
58
+ "I-ServiceNumber": "14",
59
+ "I-SpecialCampaign": "22",
60
+ "O": "0"
61
+ },
62
+ "max_position_embeddings": 512,
63
+ "model_type": "distilbert",
64
+ "n_heads": 12,
65
+ "n_layers": 6,
66
+ "output_past": true,
67
+ "pad_token_id": 0,
68
+ "qa_dropout": 0.1,
69
+ "seq_classif_dropout": 0.2,
70
+ "sinusoidal_pos_embds": true,
71
+ "tie_weights_": true,
72
+ "torch_dtype": "float32",
73
+ "transformers_version": "4.22.1",
74
+ "vocab_size": 32000
75
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ecda1d7f0baf2b88758c53e278a019172788cb20a053f620ff25281be73d869
3
+ size 270096309
runs/Sep17_10-53-16_47b2a7c7880a/1663412014.7449753/events.out.tfevents.1663412014.47b2a7c7880a.69.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1cd241448c4c30c9028a2281aca9761aad012f7bf9baf0b0277e1dacfc3b285
3
+ size 5513
runs/Sep17_10-53-16_47b2a7c7880a/events.out.tfevents.1663412014.47b2a7c7880a.69.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6538d3bae56906f1e163d4ef721919b45e010f9b09dbb35fec17eef0ecba38ae
3
+ size 5499
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "max_len": 512,
7
+ "name_or_path": "dbmdz/distilbert-base-turkish-cased",
8
+ "never_split": null,
9
+ "pad_token": "[PAD]",
10
+ "sep_token": "[SEP]",
11
+ "special_tokens_map_file": null,
12
+ "strip_accents": null,
13
+ "tokenize_chinese_chars": true,
14
+ "tokenizer_class": "DistilBertTokenizer",
15
+ "unk_token": "[UNK]"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c2c1492f4b8b92863e6821add7a88285e78e28c0a6b4b6ed77408e7a1eb67b4
3
+ size 3375
vocab.txt ADDED
The diff for this file is too large to render. See raw diff