Last active
March 18, 2019 09:29
-
-
Save 97k/7dee9d2616bcce33b7feaf624af8081a to your computer and use it in GitHub Desktop.
Revisions
-
97k revised this gist
Mar 18, 2019 . 1 changed file with 5 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,6 @@ NN_ARCHITECTURE = [ {"input_dim": 3, "output_dim": 4, "activation": "relu"},# First Hidden Layer {"input_dim": 4, "output_dim": 4, "activation": "relu"},# Second Hidden Layer {"input_dim": 4, "output_dim": 1, "activation": "sigmoid"},# Output Layer ]
-
97k created this gist
Mar 17, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ NN_ARCHITECTURE = [ {"input_dim": 2, "output_dim": 32, "activation": "relu"}, # Input Layer {"input_dim": 32, "output_dim": 64, "activation": "relu"},# First Hidden Layer {"input_dim": 64, "output_dim": 64, "activation": "relu"},# Second Hidden Layer {"input_dim": 64, "output_dim": 32, "activation": "relu"},# Third Hidden Layer {"input_dim": 32, "output_dim": 1, "activation": "sigmoid"},# Output Layer ]