visualizing_convnets icon indicating copy to clipboard operation
visualizing_convnets copied to clipboard

This is the code repository for my Medium post "Understanding your Convolution network with Visualizations"

Results 3 visualizing_convnets issues
Sort by recently updated
recently updated
newest added

Hello, I would like to run your code, but there is a mismatch between installed CUDAtoolkits. Could you tell me what was the version of the packages that you used,...

Hello, I am new to TF and I am using TF version 1.13.1 I am using jupyter notebook and I got stuck at following line. `activations = activation_model.predict(img_arr)` When I...

I'm getting this error in Visualizing Intermediate Layer Activations part, I used this model def M_Model(): base_model = InceptionV3(weights=None, include_top=False, input_shape=(3, 224, 224)) # Classification block x = GlobalAveragePooling2D(name='avg_pool')(base_model.output) x...