我正在Google Colab环境中使用Keras创建暹罗网络。我使用了GitHub中的这段代码。但是当我尝试运行pickle.dump
代码时出现错误:
with open(os.path.join(save_path,"train.pickle"), "wb") as f:
pickle.dump((X,c), f)
错误:OverflowError: cannot serialize a bytes object larger than 4 GiB
因此,我使用了“ protocol = 4的泡菜”
pickle.dump((X,c), f, protocol=4)
但是在运行此代码期间会话已停止,并且我收到此消息"Session crash for an unknown reason "
和Your session crashed after using all available RAM
我该如何解决这个问题?