Colab中的去激活环境

时间:2018-02-08 06:59:21

标签: google-colaboratory

在Colab上运行笔记本时,我收到消息:

“停用执行环境”

并且执行停止。

请注意,我在执行此笔记本之前已从colab断开连接,然后重新连接增益。

对这个问题有什么想法吗?

感谢

1 个答案:

答案 0 :(得分:1)

我认为我们遇到了类似的问题,这可能是由于记忆问题。会话将断开连接,你必须重新开始运行。

我做了两件事来减少发生的次数是:

  1. 在我开始或重新开始运行我的代码之前,我运行下面的“kill”命令。这基本上清除了内存中留下的任何潜在物品。

    classList = ['One','Two','Three'...];
    
    // remove 'One' from the classList if needed.
    var index = classList.indexOf('One');
    if (index > -1) {
        array.splice(index, 1);
    }
    classes = classList.join(' ');
    
    // the jquery call, notice that we're using a string created by the .join() function called on our array of classes.
    $('#container').on('click',classes,function(e){ /* ... */ }
    
    
    // you can also loop one array and push it's items to a second one, might not be needed, but could help your work.
    classes = [];
    for(var thisClass in classList){
      classes.push('class'+classList[thisClass]);
    }
    
  2. 我使用python所以我不时地运行下面的垃圾收集器。

    !kill -9 -1
    
  3. 这有助于,但不是防弹。