Machine Learning Engineer Interview Questions

Review this list of 259 Machine Learning Engineer interview questions and answers verified by hiring managers and candidates.
  • Apple logoAsked at Apple 

    Coin Change

    IDE
    Medium
    +9

    "The example given is wrong. The 2nd test case should have answer 3, as we can get to 6 by using 3 coins of denomination 2."

    Anmol R. - "The example given is wrong. The 2nd test case should have answer 3, as we can get to 6 by using 3 coins of denomination 2."See full answer

    Machine Learning Engineer
    Coding
    +3 more
  • Apple logoAsked at Apple 
    +4

    "Make current as root. 2 while current is not null, if p and q are less than current, go left. If p and q are greater than current, go right. else return current. return null"

    Vaibhav D. - "Make current as root. 2 while current is not null, if p and q are less than current, go left. If p and q are greater than current, go right. else return current. return null"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +4 more
  • Netflix logoAsked at Netflix 

    "I've participated in several competitions in Kaggle concerning medical images. My most recent competition deals with images of skin lesions and classifying them as either melanoma or not. I focused on fine-tuning pretrained models and ensembling them. I also like to keep track of the latest trends of computer vision research, with a focus on making models memory-efficient through model compression and interpretability."

    Xuelong A. - "I've participated in several competitions in Kaggle concerning medical images. My most recent competition deals with images of skin lesions and classifying them as either melanoma or not. I focused on fine-tuning pretrained models and ensembling them. I also like to keep track of the latest trends of computer vision research, with a focus on making models memory-efficient through model compression and interpretability."See full answer

    Machine Learning Engineer
    Behavioral
  • Amazon logoAsked at Amazon 
    Machine Learning Engineer
    Concept
  • Salesforce logoAsked at Salesforce 
    Machine Learning Engineer
    Behavioral
    +4 more
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • JP Morgan Chase logoAsked at JP Morgan Chase 
    Machine Learning Engineer
    Concept
  • Scale AI logoAsked at Scale AI 
    Machine Learning Engineer
    Behavioral
  • Machine Learning Engineer
    Concept
  • Adobe logoAsked at Adobe 
    +6

    "function isPalindrome(s, start, end) { while (s[start] === s[end] && end >= start) { start++; end--; } return end <= start; } function longestPalindromicSubstring(s) { let longestPalindrome = ''; for (let i=0; i < s.length; i++) { let j = s.length-1; while (s[i] !== s[j] && i <= j) { j--; } if (s[i] === s[j]) { if (isPalindrome(s, i, j)) { const validPalindrome = s.substring(i, j+1"

    Tiago R. - "function isPalindrome(s, start, end) { while (s[start] === s[end] && end >= start) { start++; end--; } return end <= start; } function longestPalindromicSubstring(s) { let longestPalindrome = ''; for (let i=0; i < s.length; i++) { let j = s.length-1; while (s[i] !== s[j] && i <= j) { j--; } if (s[i] === s[j]) { if (isPalindrome(s, i, j)) { const validPalindrome = s.substring(i, j+1"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +3 more
  • Machine Learning Engineer
    Coding
    +1 more
  • Nvidia logoAsked at Nvidia 
    Machine Learning Engineer
    Concept
    +1 more
  • Microsoft logoAsked at Microsoft 

    "A perceptron is the most basic building block of a neural network and represents a single-layer binary classifier."

    Lash - "A perceptron is the most basic building block of a neural network and represents a single-layer binary classifier."See full answer

    Machine Learning Engineer
    Concept
  • Machine Learning Engineer
    Machine Learning
  • Amazon logoAsked at Amazon 

    "Given the dataset does not contain many labels, it implies we cannot directly use supervised learning. I would ask more about the type of dataset we are given. Is it images, text, etc? This may inform the types of transformations we do the dataset. I can see two approaches to training Given the labels we do have, we can find a method to generate labels for the other unlabeled data. This likely will introduce some error since they may not be true labels, but it at least allows processing the"

    Matt M. - "Given the dataset does not contain many labels, it implies we cannot directly use supervised learning. I would ask more about the type of dataset we are given. Is it images, text, etc? This may inform the types of transformations we do the dataset. I can see two approaches to training Given the labels we do have, we can find a method to generate labels for the other unlabeled data. This likely will introduce some error since they may not be true labels, but it at least allows processing the"See full answer

    Machine Learning Engineer
    Concept
  • Netflix logoAsked at Netflix 
    Machine Learning Engineer
    Concept
  • Amazon logoAsked at Amazon 

    "I have worked with ML when I was a PM for Customer Due Diligence and it required recalibration to improve the matching logic (for screening and Proof of business matching with Google) and threshold analysis. In this scenario we had to extract past True positive, False positive decisions from operations and run threshold analysis to come up with a new threshold to match better and remove the noise i.e. False positives. Taking this new threshold for matching, the ML algorithm is receiving feedback"

    Madhur K. - "I have worked with ML when I was a PM for Customer Due Diligence and it required recalibration to improve the matching logic (for screening and Proof of business matching with Google) and threshold analysis. In this scenario we had to extract past True positive, False positive decisions from operations and run threshold analysis to come up with a new threshold to match better and remove the noise i.e. False positives. Taking this new threshold for matching, the ML algorithm is receiving feedback"See full answer

    Machine Learning Engineer
    Technical
    +1 more
  • Amazon logoAsked at Amazon 

    "Effective loss functions for computer vision models vary depending on the specific task, some commonly used loss functions for different tasks: Classification Cross-Entropy Loss:Used for multi-class classification tasks. Measures the difference between the predicted probability distribution and the true distribution. Binary Cross-Entropy Loss:Used for binary classification tasks. Evaluates the performance of a model by comparing predicted probabilities to the true binary labe"

    Shibin P. - "Effective loss functions for computer vision models vary depending on the specific task, some commonly used loss functions for different tasks: Classification Cross-Entropy Loss:Used for multi-class classification tasks. Measures the difference between the predicted probability distribution and the true distribution. Binary Cross-Entropy Loss:Used for binary classification tasks. Evaluates the performance of a model by comparing predicted probabilities to the true binary labe"See full answer

    Machine Learning Engineer
    Concept
  • Amazon logoAsked at Amazon 
    Machine Learning Engineer
    Machine Learning
  • Pinterest logoAsked at Pinterest 
    Machine Learning Engineer
    Concept
  • Pinterest logoAsked at Pinterest 

    "Overfitting is the condition where your model is giving an unexpectedly higher accuracy because of its training in a small database and not getting exposed to anu different type of database while testing"

    Bhavya V. - "Overfitting is the condition where your model is giving an unexpectedly higher accuracy because of its training in a small database and not getting exposed to anu different type of database while testing"See full answer

    Machine Learning Engineer
    Concept
Showing 201-220 of 259