Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuke-a-uchida committed Aug 5, 2018
1 parent 11725c3 commit db07431
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions age_estimation/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ def get_model(model_name="ResNet50"):
name="pred_age")(base_model.output_layers[0].output)

model = Model(inputs=base_model.input, outputs=prediction)
model.summary()

return model


def main():
get_model("InceptionResNetV2")
model = get_model("InceptionResNetV2")
model.summary()


if __name__ == '__main__':
Expand Down

0 comments on commit db07431

Please sign in to comment.