AutoNLP Admin commited on
Commit
34f7c49
·
1 Parent(s): 1e7ac3d

Commit From AutoNLP

Browse files
.gitattributes CHANGED
@@ -25,3 +25,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar.gz filter=lfs diff=lfs merge=lfs -text
29
+ *.pkl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags: autonlp
3
+ language: unk
4
+ widget:
5
+ - text: "I love AutoNLP 🤗"
6
+ datasets:
7
+ - gabitoo1234/autonlp-data-mut_uchile
8
+ co2_eq_emissions: 43.078469852595994
9
+ ---
10
+
11
+ # Model Trained Using AutoNLP
12
+
13
+ - Problem type: Multi-class Classification
14
+ - Model ID: 640218740
15
+ - CO2 Emissions (in grams): 43.078469852595994
16
+
17
+ ## Validation Metrics
18
+
19
+ - Loss: 0.8302136063575745
20
+ - Accuracy: 0.7887341933835739
21
+ - Macro F1: 0.5756730305293746
22
+ - Micro F1: 0.7887341933835739
23
+ - Weighted F1: 0.7878942570915727
24
+ - Macro Precision: 0.620883634472996
25
+ - Micro Precision: 0.7887341933835739
26
+ - Weighted Precision: 0.8009430092038783
27
+ - Macro Recall: 0.5521761315904072
28
+ - Micro Recall: 0.7887341933835739
29
+ - Weighted Recall: 0.7887341933835739
30
+
31
+
32
+ ## Usage
33
+
34
+ You can use cURL to access this model:
35
+
36
+ ```
37
+ $ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoNLP"}' https://api-inference.huggingface.co/models/gabitoo1234/autonlp-mut_uchile-640218740
38
+ ```
39
+
40
+ Or Python API:
41
+
42
+ ```
43
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
44
+
45
+ model = AutoModelForSequenceClassification.from_pretrained("gabitoo1234/autonlp-mut_uchile-640218740", use_auth_token=True)
46
+
47
+ tokenizer = AutoTokenizer.from_pretrained("gabitoo1234/autonlp-mut_uchile-640218740", use_auth_token=True)
48
+
49
+ inputs = tokenizer("I love AutoNLP", return_tensors="pt")
50
+
51
+ outputs = model(**inputs)
52
+ ```
config.json ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "AutoNLP",
3
+ "_num_labels": 28,
4
+ "architectures": [
5
+ "BertForSequenceClassification"
6
+ ],
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "classifier_dropout": null,
9
+ "gradient_checkpointing": false,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "120",
15
+ "1": "130",
16
+ "2": "140",
17
+ "3": "150",
18
+ "4": "190",
19
+ "5": "210",
20
+ "6": "220",
21
+ "7": "230",
22
+ "8": "240",
23
+ "9": "260",
24
+ "10": "310",
25
+ "11": "320",
26
+ "12": "330",
27
+ "13": "340",
28
+ "14": "350",
29
+ "15": "360",
30
+ "16": "370",
31
+ "17": "380",
32
+ "18": "390",
33
+ "19": "410",
34
+ "20": "420",
35
+ "21": "430",
36
+ "22": "490",
37
+ "23": "510",
38
+ "24": "520",
39
+ "25": "530",
40
+ "26": "610",
41
+ "27": "690"
42
+ },
43
+ "initializer_range": 0.02,
44
+ "intermediate_size": 3072,
45
+ "label2id": {
46
+ "120": 0,
47
+ "130": 1,
48
+ "140": 2,
49
+ "150": 3,
50
+ "190": 4,
51
+ "210": 5,
52
+ "220": 6,
53
+ "230": 7,
54
+ "240": 8,
55
+ "260": 9,
56
+ "310": 10,
57
+ "320": 11,
58
+ "330": 12,
59
+ "340": 13,
60
+ "350": 14,
61
+ "360": 15,
62
+ "370": 16,
63
+ "380": 17,
64
+ "390": 18,
65
+ "410": 19,
66
+ "420": 20,
67
+ "430": 21,
68
+ "490": 22,
69
+ "510": 23,
70
+ "520": 24,
71
+ "530": 25,
72
+ "610": 26,
73
+ "690": 27
74
+ },
75
+ "layer_norm_eps": 1e-12,
76
+ "max_length": 192,
77
+ "max_position_embeddings": 512,
78
+ "model_type": "bert",
79
+ "num_attention_heads": 12,
80
+ "num_hidden_layers": 12,
81
+ "output_past": true,
82
+ "pad_token_id": 1,
83
+ "padding": "max_length",
84
+ "position_embedding_type": "absolute",
85
+ "problem_type": "single_label_classification",
86
+ "torch_dtype": "float32",
87
+ "transformers_version": "4.15.0",
88
+ "type_vocab_size": 2,
89
+ "use_cache": true,
90
+ "vocab_size": 31002
91
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c9da3bafb097fec9eb9d43aac422acd6887fe08180d073460b6f7c57063c53
3
+ size 439573741
sample_input.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0032c9705713b04b09f2a91b3cda634c7eaceb0b312ae7d28f213d6aa36db179
3
+ size 5920
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +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": false, "do_basic_tokenize": true, "never_split": null, "model_max_length": 512, "special_tokens_map_file": "/root/.cache/huggingface/transformers/78141ed1e8dcc5ff370950397ca0d1c5c9da478f54ec14544187d8a93eff1a26.f982506b52498d4adb4bd491f593dc92b2ef6be61bfdbe9d30f53f963f9f5b66", "name_or_path": "AutoNLP", "tokenizer_class": "BertTokenizer"}
vocab.txt ADDED
The diff for this file is too large to render. See raw diff