Skip to content
This repository was archived by the owner on Mar 30, 2022. It is now read-only.

Commit 0e76995

Browse files
authoredMar 19, 2019
Reword "models are data structures ..." (#153)
* Reword "models are data structures ..." @lattner pointed out that this could be made more clear. Updated to > Machine learning models are concepturally functions with internal state called "parameters". In code, models are often represented as a data structure that stores parameters as mutable properties and has an "apply" method. * Update docs/ParameterOptimization.md Co-Authored-By: rxwei <rxwei@google.com>
1 parent f857c7f commit 0e76995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/ParameterOptimization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The concept of parameter optimization is crucial for machine learning algorithms
1010

1111
### Parameters and optimization
1212

13-
Machine learning models are data structures with mutable properties called parameters. Machine learning optimizers "train" models by applying an algorithm (e.g. stochastic gradient descent) to update the parameters of a model.
13+
Machine learning models are conceptually functions with internal state called "parameters". In code, models are often represented as data structures that store parameters as mutable properties and have an "apply" method. Machine learning optimizers "train" models by applying an algorithm (e.g. stochastic gradient descent) to update the parameters of a model.
1414

1515
In Swift, this might look like:
1616

0 commit comments

Comments
 (0)