DogBreed_gluon
DogBreed_gluon copied to clipboard
kaggle Dog Breed Identification
当我运行get_features.ipynb中的下面这一行: features_vgg, labels = get_features(models.vgg16_bn(pretrained=True, ctx=ctx), data) 程序会运行很久之后便会出现错误BadZipFile File is not a zip file。程序运行时显示是从一个网址下载vgg16_bn-7f01cf05.zip文件,点开这个网址提示说这个xml网址并未包含关联信息,请问这个错误应该如何解决呢?
I am trying to run the model, but there's a error in this line: features = np.concatenate([features_resnet, features_densenet, features_inception], axis=-1) Error is caused by the inconsistent dimensions. Then I check...
关于机器问题
当我运行get_features.ipynb中的下面这一行: features_vgg, labels = get_features(models.vgg16_bn(pretrained=True, ctx=ctx), data) 便会出现错误:The kernel appears to have died. It will restart automatically. 然后kernel 重启, 反复循环. Jupyter notebook错误日志: terminate called after throwing an instance of 'std::bad_alloc'...
my code went error when running `for X,y in tqdm(data)` I have installed all dependence. But went error like following ` terminate called after throwing an instance of 'std::bad_alloc' what():...
我在跑get_features_v3的时候跑第二段的如下第二行代码时候 img_224 = ((cv2.resize(img, (224, 224))[:,:,::-1] / 255.0 - mean) / std).transpose((2, 0, 1))#此行无问题 img_299 = ((cv2.resize(img, (299, 299))[:,:,::-1] / 255.0 - mean) / std).transpose((2, 0, 1)) 下方的进度条跑到78%之后就会报错Canceled future for...