gpt4 book ai didi

jupyter-notebook - Jupyter notebook/lab 或 contrib 扩展中是否有任何 GOTO 功能?

转载 作者:行者123 更新时间:2023-12-02 20:23:05 27 4
gpt4 key购买 nike

我有一个用于机器学习项目的 jupyter notebook。比如说,它有 20 个细胞。我想要自动化的是,运行前 19 个单元格,更改最后一个单元格的全局变量,然后使用此全局变量更改再次运行从 2 开始的所有单元格。

如果有某种 GOTO 功能,我可以告诉一个单元格在完成后转到另一个单元格,那将是完美的,但变通方法也可能有用。

我试图避免的是:
- 在全局变量更改后复制所有单元格或
- 需要手动执行此操作,这样我就不能只选择“全部运行”

最佳答案

您可以通过在笔记本中运行一些 Javascript 以编程方式执行单元格。将以下内容放在笔记本的第 21 个单元格中:

%%javascript
// run the first 19 cells
var i;
for(i=0; i<19; i++) {
Jupyter.notebook.execute_cells([i]);
}

// set the global in the 20th cell:
Jupyter.notebook.execute_cells([19]);

// run 2nd through 19th cells again:
for(i=1; i<19; i++) {
Jupyter.notebook.execute_cells([i]);
}

关于jupyter-notebook - Jupyter notebook/lab 或 contrib 扩展中是否有任何 GOTO 功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50790037/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com