()
| 125 | model.fit(X, Y, learning_rate=1e-4, print_period=10, epochs=300, show_fig=True) |
| 126 | |
| 127 | def deep(): |
| 128 | # Challenge - find a deeper, slimmer network to solve the problem |
| 129 | X, Y = all_parity_pairs(12) |
| 130 | model = ANN([1024]*2) |
| 131 | model.fit(X, Y, learning_rate=1e-3, print_period=10, epochs=100, show_fig=True) |
| 132 | |
| 133 | if __name__ == '__main__': |
| 134 | wide() |
nothing calls this directly
no test coverage detected