Why are you using an old model? (I am not joking, I was asked this when reviewing interactive LDA output for unsupervised text classification).
Senior Machine Learning Engineer Interview Questions
614 senior machine learning engineer interview questions shared by candidates
Understanding the math behind gradient descent Neural net back propagation
After you have decided which features to use, describe the process of constructing feature-vectors
Write a function to rearrange a list of article types so that no two consecutive articles are of the same type. If such an arrangement is not possible, return False. Input: articles (List[str]): A list of strings where each string represents an article type. Strings are case-sensitive. Output: List[str]: A valid arrangement of articles where no two consecutive elements are the same. bool: Return False if no valid arrangement exists. Examples: Input: ["sports", "media", "sports"] Output: ["sports", "media", "sports"] Input: ["sports", "sports", "sports"] Output: False Input: ["sports", "media", "news", "media", "sports"] Output: ["sports", "media", "sports", "news", "media"]
ML System Design question related to Pinterest business tasks
The project related technical details.
Explain conv1D operation over an image
describe how LSTM and CNN networks works
Code with AI 1) How to optimize gender diversity for an image search engine? 2) Given a ground truth data sheet and the opitimized results, how to evaluate the optimization?
What is your experience in search?
Viewing 41 - 50 interview questions