ディープラーニングのグラフをエクセルに

조회 수: 5 (최근 30일)
大空
大空 2023년 1월 15일
댓글: 大空 2023년 3월 3일
ディープラーニングを行った結果の表をエクセルに起こしたいです。どのようにすればよろしいでしょうか?

답변 (1개)

Naoya
Naoya 2023년 1월 18일
>> [net,info] = trainNetwork(...)
のように戻り値を 2つにして2つめの出力引数 info より数値として情報を取得できます。
Excel への書き込みについては、 writematrix などをご使用ください。
TrainingLoss = info.TrainingLoss;
TrainingAccuracy = info.TrainingAccuracy;
ValidationLoss = info.ValidationLoss;
ValidationAccuracy = info.ValidationAccuracy;
results = [TrainingLoss;
TrainingAccuracy;
ValidationLoss;
ValidationAccuracy];
writematrix(results,'results.xlsx')
  댓글 수: 1
大空
大空 2023년 3월 3일
データの書き込みはできたのですがグラフ化する画面が見当たらないのですがどのようにすればよろしいのでしょうか?

댓글을 달려면 로그인하십시오.

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!