system HF staff commited on
Commit
4ea8ade
1 Parent(s): 2799f92

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-21-12-2022_exam_part4_1
11
+ co2_eq_emissions:
12
+ emissions: 17.974413129541247
13
+ ---
14
+
15
+ # Model Trained Using AutoTrain
16
+
17
+ - Problem type: Entity Extraction
18
+ - Model ID: 2558278221
19
+ - CO2 Emissions (in grams): 17.9744
20
+
21
+ ## Validation Metrics
22
+
23
+ - Loss: 0.001
24
+ - Accuracy: 1.000
25
+ - Precision: 0.984
26
+ - Recall: 0.985
27
+ - F1: 0.984
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-21-12-2022_exam_part4_1-2558278221
35
+ ```
36
+
37
+ Or Python API:
38
+
39
+ ```
40
+ from transformers import AutoModelForTokenClassification, AutoTokenizer
41
+
42
+ model = AutoModelForTokenClassification.from_pretrained("teacookies/autotrain-21-12-2022_exam_part4_1-2558278221", use_auth_token=True)
43
+
44
+ tokenizer = AutoTokenizer.from_pretrained("teacookies/autotrain-21-12-2022_exam_part4_1-2558278221", 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,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "AutoTrain",
3
+ "_num_labels": 21,
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_L_E_model_no",
15
+ "1": "B-tec_braking_force_max",
16
+ "2": "B-tec_braking_force_min",
17
+ "3": "B-tec_buffer",
18
+ "4": "B-tec_guided_rail_condition",
19
+ "5": "B-tec_lift",
20
+ "6": "B-tec_safety_gear",
21
+ "7": "B-tec_total_mass_max",
22
+ "8": "B-tec_total_mass_min",
23
+ "9": "B-tec_tripping_speed_max",
24
+ "10": "I-tec_L_E_model_no",
25
+ "11": "I-tec_braking_force_max",
26
+ "12": "I-tec_braking_force_min",
27
+ "13": "I-tec_buffer",
28
+ "14": "I-tec_guided_rail_condition",
29
+ "15": "I-tec_lift",
30
+ "16": "I-tec_safety_gear",
31
+ "17": "I-tec_total_mass_max",
32
+ "18": "I-tec_total_mass_min",
33
+ "19": "I-tec_tripping_speed_max",
34
+ "20": "O"
35
+ },
36
+ "initializer_range": 0.02,
37
+ "intermediate_size": 3072,
38
+ "label2id": {
39
+ "B-tec_L_E_model_no": 0,
40
+ "B-tec_braking_force_max": 1,
41
+ "B-tec_braking_force_min": 2,
42
+ "B-tec_buffer": 3,
43
+ "B-tec_guided_rail_condition": 4,
44
+ "B-tec_lift": 5,
45
+ "B-tec_safety_gear": 6,
46
+ "B-tec_total_mass_max": 7,
47
+ "B-tec_total_mass_min": 8,
48
+ "B-tec_tripping_speed_max": 9,
49
+ "I-tec_L_E_model_no": 10,
50
+ "I-tec_braking_force_max": 11,
51
+ "I-tec_braking_force_min": 12,
52
+ "I-tec_buffer": 13,
53
+ "I-tec_guided_rail_condition": 14,
54
+ "I-tec_lift": 15,
55
+ "I-tec_safety_gear": 16,
56
+ "I-tec_total_mass_max": 17,
57
+ "I-tec_total_mass_min": 18,
58
+ "I-tec_tripping_speed_max": 19,
59
+ "O": 20
60
+ },
61
+ "layer_norm_eps": 1e-12,
62
+ "max_length": 512,
63
+ "max_position_embeddings": 512,
64
+ "model_type": "bert",
65
+ "num_attention_heads": 12,
66
+ "num_hidden_layers": 12,
67
+ "pad_token_id": 0,
68
+ "padding": "max_length",
69
+ "pooler_fc_size": 768,
70
+ "pooler_num_attention_heads": 12,
71
+ "pooler_num_fc_layers": 3,
72
+ "pooler_size_per_head": 128,
73
+ "pooler_type": "first_token_transform",
74
+ "position_embedding_type": "absolute",
75
+ "torch_dtype": "float32",
76
+ "transformers_version": "4.25.1",
77
+ "type_vocab_size": 2,
78
+ "use_cache": true,
79
+ "vocab_size": 105879
80
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8250e685a0d71e82463bf2aee3f652a84f6cee73ae2eed4a6cea19aad3a7d03
3
+ size 667200045
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