Spaces:
Configuration error
Configuration error
File size: 179 Bytes
1ba539f |
1 2 3 4 5 6 7 8 9 10 |
import os
import imp
def make_network(cfg):
module = cfg.network_module
path = cfg.network_path
network = imp.load_source(module, path).Network()
return network
|