jpgacrama commited on
Commit
9ffc00a
1 Parent(s): 175ebb4

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. config.json +13 -13
  2. pytorch_model.bin +2 -2
  3. tokenizer_config.json +1 -1
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "distilbert-base-uncased",
3
  "activation": "gelu",
4
  "architectures": [
5
  "DistilBertForSequenceClassification"
@@ -9,21 +9,21 @@
9
  "dropout": 0.1,
10
  "hidden_dim": 3072,
11
  "id2label": {
12
- "0": "LABEL_0",
13
- "1": "LABEL_1",
14
- "2": "LABEL_2",
15
- "3": "LABEL_3",
16
- "4": "LABEL_4",
17
- "5": "LABEL_5"
18
  },
19
  "initializer_range": 0.02,
20
  "label2id": {
21
- "LABEL_0": 0,
22
- "LABEL_1": 1,
23
- "LABEL_2": 2,
24
- "LABEL_3": 3,
25
- "LABEL_4": 4,
26
- "LABEL_5": 5
27
  },
28
  "max_position_embeddings": 512,
29
  "model_type": "distilbert",
 
1
  {
2
+ "_name_or_path": "transformersbook/distilbert-base-uncased-finetuned-emotion",
3
  "activation": "gelu",
4
  "architectures": [
5
  "DistilBertForSequenceClassification"
 
9
  "dropout": 0.1,
10
  "hidden_dim": 3072,
11
  "id2label": {
12
+ "0": "sadness",
13
+ "1": "joy",
14
+ "2": "love",
15
+ "3": "anger",
16
+ "4": "fear",
17
+ "5": "surprise"
18
  },
19
  "initializer_range": 0.02,
20
  "label2id": {
21
+ "anger": "3",
22
+ "fear": "4",
23
+ "joy": "1",
24
+ "love": "2",
25
+ "sadness": "0",
26
+ "surprise": "5"
27
  },
28
  "max_position_embeddings": 512,
29
  "model_type": "distilbert",
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8f02d5a65a61ffb55797552657775e2411e6a66383ce61896af4500af6466bb8
3
- size 267874026
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48f909b9ec4982fec34e1bc85eca89b7385b3b4ddd04edc68da6f27cb1375e83
3
+ size 267872618
tokenizer_config.json CHANGED
@@ -1 +1 @@
1
- {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
 
1
+ {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "transformersbook/distilbert-base-uncased-finetuned-emotion", "tokenizer_class": "DistilBertTokenizer"}