July 2018
Beginner to intermediate
406 pages
9h 55m
English
Can we use our features to feed into TensorFlow? Of course! But let's try to use this opportunity to achieve two other goals:
But let's cut to the chase and set our hyperparameters:
import tensorflow as tfimport numpy as npn_epochs = 50learning_rate = 0.01batch_size = 128step = 32dropout_rate = 0.2signal_size = 1000signal_shape = [signal_size,1] ...
Read now
Unlock full access