Cross-validation in Machine Learning

preview_player
Показать описание
In this video, we will learn a very important concept called Cross-validation in Machine Learning.

============================
Do you want to learn from me?
============================

📱 Grow with us:
Рекомендации по теме
Комментарии
Автор

sir you are really greatest man . I am following your entire series of machine learning . I have seen many channel of machine learning on you tube but you are the one who stand out all of them as best explainer. you deliver mathematical intuition better than anyone on the you tube . please cover entire machine learning topics.

surajpatil
Автор

you contributing to many students, Thanks

pratikghute
Автор

This doesn't sound like Nitish for sure. sounds like a newbie.

ArunKumar-ybjn
Автор

You didn't explain leave one out cross validation

princeraj
Автор

what is the difference between K-fold cross validation and cross validation ?

ajaykushwaha-jemw
Автор

Dear Nitish sir
Can I Get Your Contact? I want to learn deep learning and specially GAN from you.

malaviyaravi
Автор

X = diabetes.data[:150]
y = diabetes.target[:150]
lasso = linear_model.Lasso()

skf = StratifiedKFold(n_splits=2)
results = cross_val_score(lasso, X, y, cv=skf)

yashjain