guberti commented on code in PR #13627: URL: https://github.com/apache/tvm/pull/13627#discussion_r1057399680
########## gallery/how_to/work_with_microtvm/micro_train.py: ########## @@ -71,7 +60,7 @@ # # .. code-block:: bash # -# %%bash +# %%shell Review Comment: Both do similar, but slightly different things. `%%bash` is the "true" IPython directive, but it doesn't display the script's output in real time. `%%shell` is specific to Google's extension of IPython, but it **does** display the script output in real time. I've used `%%shell` in these tutorials, as these Jupyter magic commands won't show up in the HTML files anyway, and `%%shell` makes the "Open in Colab" function work better. But if people feel strongly, I'd be OK using `%%bash` instead. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
