Which Machine Learning Algorithm Will You Apply For A Usecase-Best Way To Answer In Interview?

  Рет қаралды 16,923

Krish Naik

Krish Naik

3 жыл бұрын

We at iNeuron are happy to announce multiple series of courses. Finally we are covering Big Data,
Cloud,AWS,AIops and MLops. Check out the syllabus below.
30 Days Data Science Interview preparation - rb.gy/q1c58g
Big Data Master-rb.gy/xg1ob7
Business analytics-rb.gy/herdd8
Aws Cloud Masters- rb.gy/x5poyj
AI OPS- rb.gy/kionj6
Incase of any queries you can contact the below number. Happy Learning!!
8788503778
6260726925
9538303385
8660034247
9880055539

Пікірлер: 48
@explorer2918
@explorer2918 3 жыл бұрын
most important and common question in every interview ✌️
@reenasheoran893
@reenasheoran893 3 жыл бұрын
I think this question should be tackled in a hierarchical manner. For example, 1. First, check does the data have a label column- if yes (go with supervised learning) else (go with unsupervised learning). 2. Second, check is the problem prediction or classification. 3. Third, check size of data. If the data is too large go with ANN else Machine Learning 4. Fourth, apply basic algorithm such as linear, svm, etc. first 5 Now, apply ensemble techniques.
@veeresh4441
@veeresh4441 3 жыл бұрын
How do you decide weather the data is large or not ?
@reenasheoran893
@reenasheoran893 3 жыл бұрын
@@veeresh4441 by number of records and features....ultimately size of data
@veeresh4441
@veeresh4441 3 жыл бұрын
@@reenasheoran893 suppose you have some 10000 rows and 100 columns or features , do u consider this big?
@reenasheoran893
@reenasheoran893 3 жыл бұрын
@@veeresh4441 no
@ajaykushwaha-je6mw
@ajaykushwaha-je6mw 3 жыл бұрын
I also follow the same approach which you have suggested.
@shwetadalal1549
@shwetadalal1549 2 жыл бұрын
First we will see the type of problem. supervised/unsupervised? classification/regression?...then we will try out multiple ml models for each case and see which model gives best accuracy
@adipurnomo5683
@adipurnomo5683 2 жыл бұрын
Great video krish naik.
@gouthamipalarapu909
@gouthamipalarapu909 3 жыл бұрын
@krish Naik can you please create a playlist required to crack data analyst role. You have given the roadmap. Requesting you to upload a playlist required. Thank you in advance Krish 😊😊
@trojanatom6836
@trojanatom6836 3 жыл бұрын
I prefer your old style of teaching rather than using whiteboard/blackboard. It's a good question though!
@laharipuneeth6632
@laharipuneeth6632 3 жыл бұрын
Good one👌
@yogita4631
@yogita4631 3 жыл бұрын
Visualisation of data using seaborn library ,if my data point are linearly separable then I use linear regression and logistic regression if not the I go for ensemble techniques , and SVM
@pratiknaikwade95
@pratiknaikwade95 Жыл бұрын
Perfect 🤞🏻😎😎
@nutriwaywithrohan5729
@nutriwaywithrohan5729 3 жыл бұрын
Sir please make video on retraining approach based on performance metrics
@datascientistoflife8550
@datascientistoflife8550 3 жыл бұрын
It depends on type of data then we can only deside which algo to be applied..
@satyanagajyothi4514
@satyanagajyothi4514 3 жыл бұрын
Hi Krish...even i faced the same question in interview and said i will go and apply all the algos and select based on trial and error and will select the best model with good metrics.. but the interviewer said that it is not proper approach to select a model on trial and error ...
@rich007p
@rich007p 3 жыл бұрын
we should not say trial and error.. but we can say we have model evaluation techniques like the confusion matrix, classification report to determine which model is performing better in that particular data set. its always better to check with 5, 6 models before coming to a conclusion about the data set. I guess you were correct the only thing was not to mention trial and errr thing :)
@raghuvararora9673
@raghuvararora9673 3 жыл бұрын
STAR should be used to structure the ideas
@nittureddy2077
@nittureddy2077 3 жыл бұрын
if i use pycaret and comparing the model , Will it be enough?
@prateekreddybatapatis7269
@prateekreddybatapatis7269 3 жыл бұрын
How to resolve 'XGBoost error: bad allocation' in multiclass image classification? Please let me know.
@ArunKumar-sg6jf
@ArunKumar-sg6jf 3 жыл бұрын
Search in google
@ahmedfarouk2514
@ahmedfarouk2514 3 жыл бұрын
Please advise Can gridsearch or random search fix overfitting or underfitting issue?!
@anshumansahu5993
@anshumansahu5993 3 жыл бұрын
Yes, they helps in finding best hyper parameters available in your parameter space. But again it depends upon your parameter space, how you are choosing that.
@rahulbhardwaj3843
@rahulbhardwaj3843 Жыл бұрын
Hi Krish, How to check if the data is linearly separable or not ?
@ashyy346
@ashyy346 8 ай бұрын
You can use pair plot, in short visualize the data first and then you will get to know whether it is linearly separable or not
@salmanpatel5666
@salmanpatel5666 3 жыл бұрын
But applying every algorithm won't it be time consuming?
@shanbhag003
@shanbhag003 3 жыл бұрын
Auto ML models does that for you. It applies every ML algorithm (a bit consuming, though not much) and gives u the result.
@True_Feelingsss...
@True_Feelingsss... 3 жыл бұрын
Basic ML interview question: Why/When ML model stops training after calling fit method ??
@pravali4452
@pravali4452 3 жыл бұрын
That depends on the algorithm..if it's linear regression, it uses least squares to determine the line of fit. It will calculate values that minimize the square of residuals from tht line. If it's logistic regression, it follows max likelihood estimation..if it's decision trees, the algorithm follows entropy or gini index and node impurity to calculate the best split and goes until the depth you define. So each algorithm has its own set of criteria and methods to follow.. these are some of the ones that I know. Correct me if I'm wrong.
@True_Feelingsss...
@True_Feelingsss... 3 жыл бұрын
@@pravali4452 you said that is correct but that is not answer to my question
@karthikeyans6825
@karthikeyans6825 Жыл бұрын
When error value(loss) doesn't change much after each training iteration? Is it right? If not, may I know what's the answer!
@vasudeva5345
@vasudeva5345 3 жыл бұрын
Can anyone suggest me a book to refer for Python learning. I am new to this course..
@deepakpandey8240
@deepakpandey8240 3 жыл бұрын
Crash course in Python is a good book to start.
@priyaupadhyay7402
@priyaupadhyay7402 3 жыл бұрын
Better to check python documentation... best way to learn python
@shanbhag003
@shanbhag003 3 жыл бұрын
If that is the answer, won't the next question be it is very time consuming to do trial and error ?
@krishnaik06
@krishnaik06 3 жыл бұрын
Model needs to be created in that way
@shanbhag003
@shanbhag003 3 жыл бұрын
@@krishnaik06 I thought your first approach "after performing EDA, selection of model" was the best one.
@krishnaik06
@krishnaik06 3 жыл бұрын
Yes but now if see the automl models they verify with all the algorithms
@shanbhag003
@shanbhag003 3 жыл бұрын
@@krishnaik06 Yaa right. Microsoft Azure does the same thing.
@shwetadalal1549
@shwetadalal1549 2 жыл бұрын
@@shanbhag003 Why should one worry about choosing right algorithm when we have AutoML!!
@srinidhi6049
@srinidhi6049 3 жыл бұрын
Your presentation looks like you're imitating applied ai course...srikanth sir class 😅😅....great job still
@krishnaik06
@krishnaik06 3 жыл бұрын
:) I really adore him
@srinidhi6049
@srinidhi6049 3 жыл бұрын
@@krishnaik06 That's wonderful and we adore you ...please do your traditional kindo videos which you used to do at the beginning....thank you 👍
@vyshagha3747
@vyshagha3747 3 жыл бұрын
Don't think no one can be compared with Srikanth sir..he is in different league
@srinidhi6049
@srinidhi6049 3 жыл бұрын
@@vyshagha3747 There's no comparison which im making....we are already standing on the shoulders of Gaints. Its my observation which I expressed.
@balapranav5364
@balapranav5364 3 жыл бұрын
Hi Krish in one of my interview I faced questions like. 1. What is the loss function in collaborative filtering 2. How we can use regularisation techniques in collaborative filtering Can you please explain
Sigma Girl Past #funny #sigma #viral
00:20
CRAZY GREAPA
Рет қаралды 28 МЛН
Smart Sigma Kid #funny #sigma #comedy
00:25
CRAZY GREAPA
Рет қаралды 7 МЛН
I’m just a kid 🥹🥰 LeoNata family #shorts
00:12
LeoNata Family
Рет қаралды 19 МЛН
Which algorithm to use in Machine Learning?
16:29
Thinking Neuron
Рет қаралды 1,4 М.
Standardization Vs Normalization- Feature Scaling
12:52
Krish Naik
Рет қаралды 290 М.
AI VS ML VS DL VS Data Science
9:45
Krish Naik
Рет қаралды 2,8 МЛН
How to choose Machine Learning Algorithm in 10 Minutes?
8:23
BEPEC by Kanth - #BuildExperience & Get Hired!
Рет қаралды 8 М.
How I’d learn ML in 2024 (if I could start over)
7:05
Boris Meinardus
Рет қаралды 949 М.
How Swiggy uses Machine Learning | Case Study | CampusX
25:05
Sigma Girl Past #funny #sigma #viral
00:20
CRAZY GREAPA
Рет қаралды 28 МЛН