Difference between revisions of "Optimizer"

From
Jump to: navigation, search
m
m
Line 22: Line 22:
 
* [http://www.tensorflow.org/api_guides/python/train TensorFlow Training Classes Python API]  
 
* [http://www.tensorflow.org/api_guides/python/train TensorFlow Training Classes Python API]  
 
* [http://videos.h2o.ai/watch/4Qx2eUbrsUCZ4rThjtVxeb H2O Driverless AI - Intro + Interactive Hands-on Lab - Video]
 
* [http://videos.h2o.ai/watch/4Qx2eUbrsUCZ4rThjtVxeb H2O Driverless AI - Intro + Interactive Hands-on Lab - Video]
 +
* [[Process Supervision]]
  
 
There are many options for optimizer in [[TensorFlow]]. Optimizers are the tool to minimise [[loss]] between prediction and real value. There are many different [[Activation Functions#Weights|weights]] a model could learn, and brute-force testing every one would take forever. Instead, an optimizer is chosen which evaluates the [[loss]] value, and smartly updates the [[Activation Functions#Weights|weights]]. [http://keras.io/optimizers/ Click here For a list of Keras optimizer functions.]  Optimizer is one of the two parameters required to compile a model...
 
There are many options for optimizer in [[TensorFlow]]. Optimizers are the tool to minimise [[loss]] between prediction and real value. There are many different [[Activation Functions#Weights|weights]] a model could learn, and brute-force testing every one would take forever. Instead, an optimizer is chosen which evaluates the [[loss]] value, and smartly updates the [[Activation Functions#Weights|weights]]. [http://keras.io/optimizers/ Click here For a list of Keras optimizer functions.]  Optimizer is one of the two parameters required to compile a model...

Revision as of 21:44, 28 November 2023

YouTube search... ...Google search

There are many options for optimizer in TensorFlow. Optimizers are the tool to minimise loss between prediction and real value. There are many different weights a model could learn, and brute-force testing every one would take forever. Instead, an optimizer is chosen which evaluates the loss value, and smartly updates the weights. Click here For a list of Keras optimizer functions. Optimizer is one of the two parameters required to compile a model...



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


Genetic Algorithm Optimization