aboutsummaryrefslogtreecommitdiff
path: root/entries/braxtonhall/adam/main.py
blob: 71cb8da265a6750afe1cd2e7266c52848a59d5a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# from tensorflow.keras.optimizers import Adam
# from tensorflow.keras.models import Sequential
# from tensorflow.keras.layers import Dense

def main():
    # model = Sequential()
    # model.add(Dense(12, input_shape=(8,), activation='relu'))
    # model.add(Dense(8, activation='relu'))
    # model.add(Dense(1, activation='sigmoid'))

    # model.fit(X, y, epochs=4000)
    pass # TODO fill out the rest of this stupid idea


if __name__ == '__main__':
    main()