-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
34 lines (34 loc) · 723 Bytes
/
config.json
File metadata and controls
34 lines (34 loc) · 723 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
{
"mode": [
"test"
],
"data": [
{
"path": "./data/sentiment/imdb_labelled.csv",
"dataset": "imdb"
}
],
"model": {
"epochNum": 10,
"batchSize": 32,
"contextWindowSize": 1,
"kFoldSplit": 2,
"classNum": 2,
"paddingLength": 70,
"foldNum": 10,
"testPortion": 0,
"path": "./saved_models/model_imdb.pt"
},
"ontology": {
"path": "./ontologies/RelexNet.owl",
"ontoPrefix": "xai-onto",
"dataPrefix": "xai-data"
},
"evaluationRange": {
"begin": 10,
"end": 30
},
"output": {
"explanation": "./explaination_imdb.ttl"
}
}