Difference between revisions of "Optimizer"

From
Jump to: navigation, search
Line 16: Line 16:
 
There are many options for optimizer in Tensorflow. Optimizers are the tool to minimise [[loss]] between prediction and real value. [http://keras.io/optimizers/ Click here For a list of Keras optimizer functions.]  
 
There are many options for optimizer in Tensorflow. Optimizers are the tool to minimise [[loss]] between prediction and real value. [http://keras.io/optimizers/ Click here For a list of Keras optimizer functions.]  
  
 +
----
 +
::<code> model.compile(optimizer='[[Average-Stochastic Gradient Descent (SGD) Weight-Dropped LSTM (AWD-LSTM) |sgd]]'. [[loss]]='mean_squared_error')</code>
 +
----
  
 
<youtube>cJA5IHIIL30</youtube>
 
<youtube>cJA5IHIIL30</youtube>

Revision as of 09:04, 31 August 2019

YouTube search... ...Google search

There are many options for optimizer in Tensorflow. Optimizers are the tool to minimise loss between prediction and real value. Click here For a list of Keras optimizer functions.


model.compile(optimizer='sgd'. loss='mean_squared_error')

Genetic Algorithm Optimization