functional-zoo
functional-zoo copied to clipboard
PyTorch and Tensorflow functional model definitions
File "/usr/local/lib/python3.6/dist-packages/hickle/hickle.py", line 526, in load raise RuntimeError("Cannot open file. This file was likely" RuntimeError: Cannot open file. This file was likely created with Python 2 and an old hickle...
When trying to load the weights of the pretrained wide resnet for ImageNet, using Tensorflow, I get the error message: "RuntimeError: Cannot open file. This file was likely created with...
Hi, In the "Tensorflow model definition" section, the parameters are taken from torch: (params = {k: v.numpy() for k,v in torch.load('wide-resnet-50-2-export.pth').items()}) How can I run this without using torch? Thanks!
To extract features from an arbitrary layer with say, VGG19, given an input image "elephant.jpg", the code in keras+TF is simply: from keras.applications.vgg19 import VGG19 from keras.preprocessing import image from...