You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the below script for creating frozen graph by given checkpoints and saved_model.pb file. checkpoint path : "data/checkpoints/rgb_imagenet/model.ckpt" in this directory saved model link : https://tfhub.dev/deepmind/i3d-kinetics-400/1
When i was going to load checkpoint, it shows None, after running the script 0kb frozen graph is created.
Are these checkpoint is correct for the model downloaded from above hub?
Hi,
I am using the below script for creating frozen graph by given checkpoints and saved_model.pb file.
checkpoint path : "data/checkpoints/rgb_imagenet/model.ckpt" in this directory
saved model link : https://tfhub.dev/deepmind/i3d-kinetics-400/1
When i was going to load checkpoint, it shows None, after running the script 0kb frozen graph is created.
Are these checkpoint is correct for the model downloaded from above hub?
`import tensorflow as tf
import i3d
input = tf.placeholder(tf.float32, shape=(1, 79, 224, 224, 3))
with tf.variable_scope('RGB'):
model = i3d.InceptionI3d()
logits, _ = model(input, is_training=False)
variable_map = {}
for variable in tf.global_variables():
variable_map[variable.name.replace(':0', '')] = variable
saver = tf.train.Saver(var_list=variable_map, reshape=True)
model_logits = logits
model_predictions = tf.nn.softmax(model_logits)
with tf.Session() as sess:
saver.restore(sess, "data/checkpoints/rgb_imagenet/model.ckpt")
tf.logging.info('RGB checkpoint restored')
can you help me to solve this issue ? Or any other way to use it with mobile ?
I have to use this model in android.
Thanks In Advance
Meenakshi
The text was updated successfully, but these errors were encountered: