From dbdbff1b225c7647f0c17083df17b322f30b54c6 Mon Sep 17 00:00:00 2001 From: Bai Yifan Date: Wed, 19 Feb 2020 13:58:36 +0800 Subject: [PATCH] fix distill issue (#247) --- slim/distillation/distill.py | 1 + 1 file changed, 1 insertion(+) diff --git a/slim/distillation/distill.py b/slim/distillation/distill.py index 136507f6d..134e1f37e 100644 --- a/slim/distillation/distill.py +++ b/slim/distillation/distill.py @@ -227,6 +227,7 @@ def main(): teacher_program = teacher_program.clone(for_test=True) cfg = load_config(FLAGS.config) + merge_config(FLAGS.opt) data_name_map = { 'target0': 'target0', 'target1': 'target1', -- GitLab