()
| 26 | |
| 27 | |
| 28 | def main(): |
| 29 | FLAGS = ArgsParser().parse_args() |
| 30 | config = load_config(FLAGS.config) |
| 31 | config = merge_config(config, FLAGS.opt) |
| 32 | # export model |
| 33 | export(config) |
| 34 | |
| 35 | |
| 36 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…