October 2018
Intermediate to advanced
252 pages
6h 49m
English
n_lag = 1n_repeats = 30n_epochs = 1000n_batch = 4n_neurons = 3results = DataFrame()
results['results'] = experiment(series, n_lag, n_repeats, n_epochs, n_batch, n_neurons)
Inside the experiment() method, we process the data through the network as follows:
def experiment(series, n_lag, n_repeats, n_epochs, n_batch, n_neurons): # method details ....
raw_values = series.valuesdiff_values = difference(raw_values, 1)
The output of the values of the series data frame is as follows:
raw_values ...
Read now
Unlock full access