ArneBinder commited on
Commit
7eb7922
1 Parent(s): 7561e2d

Push model using huggingface_hub.

Browse files
Files changed (1) hide show
  1. taskmodule_config.json +24 -0
taskmodule_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "taskmodule_type": "TransformerTokenClassificationTaskModule",
3
+ "tokenizer_name_or_path": "bert-base-uncased",
4
+ "entity_annotation": "entities",
5
+ "partition_annotation": null,
6
+ "padding": true,
7
+ "truncation": false,
8
+ "max_length": null,
9
+ "pad_to_multiple_of": null,
10
+ "label_pad_token_id": -100,
11
+ "label_to_id": {
12
+ "O": 0,
13
+ "B-Claim": 1,
14
+ "I-Claim": 2,
15
+ "B-MajorClaim": 3,
16
+ "I-MajorClaim": 4,
17
+ "B-Premise": 5,
18
+ "I-Premise": 6
19
+ },
20
+ "max_window": 512,
21
+ "window_overlap": 0,
22
+ "show_statistics": false,
23
+ "include_ill_formed_predictions": true
24
+ }