DiogenesAnalytics / autoencoder

Python library implementing various autoencoders.
https://colab.research.google.com/github/DiogenesAnalytics/autoencoder/blob/master/notebooks/demo/anomaly_detection.ipynb
MIT License
0 stars 0 forks source link

Sub Module: Hyperparameter Tuning #5

Open DiogenesAnalytics opened 11 months ago

DiogenesAnalytics commented 11 months ago

Problem

Would be good to have some hyperparameter tuning tools available for finding optimal hyperparameters for the different autoencoder variants.

References

DiogenesAnalytics commented 11 months ago

Research Papers

PDFs of various research articles related to hyperparameter tuning.

List

DiogenesAnalytics commented 11 months ago

Default Autoencoder Hyperparameters

Here we discuss some tentative solutions to finding the default values for more complex autencoders.

Problem

How to determine what the "default" model parameters (layer size, kernel size, etc ...) should be.

Solution 1: Perform Grid Search

Can use Grid Search or something similar to search for the optimal model hyperparameters. Can literally write up a Jupyter Notebook to demo/run the tuning code.

References