-
Notifications
You must be signed in to change notification settings - Fork 17
/
train.py
75 lines (59 loc) · 2.36 KB
/
train.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright (C) 2020 Juan Du (Technical University of Munich)
# For more information see <https://vision.in.tum.de/research/vslam/dh3d>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
from tensorpack import *
from core.datasets import *
from core.model import DH3D
from core.configs import ConfigFactory
from core.utils import log_config_info
def get_data(cfg={}):
if cfg.training_local:
return get_train_local_selfpair(cfg)
else:
return get_train_global_triplet(cfg)
def get_config(model, config):
callbacks = [
PeriodicTrigger(ModelSaver(max_to_keep=100), every_k_steps=config.savemodel_every_k_steps),
ModelSaver(),
]
train_configs = TrainConfig(
model=model(config),
dataflow=get_data(cfg=config),
callbacks=callbacks,
extra_callbacks=[
MovingAverageSummary(),
MergeAllSummaries(),
ProgressBar(['total_cost']),
RunUpdateOps()
],
max_epoch=50,
)
if config.loadpath is not None:
train_configs.session_init = SmartInit(configs.loadpath, ignore_mismatch=True)
return train_configs
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--gpu', help='comma separated list of GPU(s) to use.', default='0')
parser.add_argument('--logdir', help='log directory', default='logs')
parser.add_argument('--logact', type=str, help='action to log directory', default='k')
parser.add_argument('--cfg', type=str,default='basic_config' )
args = parser.parse_args()
os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu
configs = ConfigFactory(args.cfg).getconfig()
logger.set_logger_dir(args.logdir, action=args.logact)
log_config_info(configs)
train_configs = get_config(DH3D, configs)
# lauch training
launch_train_with_config(train_configs, SimpleTrainer())