system HF staff commited on
Commit
0dd9d95
·
1 Parent(s): 9bd2552

Commit From AutoTrain

Browse files
.gitattributes CHANGED
@@ -32,3 +32,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ *.bin.* filter=lfs diff=lfs merge=lfs -text
36
+ *.tar.gz filter=lfs diff=lfs merge=lfs -text
37
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - autotrain
4
+ - token-classification
5
+ language:
6
+ - unk
7
+ widget:
8
+ - text: "I love AutoTrain 🤗"
9
+ datasets:
10
+ - teacookies/autotrain-data-20-12-2022_general_info_exam
11
+ co2_eq_emissions:
12
+ emissions: 21.038593211432406
13
+ ---
14
+
15
+ # Model Trained Using AutoTrain
16
+
17
+ - Problem type: Entity Extraction
18
+ - Model ID: 2543777917
19
+ - CO2 Emissions (in grams): 21.0386
20
+
21
+ ## Validation Metrics
22
+
23
+ - Loss: 0.007
24
+ - Accuracy: 0.998
25
+ - Precision: 0.937
26
+ - Recall: 0.952
27
+ - F1: 0.945
28
+
29
+ ## Usage
30
+
31
+ You can use cURL to access this model:
32
+
33
+ ```
34
+ $ 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/teacookies/autotrain-20-12-2022_general_info_exam-2543777917
35
+ ```
36
+
37
+ Or Python API:
38
+
39
+ ```
40
+ from transformers import AutoModelForTokenClassification, AutoTokenizer
41
+
42
+ model = AutoModelForTokenClassification.from_pretrained("teacookies/autotrain-20-12-2022_general_info_exam-2543777917", use_auth_token=True)
43
+
44
+ tokenizer = AutoTokenizer.from_pretrained("teacookies/autotrain-20-12-2022_general_info_exam-2543777917", use_auth_token=True)
45
+
46
+ inputs = tokenizer("I love AutoTrain", return_tensors="pt")
47
+
48
+ outputs = model(**inputs)
49
+ ```
config.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "AutoTrain",
3
+ "_num_labels": 17,
4
+ "architectures": [
5
+ "BertForTokenClassification"
6
+ ],
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "classifier_dropout": null,
9
+ "directionality": "bidi",
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "B-tec_cert_type",
15
+ "1": "B-tec_expiry_date",
16
+ "2": "B-tec_first_issue_date",
17
+ "3": "B-tec_issue_date",
18
+ "4": "B-tec_model_no",
19
+ "5": "B-tec_report_no",
20
+ "6": "B-tec_report_type",
21
+ "7": "B-tec_standard",
22
+ "8": "I-tec_cert_type",
23
+ "9": "I-tec_expiry_date",
24
+ "10": "I-tec_first_issue_date",
25
+ "11": "I-tec_issue_date",
26
+ "12": "I-tec_model_no",
27
+ "13": "I-tec_report_no",
28
+ "14": "I-tec_report_type",
29
+ "15": "I-tec_standard",
30
+ "16": "O"
31
+ },
32
+ "initializer_range": 0.02,
33
+ "intermediate_size": 3072,
34
+ "label2id": {
35
+ "B-tec_cert_type": 0,
36
+ "B-tec_expiry_date": 1,
37
+ "B-tec_first_issue_date": 2,
38
+ "B-tec_issue_date": 3,
39
+ "B-tec_model_no": 4,
40
+ "B-tec_report_no": 5,
41
+ "B-tec_report_type": 6,
42
+ "B-tec_standard": 7,
43
+ "I-tec_cert_type": 8,
44
+ "I-tec_expiry_date": 9,
45
+ "I-tec_first_issue_date": 10,
46
+ "I-tec_issue_date": 11,
47
+ "I-tec_model_no": 12,
48
+ "I-tec_report_no": 13,
49
+ "I-tec_report_type": 14,
50
+ "I-tec_standard": 15,
51
+ "O": 16
52
+ },
53
+ "layer_norm_eps": 1e-12,
54
+ "max_length": 512,
55
+ "max_position_embeddings": 512,
56
+ "model_type": "bert",
57
+ "num_attention_heads": 12,
58
+ "num_hidden_layers": 12,
59
+ "pad_token_id": 0,
60
+ "padding": "max_length",
61
+ "pooler_fc_size": 768,
62
+ "pooler_num_attention_heads": 12,
63
+ "pooler_num_fc_layers": 3,
64
+ "pooler_size_per_head": 128,
65
+ "pooler_type": "first_token_transform",
66
+ "position_embedding_type": "absolute",
67
+ "torch_dtype": "float32",
68
+ "transformers_version": "4.22.1",
69
+ "type_vocab_size": 2,
70
+ "use_cache": true,
71
+ "vocab_size": 105879
72
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76a8ad38d2fbe25e4aca1d4d9dd5824aeb5c9a469cd835c1a05796e1fca1fd18
3
+ size 667187757
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a530333648f6b969fe92eacd2b0a338cfe48fd0fb5f194b1c3ad5c85f87a95e2
3
+ size 2563635
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "AutoTrain",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "BertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff