- Statistics for Machine Learning
- Pratap Dangeti
- 101字
- 2021-07-02 19:05:56
When to stop tuning machine learning models
When to stop tuning the hyperparameters in a machine learning model is a million-dollar question. This problem can be mostly solved by keeping tabs on training and testing errors. While increasing the complexity of a model, the following stages occur:
- Stage 1: Underfitting stage - high train and high test errors (or low train and low test accuracy)
- Stage 2: Good fit stage (ideal scenario) - low train and low test errors (or high train and high test accuracy)
- Stage 3: Overfitting stage - low train and high test errors (or high train and low test accuracy)

推薦閱讀
- Getting Started with Gulp(Second Edition)
- Spring Boot開發與測試實戰
- 編程的修煉
- 深入理解Django:框架內幕與實現原理
- Java開發入行真功夫
- Python高級編程
- Reactive Programming With Java 9
- Building Minecraft Server Modifications
- .NET 3.5編程
- Raspberry Pi Home Automation with Arduino(Second Edition)
- Building Serverless Architectures
- AMP:Building Accelerated Mobile Pages
- .NET 4.0面向對象編程漫談:應用篇
- Software-Defined Networking with OpenFlow(Second Edition)
- Python應用與實戰