forked from matterport/Mask_RCNN
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiguration.py
44 lines (32 loc) · 1.09 KB
/
configuration.py
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
40
41
42
43
44
# Mask RCNN library
import mrcnn.model as modellib
from mrcnn.config import Config
import os
class FoodConfig(Config):
"""Configuration for training on the custom dataset.
Derives from the base Config class and overrides some values.
"""
# Give the configuration a recognizable name
NAME = "CapturEat"
GPU = 1
IMAGES_PER_GPU = 1
NUM_CLASSES = 1 + 3 # Background + 3 Food Classes
BACKBONE = 'resnet50'
# Number of training steps per epoch
STEPS_PER_EPOCH = 200
# Set Image size
IMAGE_MAX_DIM = 256
IMAGE_MIN_DIM = 256
ROOT_DIR = os.getcwd()
LOG_DIR = os.path.join(ROOT_DIR, "logs")
MODEL_DIR = os.path.join(LOG_DIR, "model/model.h5")
def load_model():
# Create a new config object
config = FoodConfig()
model = modellib.MaskRCNN(mode='inference',
config=config,
model_dir=LOG_DIR)
# Load trained weights (fill in path to trained weights here)
model.load_weights(MODEL_DIR, by_name=True)
model.keras_model._make_predict_function()
return model