forked from nttuan8/DeepLearningForComputerVisionWithPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
26 lines (18 loc) · 690 Bytes
/
config.py
File metadata and controls
26 lines (18 loc) · 690 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
# -*- coding: utf-8 -*-
"""
Created on Fri Jan 11 13:52:25 2019
@author: DELL
"""
from os import path
TRAIN_IMAGES = '../Dataset/tiny-imagenet-200/train'
VAL_IMAGES = '../Dataset/tiny-imagenet-200/val/images'
VAL_MAPPING = '../Dataset/tiny-imagenet-200/val/val_annotations.txt'
WORDNET_IDS = '../Dataset/tiny-imagenet-200/wnids.txt'
WORD_LABELS = '../Dataset/tiny-imagenet-200/words.txt'
NUM_CLASSES = 200
NUM_TEST_IMAGE = 50 * NUM_CLASSES
TRAIN_HDF5 = '../Dataset/tiny-imagenet-200/hdf5/train.hdf5'
VAL_HDF5 = '../Dataset/tiny-imagenet-200/hdf5/val.hdf5'
TEST_HDF5 = '../Dataset/tiny-imagenet-200/hdf5/test.hdf5'
DATASET_MEAN = 'Outputs/mean.json'
MODEL_PATH = 'Outputs/model.hdf5'