MCPcopy Index your code
hub / github.com/lazyprogrammer/machine_learning_examples / main

Function main

cnn_class/cifar.py:225–231  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

223
224
225def main():
226 X, Y = getImageData()
227 model = CNN(
228 convpool_layer_sizes=[(20, 5, 5), (20, 5, 5)],
229 hidden_layer_sizes=[500, 300],
230 )
231 model.fit(X, Y)
232
233if __name__ == '__main__':
234 main()

Callers 1

cifar.pyFile · 0.70

Calls 3

fitMethod · 0.95
getImageDataFunction · 0.85
CNNClass · 0.70

Tested by

no test coverage detected