MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / main

Function main

ann_class2/dropout_theano.py:153–158  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

151
152
153def main():
154 # step 1: get the data and define all the usual variables
155 Xtrain, Xtest, Ytrain, Ytest = get_normalized_data()
156
157 ann = ANN([500, 300], [0.8, 0.5, 0.5])
158 ann.fit(Xtrain, Ytrain, Xtest, Ytest, show_fig=True)
159
160
161if __name__ == '__main__':

Callers 1

dropout_theano.pyFile · 0.70

Calls 3

fitMethod · 0.95
get_normalized_dataFunction · 0.90
ANNClass · 0.70

Tested by

no test coverage detected