kenbaker-gif commited on
Commit
ea4ae44
·
verified ·
1 Parent(s): 1c87464

Upload folder using huggingface_hub

Browse files
config.json CHANGED
@@ -1,32 +1,41 @@
1
  {
2
- "activation": "gelu",
3
  "architectures": [
4
- "DistilBertForSequenceClassification"
5
  ],
6
- "attention_dropout": 0.1,
7
- "dim": 768,
8
- "dropout": 0.1,
 
9
  "dtype": "float32",
10
- "hidden_dim": 3072,
 
 
 
 
 
11
  "id2label": {
12
  "0": "NEGATIVE",
13
  "1": "POSITIVE"
14
  },
15
  "initializer_range": 0.02,
 
 
16
  "label2id": {
17
  "NEGATIVE": 0,
18
  "POSITIVE": 1
19
  },
 
20
  "max_position_embeddings": 512,
21
- "model_type": "distilbert",
22
- "n_heads": 12,
23
- "n_layers": 6,
 
 
 
24
  "pad_token_id": 0,
 
25
  "problem_type": "single_label_classification",
26
- "qa_dropout": 0.1,
27
- "seq_classif_dropout": 0.2,
28
- "sinusoidal_pos_embds": false,
29
- "tie_weights_": true,
30
  "transformers_version": "4.56.1",
31
- "vocab_size": 30522
 
32
  }
 
1
  {
 
2
  "architectures": [
3
+ "AlbertForSequenceClassification"
4
  ],
5
+ "attention_probs_dropout_prob": 0,
6
+ "bos_token_id": 2,
7
+ "classifier_dropout_prob": 0.1,
8
+ "down_scale_factor": 1,
9
  "dtype": "float32",
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": "NEGATIVE",
18
  "1": "POSITIVE"
19
  },
20
  "initializer_range": 0.02,
21
+ "inner_group_num": 1,
22
+ "intermediate_size": 3072,
23
  "label2id": {
24
  "NEGATIVE": 0,
25
  "POSITIVE": 1
26
  },
27
+ "layer_norm_eps": 1e-12,
28
  "max_position_embeddings": 512,
29
+ "model_type": "albert",
30
+ "net_structure_type": 0,
31
+ "num_attention_heads": 12,
32
+ "num_hidden_groups": 1,
33
+ "num_hidden_layers": 12,
34
+ "num_memory_blocks": 0,
35
  "pad_token_id": 0,
36
+ "position_embedding_type": "absolute",
37
  "problem_type": "single_label_classification",
 
 
 
 
38
  "transformers_version": "4.56.1",
39
+ "type_vocab_size": 2,
40
+ "vocab_size": 30000
41
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8f98ecb17b740153e1d5dd5e09fed5cc4c428242af66df3f6ea81c15adb39fd8
3
- size 267832560
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd84af1fafb2b3551afc2d4ad95665425301e689be6d4ffc1e0d4abf01137d0b
3
+ size 46743912
special_tokens_map.json CHANGED
@@ -1,7 +1,15 @@
1
  {
 
2
  "cls_token": "[CLS]",
3
- "mask_token": "[MASK]",
4
- "pad_token": "[PAD]",
 
 
 
 
 
 
 
5
  "sep_token": "[SEP]",
6
- "unk_token": "[UNK]"
7
  }
 
1
  {
2
+ "bos_token": "[CLS]",
3
  "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
+ "mask_token": {
6
+ "content": "[MASK]",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
  "sep_token": "[SEP]",
14
+ "unk_token": "<unk>"
15
  }
spiece.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fefb02b667a6c5c2fe27602d28e5fb3428f66ab89c7d6f388e7c8d44a02d0336
3
+ size 760289
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,22 +1,22 @@
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
- "content": "[PAD]",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
- "100": {
12
- "content": "[UNK]",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
- "101": {
20
  "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
@@ -24,7 +24,7 @@
24
  "single_word": false,
25
  "special": true
26
  },
27
- "102": {
28
  "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
@@ -32,25 +32,27 @@
32
  "single_word": false,
33
  "special": true
34
  },
35
- "103": {
36
  "content": "[MASK]",
37
- "lstrip": false,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
 
44
  "clean_up_tokenization_spaces": false,
45
  "cls_token": "[CLS]",
46
  "do_lower_case": true,
 
47
  "extra_special_tokens": {},
 
48
  "mask_token": "[MASK]",
49
  "model_max_length": 512,
50
- "pad_token": "[PAD]",
 
51
  "sep_token": "[SEP]",
52
- "strip_accents": null,
53
- "tokenize_chinese_chars": true,
54
- "tokenizer_class": "DistilBertTokenizer",
55
- "unk_token": "[UNK]"
56
  }
 
1
  {
2
  "added_tokens_decoder": {
3
  "0": {
4
+ "content": "<pad>",
5
  "lstrip": false,
6
  "normalized": false,
7
  "rstrip": false,
8
  "single_word": false,
9
  "special": true
10
  },
11
+ "1": {
12
+ "content": "<unk>",
13
  "lstrip": false,
14
  "normalized": false,
15
  "rstrip": false,
16
  "single_word": false,
17
  "special": true
18
  },
19
+ "2": {
20
  "content": "[CLS]",
21
  "lstrip": false,
22
  "normalized": false,
 
24
  "single_word": false,
25
  "special": true
26
  },
27
+ "3": {
28
  "content": "[SEP]",
29
  "lstrip": false,
30
  "normalized": false,
 
32
  "single_word": false,
33
  "special": true
34
  },
35
+ "4": {
36
  "content": "[MASK]",
37
+ "lstrip": true,
38
  "normalized": false,
39
  "rstrip": false,
40
  "single_word": false,
41
  "special": true
42
  }
43
  },
44
+ "bos_token": "[CLS]",
45
  "clean_up_tokenization_spaces": false,
46
  "cls_token": "[CLS]",
47
  "do_lower_case": true,
48
+ "eos_token": "[SEP]",
49
  "extra_special_tokens": {},
50
+ "keep_accents": false,
51
  "mask_token": "[MASK]",
52
  "model_max_length": 512,
53
+ "pad_token": "<pad>",
54
+ "remove_space": true,
55
  "sep_token": "[SEP]",
56
+ "tokenizer_class": "AlbertTokenizer",
57
+ "unk_token": "<unk>"
 
 
58
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb83e81bc156408873e64d5fa3a669f762299f8a58009a16ff1de3f424643565
3
  size 5713
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc407e4142834082c1817ce3f99f590d182d4d9a156f242bcfcafe64170930ad
3
  size 5713