-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
38 lines (38 loc) · 877 Bytes
/
config.json
File metadata and controls
38 lines (38 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"environment": "development",
"debug": true,
"database": {
"url": "sqlite:///./chatbot_analytics.db",
"echo": false
},
"model": {
"default_model": "bert-base-uncased",
"cache_dir": "./models/cache",
"max_sequence_length": 512,
"batch_size": 16,
"device": "auto"
},
"data": {
"dataset_dir": "./Dataset",
"processed_data_dir": "./data/processed",
"cache_dir": "./data/cache",
"validation_split": 0.15,
"test_split": 0.15
},
"api": {
"host": "0.0.0.0",
"port": 8000,
"debug": true,
"reload": true
},
"dashboard": {
"host": "0.0.0.0",
"port": 8501,
"debug": true,
"theme": "light"
},
"logging": {
"level": "INFO",
"file_path": "./logs/app.log"
}
}