Azzera filtri
Azzera filtri

Bayesian neural network number of Epoch used

1 visualizzazione (ultimi 30 giorni)
Camila Gill
Camila Gill il 21 Apr 2020
Risposto: Aditya Mittal il 24 Apr 2020
I am using a Bayesian neural network. How do I determine how many epoch numbers are used during each iteration of the nueral network?
I know the default is 1000, but i need to know when less than 1000 epochs are used.
I need the solution in matrix form so that I can use the data for later calculations.

Risposte (1)

Aditya Mittal
Aditya Mittal il 24 Apr 2020
Hi,
I think there is some confusion regarding number of epochs and number of iterations.
I want you to go trough the below link once,
Assuming that you want to know the number of epochs which were used to train your model and performance is minimised to the gaol.
This can be easily acchived by the following code,
[net , tr] = train(net, X, T);
numOfEpochs = tr.num_epochs;
This will return you the number of epochs that were used to train the model.

Categorie

Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by