system HF staff commited on
Commit
21de863
1 Parent(s): 4f0ca5c

Commit From AutoTrain

Browse files
.gitattributes CHANGED
@@ -26,3 +26,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
26
  *.zip filter=lfs diff=lfs merge=lfs -text
27
  *.zstandard filter=lfs diff=lfs merge=lfs -text
28
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
26
  *.zip filter=lfs diff=lfs merge=lfs -text
27
  *.zstandard filter=lfs diff=lfs merge=lfs -text
28
  *tfevents* filter=lfs diff=lfs merge=lfs -text
29
+ *.tar.gz filter=lfs diff=lfs merge=lfs -text
30
+ *.pkl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags: autotrain
3
+ language: en
4
+ widget:
5
+ - text: "I love AutoTrain 🤗"
6
+ datasets:
7
+ - Lucifermorningstar011/autotrain-data-ner
8
+ co2_eq_emissions: 43.26533004662002
9
+ ---
10
+
11
+ # Model Trained Using AutoTrain
12
+
13
+ - Problem type: Entity Extraction
14
+ - Model ID: 778023879
15
+ - CO2 Emissions (in grams): 43.26533004662002
16
+
17
+ ## Validation Metrics
18
+
19
+ - Loss: 5.475859779835446e-06
20
+ - Accuracy: 0.9999996519918594
21
+ - Precision: 0.0
22
+ - Recall: 0.0
23
+ - F1: 0.0
24
+
25
+ ## Usage
26
+
27
+ You can use cURL to access this model:
28
+
29
+ ```
30
+ $ 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/Lucifermorningstar011/autotrain-ner-778023879
31
+ ```
32
+
33
+ Or Python API:
34
+
35
+ ```
36
+ from transformers import AutoModelForTokenClassification, AutoTokenizer
37
+
38
+ model = AutoModelForTokenClassification.from_pretrained("Lucifermorningstar011/autotrain-ner-778023879", use_auth_token=True)
39
+
40
+ tokenizer = AutoTokenizer.from_pretrained("Lucifermorningstar011/autotrain-ner-778023879", use_auth_token=True)
41
+
42
+ inputs = tokenizer("I love AutoTrain", return_tensors="pt")
43
+
44
+ outputs = model(**inputs)
45
+ ```
config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "AutoTrain",
3
+ "_num_labels": 2,
4
+ "activation": "gelu",
5
+ "architectures": [
6
+ "DistilBertForTokenClassification"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "dim": 768,
10
+ "dropout": 0.1,
11
+ "hidden_dim": 3072,
12
+ "id2label": {
13
+ "0": "0",
14
+ "1": "9"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "label2id": {
18
+ "0": 0,
19
+ "9": 1
20
+ },
21
+ "max_length": 64,
22
+ "max_position_embeddings": 512,
23
+ "model_type": "distilbert",
24
+ "n_heads": 12,
25
+ "n_layers": 6,
26
+ "output_past": true,
27
+ "pad_token_id": 0,
28
+ "padding": "max_length",
29
+ "qa_dropout": 0.1,
30
+ "seq_classif_dropout": 0.2,
31
+ "sinusoidal_pos_embds": true,
32
+ "tie_weights_": true,
33
+ "torch_dtype": "float32",
34
+ "transformers_version": "4.15.0",
35
+ "vocab_size": 28996
36
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2746df3e6a36025b65155a10c421d14c5126a2d86574f6781a384692928c6b93
3
+ size 260809205
sample_input.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81e71eb6522873f6e0d8cfd8b189f2ac780ca79550d8fc48830fd96568a2cc85
3
+ size 2579
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": false, "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": "AutoTrain", "tokenizer_class": "DistilBertTokenizer"}
vocab.txt ADDED
The diff for this file is too large to render. See raw diff