Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pengsida
/
NeuralBody
like
1
Configuration error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/1
NeuralBody
/
lib
/
networks
/
make_network.py
pengsida
initial commit
1ba539f
almost 3 years ago
raw
Copy download link
history
blame
Safe
179 Bytes
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