masonbarnes commited on
Commit
93f75a8
·
1 Parent(s): 60e527a

Upload 8 files

Browse files
.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ pytorch_model.bin filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - autotrain
4
+ - text-classification
5
+ language:
6
+ - en
7
+ widget:
8
+ - text: "I love AutoTrain 🤗"
9
+ datasets:
10
+ - Johnsmith382234/autotrain-data-message-classifier
11
+ co2_eq_emissions:
12
+ emissions: 0.021715821689788844
13
+ ---
14
+
15
+ # Model Trained Using AutoTrain
16
+
17
+ - Problem type: Multi-class Classification
18
+ - Model ID: 2136768960
19
+ - CO2 Emissions (in grams): 0.0217
20
+
21
+ ## Validation Metrics
22
+
23
+ - Loss: 0.285
24
+ - Accuracy: 0.924
25
+ - Macro F1: 0.922
26
+ - Micro F1: 0.924
27
+ - Weighted F1: 0.926
28
+ - Macro Precision: 0.950
29
+ - Micro Precision: 0.924
30
+ - Weighted Precision: 0.932
31
+ - Macro Recall: 0.903
32
+ - Micro Recall: 0.924
33
+ - Weighted Recall: 0.924
34
+
35
+
36
+ ## Usage
37
+
38
+ You can use cURL to access this model:
39
+
40
+ ```
41
+ $ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/Johnsmith382234/autotrain-message-classifier-2136768960
42
+ ```
43
+
44
+ Or Python API:
45
+
46
+ ```
47
+ from transformers import AutoModelForSequenceClassification, AutoTokenizer
48
+
49
+ model = AutoModelForSequenceClassification.from_pretrained("Johnsmith382234/autotrain-message-classifier-2136768960", use_auth_token=True)
50
+
51
+ tokenizer = AutoTokenizer.from_pretrained("Johnsmith382234/autotrain-message-classifier-2136768960", use_auth_token=True)
52
+
53
+ inputs = tokenizer("I love AutoTrain", return_tensors="pt")
54
+
55
+ outputs = model(**inputs)
56
+ ```
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "AutoTrain",
3
+ "_num_labels": 10,
4
+ "architectures": [
5
+ "RobertaForSequenceClassification"
6
+ ],
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "bos_token_id": 0,
9
+ "classifier_dropout": null,
10
+ "eos_token_id": 2,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 1024,
14
+ "id2label": {
15
+ "0": "disrespect",
16
+ "1": "disturbing",
17
+ "2": "drugs",
18
+ "3": "filterbypass",
19
+ "4": "inappropriate",
20
+ "5": "ok",
21
+ "6": "politics",
22
+ "7": "spam",
23
+ "8": "testcontent",
24
+ "9": "threat"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "intermediate_size": 4096,
28
+ "label2id": {
29
+ "disrespect": 0,
30
+ "disturbing": 1,
31
+ "drugs": 2,
32
+ "filterbypass": 3,
33
+ "inappropriate": 4,
34
+ "ok": 5,
35
+ "politics": 6,
36
+ "spam": 7,
37
+ "testcontent": 8,
38
+ "threat": 9
39
+ },
40
+ "layer_norm_eps": 1e-05,
41
+ "max_length": 128,
42
+ "max_position_embeddings": 514,
43
+ "model_type": "roberta",
44
+ "num_attention_heads": 16,
45
+ "num_hidden_layers": 24,
46
+ "pad_token_id": 1,
47
+ "padding": "max_length",
48
+ "position_embedding_type": "absolute",
49
+ "problem_type": "single_label_classification",
50
+ "torch_dtype": "float32",
51
+ "transformers_version": "4.22.1",
52
+ "type_vocab_size": 1,
53
+ "use_cache": true,
54
+ "vocab_size": 50265
55
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abe08719f899769f21dd6ae471402cfb2e59a603f9bdecebfa82ef589eca40df
3
+ size 1421617133
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
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": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "bos_token": "<s>",
4
+ "cls_token": "<s>",
5
+ "eos_token": "</s>",
6
+ "errors": "replace",
7
+ "mask_token": "<mask>",
8
+ "model_max_length": 512,
9
+ "name_or_path": "AutoTrain",
10
+ "pad_token": "<pad>",
11
+ "sep_token": "</s>",
12
+ "special_tokens_map_file": null,
13
+ "tokenizer_class": "RobertaTokenizer",
14
+ "trim_offsets": true,
15
+ "unk_token": "<unk>"
16
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff