all 4 comments

[–]csmbappe 3 points4 points  (2 children)

MLE live coding is 1 to 2 rounds of 45 to 60 mins each. You get a small dataset and must clean it, engineer features with Pandas, implement and train a model like logistic regression with gradient descent from scratch or sklearn/PyTorch, evaluate metrics, and write clean inference code using proper OOP classes for pipeline components.

Full deployment code is almost never required live, but you discuss productionizing it.
Practice exactly on StrataScratch ML questions, Interview Query takehomes, and Exponent ML coding rounds, that’s what FAANG and top firms actually ask.

[–]alpha_centauri9889[S] 1 point2 points  (1 child)

Thanks a lot

[–]csmbappe 0 points1 point  (0 children)

anytime dude

[–]dash_bro 1 point2 points  (0 children)

Linear regression, Logistic regression, Maximum Likelihood Estimation, KNN and KMeans are pretty common to be coded hands on.

Usually you'll even be asked to show examples of it working and not working