I have trained my neural network now I want to test it .I have left some some data only for testing it is not used in train .how I could test my model using untrained data
조회 수: 2 (최근 30일)
이전 댓글 표시
I am training Schottky diode .I have two input voltage and temperature and output is current .I am using only one hidden layer with 10 neurons .I have trained my model in MATLAB .least MSE is obtained .I have left some data for testing .now I want to test my model using that untrained data .how I could test it in Matlab ? Any command ? Please help
댓글 수: 0
채택된 답변
Ayush Kumar Jaiswal
2022년 6월 20일
You can use
yfit = predict(Mdl,X);
Where Mdl is your trained neural network, and X will be your test datasets.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!