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
| #!/usr/bin/env python | |
| from urllib.request import urlopen | |
| import numpy as np | |
| from keras.models import Sequential | |
| from keras.layers import Dense | |
| from keras.wrappers.scikit_learn import KerasRegressor | |
| from sklearn.model_selection import cross_val_score | |
| from sklearn.model_selection import KFold | |
| from sklearn.preprocessing import StandardScaler |