diff options
author | braxtonhall | 2022-10-23 18:20:39 +0000 |
---|---|---|
committer | braxtonhall | 2022-10-23 18:20:39 +0000 |
commit | b5b18e46e3a5c4daaa3b4613395b1a216a47bc17 (patch) | |
tree | 13312c71c0a2968cb34f86527a82bb1e33abb4b0 /entries/braxtonh/adam |
Initial commit
Diffstat (limited to 'entries/braxtonh/adam')
-rw-r--r-- | entries/braxtonh/adam/main.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/entries/braxtonh/adam/main.py b/entries/braxtonh/adam/main.py new file mode 100644 index 0000000..71cb8da --- /dev/null +++ b/entries/braxtonh/adam/main.py @@ -0,0 +1,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() |