This repository was archived by the owner on Apr 10, 2024. It is now read-only.
This repository was archived by the owner on Apr 10, 2024. It is now read-only.
Importing model and visualizing it with Lucid #58
Open
Description
I'm trying to open an autoencoder model I've trained myself, on Lucid, and I'm using as reference the notebook Importing a graph into modelzoo.
I'm mostly in doubt on how to use the provided class:
model_path = 'nasnet_mobile_graphdef_frozen.pb.modelzoo'
image_shape = [224, 224, 3]
image_value_range = (0, 1)
input_name = 'input'
What should I define as image_shape
, image_value_range
? For what images I'm considering this? The output of a certain convolutional layer?
Also, for what is defined the input_name
?