how to calculate the validation metrics ?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi;
how i can compute and plot the attached figure for the validation metrics ????
답변 (1개)
Manish
2024년 12월 27일
Hi Ahmad,
I understand that you want to know how to compute the validation metrics and plot them. You can achieve this with the help of the `trainingOptions` function.
This function has an input called `Metrics` where predefined metrics can be used. You can also create your own custom metrics for the model.
Here's a code snippet to access the metrics using the `info`.
[netTrained,info] = trainnet(___);
show(info);
Refer the below documentions for better undertanding:
- https://www.mathworks.com/help/deeplearning/ref/deep.traininginfo.html
- https://www.mathworks.com/help/deeplearning/ug/define-custom-metric-function.html
- https://www.mathworks.com/help/deeplearning/ref/trainnet.html
Hope it helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!