breadlicker45 commited on
Commit
261fd16
·
1 Parent(s): 1b161c6

Upload 7 files

Browse files
added_tokens.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "<|endoftext|>": 30523,
3
+ "<|pad|>": 30524,
4
+ "<|startoftext|>": 30522
5
+ }
config.json CHANGED
@@ -1,35 +1,32 @@
1
  {
2
- "_name_or_path": "EleutherAI/pythia-70m-deduped",
 
3
  "architectures": [
4
- "GPTNeoXForSequenceClassification"
5
  ],
6
- "bos_token_id": 0,
7
- "classifier_dropout": 0.1,
8
- "eos_token_id": 0,
9
- "hidden_act": "gelu",
10
- "hidden_size": 512,
11
  "id2label": {
12
  "0": "NEGATIVE",
13
  "1": "POSITIVE"
14
  },
15
  "initializer_range": 0.02,
16
- "intermediate_size": 2048,
17
  "label2id": {
18
  "NEGATIVE": 0,
19
  "POSITIVE": 1
20
  },
21
- "layer_norm_eps": 1e-05,
22
- "max_position_embeddings": 2048,
23
- "model_type": "gpt_neox",
24
- "num_attention_heads": 8,
25
- "num_hidden_layers": 6,
26
- "pad_token_id": 50278,
27
- "rotary_emb_base": 10000,
28
- "rotary_pct": 0.25,
29
- "tie_word_embeddings": false,
30
  "torch_dtype": "float32",
31
  "transformers_version": "4.29.2",
32
- "use_cache": true,
33
- "use_parallel_residual": true,
34
- "vocab_size": 50279
35
  }
 
1
  {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
  "architectures": [
5
+ "DistilBertForSequenceClassification"
6
  ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
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": 30524,
25
+ "qa_dropout": 0.1,
26
+ "seq_classif_dropout": 0.2,
27
+ "sinusoidal_pos_embds": false,
28
+ "tie_weights_": true,
29
  "torch_dtype": "float32",
30
  "transformers_version": "4.29.2",
31
+ "vocab_size": 30525
 
 
32
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cb83163d3435b9da2fae6d26816b5389fa19eb2cba510768eb008d6011599677
3
- size 203833995
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c56333bcfad35883823f6919f09f9e42acdbb621c37936feaa137972587a3b1
3
+ size 267864749
special_tokens_map.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|startoftext|>",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "<|endoftext|>",
5
+ "mask_token": "[MASK]",
6
+ "pad_token": "<|pad|>",
7
+ "sep_token": "[SEP]",
8
+ "unk_token": "[UNK]"
9
+ }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|startoftext|>",
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "[CLS]",
5
+ "do_lower_case": true,
6
+ "eos_token": "<|endoftext|>",
7
+ "mask_token": "[MASK]",
8
+ "model_max_length": 512,
9
+ "pad_token": "<|pad|>",
10
+ "sep_token": "[SEP]",
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "DistilBertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff