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

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

Réponses (1)

Naoya
Naoya le 18 Jan 2023

0 votes

>> [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 commentaire

大空
大空 le 3 Mar 2023
データの書き込みはできたのですがグラフ化する画面が見当たらないのですがどのようにすればよろしいのでしょうか?

Connectez-vous pour commenter.

Catégories

Produits

Version

R2022b

Question posée :

le 15 Jan 2023

Commenté :

le 3 Mar 2023

Community Treasure Hunt

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

Start Hunting!