P-DFD / model /__init__.py
mrneuralnet's picture
Initial commit
982865f
raw
history blame contribute delete
254 Bytes
from .network import *
from .common import *
MODELS = {
"Recce": Recce
}
def load_model(name="Recce"):
assert name in MODELS.keys(), f"Model name can only be one of {MODELS.keys()}."
print(f"Using model: '{name}'")
return MODELS[name]