Top "Pre-trained-model" questions

Is it possible to make a trainable variable not trainable?

I created a trainable variable in a scope. Later, I entered the same scope, set the scope to reuse_variables, …

tensorflow pre-trained-model
Download pretrained ImageNet model of ResNet, VGG, etc. (.PB file)

I have downloaded a pre-trained model on ImageNet of Inception v3 from http://download.tensorflow.org/models/image/imagenet/inception-2015…

python tensorflow pre-trained-model
TypeError: ('Keyword argument not understood:', 'data_format')

I trained and downloaded a model(a CNN) using Keras from google colaboratory when I tried to load the model …

keras pre-trained-model
AttributeError: 'Node' object has no attribute 'output_masks'

I use Keras pretrained model VGG16. The problem is that after configuring tensorflow to use the GPU I get an …

python tensorflow keras pre-trained-model
Is there any way I can download the pre-trained models available in PyTorch to a specific path?

I am referring to the models that can be found here: https://pytorch.org/docs/stable/torchvision/models.html#torchvision-models

python deep-learning pytorch pre-trained-model torchvision
Loading Torch7 trained models (.t7) in PyTorch

I am using Torch7 library for implementing neural networks. Mostly, I rely on pre-trained models. In Lua I use torch.…

python lua pytorch torch pre-trained-model
How to save/load a tensorflow hub module to/from a custom path?

The tensorflow_hub library maintainers has made it every easy for users to download and use the pre-trained tensorflow modules, …

python tensorflow deep-learning pre-trained-model tensorflow-hub
How to save a trained model by scikit-learn?

I am trying to re-create the prediction of a trained model but I don't know how to save a model. …

python python-3.x scikit-learn save pre-trained-model
How to load a graph checkpoints (.ckpt) and use SavedModelBuilder to save it as protobuf without declaring any tf.Variables?

Currently I have resnet_v2_50.ckpt from tensorflow's open sourced pretrained model. I am trying to serve this model in …

tensorflow deep-learning pre-trained-model