diff options
Diffstat (limited to 'entries/braxtonh/adam')
-rw-r--r-- | entries/braxtonh/adam/main.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/entries/braxtonh/adam/main.py b/entries/braxtonh/adam/main.py deleted file mode 100644 index 71cb8da..0000000 --- a/entries/braxtonh/adam/main.py +++ /dev/null @@ -1,16 +0,0 @@ -# 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() |