How to save the accuracy and loss of every batch in deep learning?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to save the accuracy and loss of every batch in deep learning.It appears in command window as result .
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/830720/image.png)
0 Commenti
Risposta accettata
Chunru
il 11 Dic 2021
Check out the "train" command you use. For example "doc train".
You can include the train record as your output such as:
[trainedNet,tr] = train(net,X,T,Xi,Ai,EW)
% tr -> train record which contains necessary/specified info
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image 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!