Skip to content

Commit

Permalink
Modified Dense Layer @ Lines 36 & 71
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhilash2000 authored Jul 18, 2020
1 parent 86bf214 commit fe1704a
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 fe1704a

Please sign in to comment.