This file contains 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
import talos as ta | |
from keras.models import Sequential | |
from keras.layers import Dense | |
def minimal(): | |
x, y = ta.templates.datasets.iris() | |
p = {'activation':['relu', 'elu'], | |
'optimizer': ['Nadam', 'Adam'], |