QNN commited on
Commit
94ca4cb
·
1 Parent(s): e89959d

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +44 -6
config.json CHANGED
@@ -1,7 +1,45 @@
1
  {
2
- "task": "Token-Classification",
3
- "model": "token_classification",
4
- "dataset": "autotrain_data",
5
- "num_epochs": 10,
6
- "batch_size": 32
7
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "_name_or_path": "AutoTrain",
3
+ "_num_labels": 6,
4
+ "architectures": [
5
+ "BertForTokenClassification"
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": "CATALYST",
15
+ "1": "CO-CATALYST",
16
+ "2": "O",
17
+ "3": "Other",
18
+ "4": "PROPERTY_NAME",
19
+ "5": "PROPERTY_VALUE"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "intermediate_size": 3072,
23
+ "label2id": {
24
+ "CATALYST": 0,
25
+ "CO-CATALYST": 1,
26
+ "O": 2,
27
+ "Other": 3,
28
+ "PROPERTY_NAME": 4,
29
+ "PROPERTY_VALUE": 5
30
+ },
31
+ "layer_norm_eps": 1e-12,
32
+ "max_length": 256,
33
+ "max_position_embeddings": 512,
34
+ "model_type": "bert",
35
+ "num_attention_heads": 12,
36
+ "num_hidden_layers": 12,
37
+ "pad_token_id": 0,
38
+ "padding": "max_length",
39
+ "position_embedding_type": "absolute",
40
+ "torch_dtype": "float32",
41
+ "transformers_version": "4.29.2",
42
+ "type_vocab_size": 2,
43
+ "use_cache": true,
44
+ "vocab_size": 30522
45
+ }