hayatoshibahara commited on
Commit
4f4d4e9
1 Parent(s): 98829bb

Training in progress epoch 0

Browse files
Files changed (5) hide show
  1. config.json +15 -39
  2. model.safetensors +2 -2
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +2 -2
  5. vocab.txt +0 -0
config.json CHANGED
@@ -1,48 +1,24 @@
1
  {
2
- "_name_or_path": "bert-base-cased",
 
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
- "7": "B-MISC",
21
- "8": "I-MISC"
22
- },
23
  "initializer_range": 0.02,
24
- "intermediate_size": 3072,
25
- "label2id": {
26
- "B-LOC": 5,
27
- "B-MISC": 7,
28
- "B-ORG": 3,
29
- "B-PER": 1,
30
- "I-LOC": 6,
31
- "I-MISC": 8,
32
- "I-ORG": 4,
33
- "I-PER": 2,
34
- "O": 0
35
- },
36
- "layer_norm_eps": 1e-12,
37
  "max_position_embeddings": 512,
38
- "model_type": "bert",
39
- "num_attention_heads": 12,
40
- "num_hidden_layers": 12,
41
  "pad_token_id": 0,
42
- "position_embedding_type": "absolute",
 
 
 
43
  "torch_dtype": "float32",
44
  "transformers_version": "4.46.2",
45
- "type_vocab_size": 2,
46
- "use_cache": true,
47
- "vocab_size": 28996
48
  }
 
1
  {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
  "architectures": [
5
+ "DistilBertForMaskedLM"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  "initializer_range": 0.02,
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  "max_position_embeddings": 512,
13
+ "model_type": "distilbert",
14
+ "n_heads": 12,
15
+ "n_layers": 6,
16
  "pad_token_id": 0,
17
+ "qa_dropout": 0.1,
18
+ "seq_classif_dropout": 0.2,
19
+ "sinusoidal_pos_embds": false,
20
+ "tie_weights_": true,
21
  "torch_dtype": "float32",
22
  "transformers_version": "4.46.2",
23
+ "vocab_size": 30522
 
 
24
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9d31711a759422bd895ea8047eb036144fb5f75455ef2d53c5889b38ef94cfa3
3
- size 430929740
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e378223b8eca76834ae57c8db8bac2aad0d5398185da848f25db99a271ffced1
3
+ size 267954768
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -43,13 +43,13 @@
43
  },
44
  "clean_up_tokenization_spaces": false,
45
  "cls_token": "[CLS]",
46
- "do_lower_case": false,
47
  "mask_token": "[MASK]",
48
  "model_max_length": 512,
49
  "pad_token": "[PAD]",
50
  "sep_token": "[SEP]",
51
  "strip_accents": null,
52
  "tokenize_chinese_chars": true,
53
- "tokenizer_class": "BertTokenizer",
54
  "unk_token": "[UNK]"
55
  }
 
43
  },
44
  "clean_up_tokenization_spaces": false,
45
  "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
  "mask_token": "[MASK]",
48
  "model_max_length": 512,
49
  "pad_token": "[PAD]",
50
  "sep_token": "[SEP]",
51
  "strip_accents": null,
52
  "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
  "unk_token": "[UNK]"
55
  }
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff