-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.ini
More file actions
39 lines (30 loc) · 858 Bytes
/
config.ini
File metadata and controls
39 lines (30 loc) · 858 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
39
[external_paths]
cifar10_url = https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz
[local_paths]
raw_data = data/raw
figures = data/figures
reports = data/reports
models = models
#Raw image data
training_data = data/preprocessed/trn_data.h5
testing_data = data/preprocessed/test_data.h5
#BOVW
local_features = data/features/bovw/local_features.h5
codebook = data/features/bovw/codebook.pickle
training_bovw_features = data/features/bovw/trn_bovw.h5
testing_bovw_features = data/features/bovw/test_bovw.h5
#VGG16
training_vgg_features = data/features/vgg
testing_vgg_features = data/features/vgg
[datasets]
data = features
target = labels
shallow = shallow_features
deep = deep_features
[settings]
#Percentage of features used to form a codebook
codebook_samples = 25
#Number of clusters for a codebook
clusters = 1024
#VGG layer
vgg_layer = fc2