Skip to content

Commit c5f13b7

Browse files
author
Yuval Fernbach
committed
Bug Fix
1 parent 14603eb commit c5f13b7

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

1_Monitoring_your_TensorFlow_scripts.ipynb

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
"tb_callback = TensorBoard(log_dir=args.model_dir,update_freq='epoch')\n",
202202
"```\n",
203203
"\n",
204-
"Add tb_callback to the model.fit and model.evaluate callbacks list.\n",
204+
"Add tb_callback to the model.fit callbacks list.\n",
205205
"```python\n",
206206
"callbacks=[previous_value,tb_callback]\n",
207207
"```"
@@ -351,8 +351,17 @@
351351
"nbconvert_exporter": "python",
352352
"pygments_lexer": "ipython3",
353353
"version": "3.6.5"
354+
},
355+
"pycharm": {
356+
"stem_cell": {
357+
"cell_type": "raw",
358+
"source": [],
359+
"metadata": {
360+
"collapsed": false
361+
}
362+
}
354363
}
355364
},
356365
"nbformat": 4,
357366
"nbformat_minor": 4
358-
}
367+
}

3_Distributed_training_with_Horovod.ipynb

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
" callbacks.append(checkpoint)\n",
4848
" callbacks.append(tb_callback)\n",
4949
"```\n",
50-
"update model.fit (don't update model.evaluate) to use the new callbacks list\n",
50+
"update model.fit to use the new callbacks list\n",
5151
"\n",
5252
"### Configure the optimizer\n",
5353
"in\n",
@@ -244,8 +244,17 @@
244244
"nbconvert_exporter": "python",
245245
"pygments_lexer": "ipython3",
246246
"version": "3.6.5"
247+
},
248+
"pycharm": {
249+
"stem_cell": {
250+
"cell_type": "raw",
251+
"source": [],
252+
"metadata": {
253+
"collapsed": false
254+
}
255+
}
247256
}
248257
},
249258
"nbformat": 4,
250259
"nbformat_minor": 4
251-
}
260+
}

0 commit comments

Comments
 (0)