Skip to content

Commit e0be6dd

Browse files
authored
Merge pull request #205 from rama100/master
Added line to build model before calling model.fit.
2 parents fa421b5 + 37b1213 commit e0be6dd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

chapter13_best-practices-for-the-real-world.ipynb

+1
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@
244244
"source": [
245245
"def get_best_trained_model(hp):\n",
246246
" best_epoch = get_best_epoch(hp)\n",
247+
" model = build_model(hp)\n",
247248
" model.fit(\n",
248249
" x_train_full, y_train_full,\n",
249250
" batch_size=128, epochs=int(best_epoch * 1.2))\n",

0 commit comments

Comments
 (0)