Skip to content

Commit

Permalink
Merge pull request #244 from Abhilash2000/patch-1
Browse files Browse the repository at this point in the history
Modified Dense Layer @ Lines 36 & 71
  • Loading branch information
Palashio committed Jul 18, 2020
2 parents 86bf214 + fe1704a commit 64392a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libra/modeling/prediction_model_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def get_keras_model_reg(dataset, i):
else:
model.add(
Dense(
i * 64,
64,
kernel_initializer="normal",
activation="relu"))

Expand Down Expand Up @@ -68,7 +68,7 @@ def get_keras_model_class(dataset, i, num_classes):
else:
model.add(
Dense(
i * 64,
64,
kernel_initializer="normal",
activation="relu"))

Expand Down

0 comments on commit 64392a4

Please sign in to comment.