Hidden Size in autoencoder
4 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone,
I am looking for a formula to determine the maximum allowable hidden size in an Autoencoder. I came across the following heuristic:
hiddenSize=round(n×numFeatures)
However, I haven't been able to find a specific reference to cite for this formula.
I would appreciate any guidance or references that could help me adjust the hidden size in an Autoencoder effectively.
Thanks in advance for your assistance.
0 件のコメント
回答 (1 件)
Malay Agarwal
2024 年 6 月 24 日
編集済み: Malay Agarwal
2024 年 6 月 27 日
There is no rule of thumb for selecting the hidden size in an autoencoder. The best way to determine the hidden size of an autoencoder is via hyperparameter tuning. You can set up a grid search with a cross-validation loop to find the hidden size that yields the best results on your dataset. You can also use Bayesian optimization (https://en.wikipedia.org/wiki/Bayesian_optimization) to find the best value for the hidden size.
Please refer to the following link for an example on tuning hyperparameters using Bayesian optimization: https://www.mathworks.com/help/deeplearning/ug/deep-learning-using-bayesian-optimization.html.
Please note that you'll have to adapt the example according to your requirements. You can refer to the following link to learn more about the Bayesian optimization workflow and how you can adapt it to your requirements: https://www.mathworks.com/help/stats/bayesian-optimization-workflow.html.
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Language Support についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!