YoanSallami
commited on
Commit
·
b08d128
1
Parent(s):
35a9bb1
Fix async cell
Browse files
code_examples/1_basics/6_training_programs.py
CHANGED
@@ -270,7 +270,7 @@ def _(synalinks):
|
|
270 |
|
271 |
|
272 |
@app.cell
|
273 |
-
def _(
|
274 |
checkpoint_filepath,
|
275 |
train,
|
276 |
x_test,
|
@@ -291,7 +291,7 @@ def _(
|
|
291 |
synalinks.utils.plot_metrics(metrics)
|
292 |
|
293 |
@app.cell(hide_code=True)
|
294 |
-
|
295 |
mo.md(
|
296 |
r"""
|
297 |
## Conclusion
|
|
|
270 |
|
271 |
|
272 |
@app.cell
|
273 |
+
async def _(
|
274 |
checkpoint_filepath,
|
275 |
train,
|
276 |
x_test,
|
|
|
291 |
synalinks.utils.plot_metrics(metrics)
|
292 |
|
293 |
@app.cell(hide_code=True)
|
294 |
+
def _(mo):
|
295 |
mo.md(
|
296 |
r"""
|
297 |
## Conclusion
|