我正在尝试将本地机器上的预训练砝码加载到colab笔记本上。 我尝试使用这个
from google.colab import files
up=files.upload()
但是,上传此.hdf5文件大约需要2-3个小时。 我想知道是否还有另一种上传权重的方法,以便可以将其加载到模型中。 如果我直接调用模型的load_weights函数并在本地计算机中指定文件的路径,则会出现以下错误
OSError: Unable to open file (unable to open file: name = 'C:\Users\siddharth\Desktop\SOP\binarization\weights_dibco_borders_256_epochs_247.hdf5', errno = 2, error message = 'No such file or directory', flags = 0, o_flags = 0)
我应该如何进行?