Shoriful025 commited on
Commit
02bbbe6
·
verified ·
1 Parent(s): 8f08863

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +31 -0
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // config.json
2
+ {
3
+ "_name_or_path": "google/bert-base-uncased",
4
+ "architectures": [
5
+ "DecisionTransformerForSequenceClassification"
6
+ ],
7
+ "hidden_size": 768,
8
+ "num_hidden_layers": 12,
9
+ "model_type": "decision_transformer",
10
+ "vocab_size": 30522,
11
+ "problem_type": "single_label_classification",
12
+ "num_labels": 3,
13
+ "id2label": {
14
+ "0": "High Risk",
15
+ "1": "Medium Risk",
16
+ "2": "Low Risk"
17
+ },
18
+ "label2id": {
19
+ "High Risk": 0,
20
+ "Medium Risk": 1,
21
+ "Low Risk": 2
22
+ },
23
+ "max_seq_len": 50,
24
+ "feature_mapping": {
25
+ "age": "continuous",
26
+ "income": "continuous",
27
+ "credit_score": "continuous",
28
+ "loan_amount": "continuous",
29
+ "default_history": "categorical"
30
+ }
31
+ }