This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Importing Keras Sequential Model | |
| from keras.models import Sequential | |
| from keras.layers import Dense | |
| import numpy | |
| # Initializing the seed value to a integer. | |
| seed = 7 | |
| numpy.random.seed(seed) |