Home > other >  Jupyter notebook display is not complete
Jupyter notebook display is not complete

Time:11-04

You greatly, I python small white one, could you tell me in the use of jupyter notebook when why I always show the output of incomplete? Online to find the solution to many tried and still not solved, have tried everywhere md file, but export the result is still the show is not complete; And I can't find some article said the custom CCS files, what bosses can answer ~ ~ ~ ~ thank you for the
 # coding: utf-8 

CNN Model # 1 - one layer
# import keras with other function library


The from keras. Models import Sequential, Model
The from keras. The layers import Conv2D
The from keras. Utils import np_utils

# import libraries needed for display SVG
The from IPython. Display the import SVG
The from keras. Utils. Vis_utils import model_to_dot

# if Windows environment with the following code
The import OS
OS. Environ (" PATH ") +=OS. Pathsep + 'D: \ python \ Scripts \ Graphviz/bin'



Make convolution of the neural network model #
The model=Sequential ()


# zero padding
Model. The add (Conv2D (filters=3, kernel_size=(3, 3), input_shape=(6,6,1),
Padding='same', the name='Conv2D_1'))


SVG (model_to_dot (model, show_shapes=True). The create (prog='dot', the format='SVG'))



Run after the output of the knot below:

  • Related