Jupyter | The kernel appears to have died. It will restart automatically |

前端 未结 8 1399
醉酒成梦
醉酒成梦 2020-12-16 13:11

I have been running a particular python script for some time. All of the script had been running perfectly fine (including in Jupyter) for many months before this. Now, some

相关标签:
8条回答
  • 2020-12-16 13:32

    When this happened to me, I just uploaded my notebook to google colab and it started working. It seems, though, that the issue is a bottleneck in compute/memory resources in training these big models, and places like colab have a lot more bandwidth than does your machine.

    0 讨论(0)
  • 2020-12-16 13:36

    For macOS Versions of 12.0 and above, Tensorflow GPU isn't supported. So try this piece of code, it worked for me -

    import os 
    os.environ['KMP_DUPLICATE_LIB_OK']='True'
    
    0 讨论(0)
提交回复
热议问题