Change language

keras.fit () and keras.fit_generator ()

Keras.fit ()

syntax :

 fit (object, x = NULL, y = NULL, batch_size = NULL, epochs = 10, verbose = getOption ("keras.fit_verbose", default = 1), callbacks = NULL, view_metrics = getOption ("keras.view_metrics", default = "auto"), validation_split = 0, validation_data = NULL, shuffle = TRUE, class_weight = NULL, sample_weight = NULL, initial_epoch = 0, steps_per_epoch = NULL, validation_steps = NULL, ...) 

Understanding a few important arguments:

 -"  object : the model to train. -"  X : our training data. Can be Vector, array or matrix -"  Y : our training labels. Can be Vector, array or matrix -"  Batch_size : it can take any integer value or NULL and by default, it will be set to 32. It specifies no. of samples per gradient. -"  Epochs : an integer and number of epochs we want to train our model for. -"  Verbose : specifies verbosity mode (0 = silent, 1 = progress bar, 2 = one line per epoch). -"  Shuffle : whether we want to shuffle our training data before each epoch. -"  steps_per_epoch : it specifies the total number of steps taken before one epoch has finished and started the next epoch. By default it values ​​is set to NULL. 

How to use Keras fit:

 model.fit (Xtrain, Ytrain, batch_size = 32, epochs = 100) 

Here we first enter training data (Xtrain) and training shortcuts (Ytrain). We then use Keras to train our model for 100 epochs with a batch_size of 32.

When we call the .fit () function, it makes assumptions:

  • The entire training kit can fit into the computer’s RAM.
  • Calling the model. The fit method a second time is not going to re-initialize our already trained weights, which means we can actually make sequential calls to fit if we want, and then manipulate it properly.
  • No need to use generators Keras (i.e. no data reasoning)
  • Raw data is used to train our network, and our raw data only fits in memory.


Keras.fit_generator ():

syntax :

 fit_generator (object, generator, steps_per_epoch, epochs = 1, verbose = getOption ("keras.fit_verbose", default = 1), callbacks = NULL, view_metrics = getOption ("keras.view_metrics", default = "auto"), validation_data = NULL, validation_steps = NULL, class_weight = NULL, max_queue_size = 10, workers = 1, initial_epoch = 0) 

Understanding several important arguments:

 -"  object : the Keras Object model. -"  generator : a generator whose output must be a list of the form: - (inputs, targets) - (input, targets, sample_weights) a single output of the generator makes a single batch and hence all arrays in the list must be having the length equal to the size of the batch. The generator is expected to loop over its data infinite no. of times, it should never return or exit. -"  steps_per_epoch : it specifies the total number of steps taken from the generator as soon as one epoch is finished and next epoch has started. We can calculate the value of steps_per_epoch as the total number of samples in your dataset divided by the batch size. -"  Epochs : an integer and number of epochs we want to train our model for. -"  Verbose : specifies verbosity mode (0 = silent, 1 = progress bar, 2 = one line per epoch). -"  callbacks : a list of callback functions applied during the training of our model. -"  validation_data  can be either: - an inputs and targets list - a generator - an inputs, targets and sample_weights list which can be used to evaluate the loss and metrics for any model after any epoch has ended. -"  validation_steps : only if the validation_data is a generator then only this argument can be used. It specifies the total number of steps taken from the generator before it is stopped at every epoch and its value is calculated as the total number of training data points in your dataset divided by the batch size. 

How to use Keras fit_generator:

 # performing data argumentation by training image generator dataAugmentaion = ImageDataGenerator (rotation_range = 30, zoom_range = 0.20, fill_mode = "nearest ", shear_range = 0.20, horizontal_flip = True, width_shift_range = 0.1, height_shift_range = 0.1) # training the model model.fit_generator (dataAugmentaion.flow (trainX, trainY, batch_size = 32), validation_data = (testX, testY), steps_per_epoch = len (trainX) // 32, epochs = 10) 

Here we train our network for 10 epochs, and the default batch size is 32.

For small and less complex datasets, it is recommended to use function keras.fit, whereas when working with real datasets it is not so easy, because real datasets are huge in size and much more difficult to fit into computer memory. 
These datasets are more difficult to work with, and an important step in working with these datasets is to increase the amount of data to avoid overfitting the model, and to improve the generalizability of our model.

Data Augmentation — is a technique to artificially create a new training dataset from an existing training dataset to improve the performance of a deep learning neural network using the amount of data available. It is a form of regularization that makes our model generalized better than before. 
Here we have used the Keras ImageDataGenerator object to apply data padding to randomly translate, resize, rotate, etc. Images. Each new batch of our data is tuned randomly according to the parameters provided by ImageDataGenerator .

When we call the .fit_generator () function it makes assumptions:

  • Keras first calls the generator function (dataAugmentaion)
  • The generator function (dataAugmentaion) provides batch_size 32 for our .fit_generator () function.
  • our .fit_generator () function first takes a batch of the dataset, then backpropagates and updates the weights in our model.
  • For the specified number of epochs (in our case 10) the process repeats.

Summary:
So, we learned the difference between Keras.fit and Keras.fit_generator functions used to train a neural network deep learning. 
.fit is used when the entire training dataset can fit into memory and no data augmentation is applied. 
.fit_generator is used when either we have a huge dataset to fit in our memory, or when data augmentation needs to be applied.

Shop

Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best laptop for development

$499+
Gifts for programmers

Best laptop for Cricut Maker

$299+
Gifts for programmers

Best laptop for hacking

$890
Gifts for programmers

Best laptop for Machine Learning

$699+
Gifts for programmers

Raspberry Pi robot kit

$150

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers

News


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically