dings4ever commited on
Commit
4f80352
·
verified ·
1 Parent(s): 06246cc

Upload domain_classifier/config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. domain_classifier/config.json +44 -0
domain_classifier/config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForSequenceClassification"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "bos_token_id": null,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "dtype": "float32",
11
+ "eos_token_id": null,
12
+ "hidden_dim": 3072,
13
+ "id2label": {
14
+ "0": "ecommerce",
15
+ "1": "telecom",
16
+ "2": "banking",
17
+ "3": "cibil",
18
+ "4": "insurance",
19
+ "5": "general"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "label2id": {
23
+ "banking": 2,
24
+ "cibil": 3,
25
+ "ecommerce": 0,
26
+ "general": 5,
27
+ "insurance": 4,
28
+ "telecom": 1
29
+ },
30
+ "max_position_embeddings": 512,
31
+ "model_type": "distilbert",
32
+ "n_heads": 12,
33
+ "n_layers": 6,
34
+ "pad_token_id": 0,
35
+ "problem_type": "single_label_classification",
36
+ "qa_dropout": 0.1,
37
+ "seq_classif_dropout": 0.2,
38
+ "sinusoidal_pos_embds": false,
39
+ "tie_weights_": true,
40
+ "tie_word_embeddings": true,
41
+ "transformers_version": "5.0.0",
42
+ "use_cache": false,
43
+ "vocab_size": 30522
44
+ }