diff options
author | braxtonhall | 2022-10-23 19:27:49 +0000 |
---|---|---|
committer | braxtonhall | 2022-10-23 19:27:49 +0000 |
commit | 77ffde450e92ffe6527c35ffc2383b17d4c04f68 (patch) | |
tree | 65a560a18f1952114727e05872fce3f149e660e4 /entries/braxtonhall/adam/main.py | |
parent | b5b18e46e3a5c4daaa3b4613395b1a216a47bc17 (diff) |
Rename directory to use GitHub ID
Diffstat (limited to 'entries/braxtonhall/adam/main.py')
-rw-r--r-- | entries/braxtonhall/adam/main.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/entries/braxtonhall/adam/main.py b/entries/braxtonhall/adam/main.py new file mode 100644 index 0000000..71cb8da --- /dev/null +++ b/entries/braxtonhall/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() |