In functional programming we use functions to produce the required output instead of objects. The primary difference between the two is that the state of objects changes continuously whereas functions have no state and make no changes to variables which Is not visible. The itertools functions is one of the most popular modules...
Raag
FuncTools in Python
All posts by Raag
FuncTools in Python
- Apr 25, 2017
- Raag
- General Business, General Technology
How to avoid overfitting while training?
- Oct 21, 2016
- Raag
- Data Science, Statistical Inference
Overfitting happens mostly because the model becomes too complex. Such a model will give poor accuracies, as it memorizes the noise in the training data. A model is usually fit by achieving the highest accuracy on the training data set. However, its efficiency is judged by its its performance on test data. Overfitting occurs...