MCPcopy Index your code
hub / github.com/tdeboissiere/DeepLearningImplementations / load

Function load

Eve/models.py:92–101  ·  view source on GitHub ↗
(model_name, img_dim, nb_classes)

Source from the content-addressed store, hash-verified

90
91
92def load(model_name, img_dim, nb_classes):
93
94 if model_name == "CNN":
95 model = CNN(img_dim, nb_classes, model_name=model_name)
96 if model_name == "Big_CNN":
97 model = Big_CNN(img_dim, nb_classes, model_name=model_name)
98 elif model_name == "FCN":
99 model = FCN(img_dim, nb_classes, model_name=model_name)
100
101 return model

Callers

nothing calls this directly

Calls 3

CNNFunction · 0.85
Big_CNNFunction · 0.85
FCNFunction · 0.85

Tested by

no test coverage detected