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

ディープラーニングを行った結果の表をエクセルに起こしたいです。どのようにすればよろしいでしょうか?

回答(1 个)

Naoya
Naoya 2023-1-18

0 个投票

>> [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
データの書き込みはできたのですがグラフ化する画面が見当たらないのですがどのようにすればよろしいのでしょうか?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Data Import from MATLAB 的更多信息

产品

版本

R2022b

提问:

2023-1-15

评论:

2023-3-3

Community Treasure Hunt

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

Start Hunting!