How to do it...

  1. Run the create_fc_layer function with the preceding input parameters:
layer_fc2 = create_fc_layer(input=layer_fc1_drop,
num_inputs=fc_size,
num_outputs=num_classes,
use_relu=FALSE)
  1. Use TensorFlow's dropout function to handle the scaling and masking of neuron outputs:
layer_fc2_drop <- tf$nn$dropout(layer_fc2, keep_prob)
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset