Skip to content
Merged

Doc fix #2769

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tfjs-layers/src/engine/training_tensors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ export interface ModelFitArgs {
*/
batchSize?: number;

/** The number of times to iterate over the training data arrays. */
/**
* The number of times to iterate over the training data arrays.
* Note that when used with `initialEpoch`, epochs is the index of the
* "final epoch". The model is not trained for a number of iterations
* given by epochs, but merely until the epoch of index epochs is reached.
*/
epochs?: number;

/**
Expand Down