Skip to main content

Machine Learning Engineer Interview Questions

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

    "HashMap supports insert, search, delete and retrieve in O(1). It stores data as key value pairs."

    Ina K. - "HashMap supports insert, search, delete and retrieve in O(1). It stores data as key value pairs."See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
  • Scale AI logoAsked at Scale AI 
    Machine Learning Engineer
    Behavioral
  • Netflix logoAsked at Netflix 

    "TF-IDF CONCEPT EXPLANATION AND INTUITION BUILDING: TF-IDF is a measure that reflects the importance of a word in the document relative to a collection of documents. Its full form is Term Frequency - Inverse Document Frequency. The term TF indicates how often a term occurs in a particular document. It is the ratio of count of a particular term in a document to the number of terms in that particular document. So, the intuition is that if a term occurs frequently in a single documen"

    Satyam C. - "TF-IDF CONCEPT EXPLANATION AND INTUITION BUILDING: TF-IDF is a measure that reflects the importance of a word in the document relative to a collection of documents. Its full form is Term Frequency - Inverse Document Frequency. The term TF indicates how often a term occurs in a particular document. It is the ratio of count of a particular term in a document to the number of terms in that particular document. So, the intuition is that if a term occurs frequently in a single documen"See full answer

    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
  • 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
  • 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
  • Adobe logoAsked at Adobe 
    Machine Learning Engineer
    Behavioral
    +1 more
  • Nvidia logoAsked at Nvidia 
    Machine Learning Engineer
    Concept
    +1 more
  • Machine Learning Engineer
    Concept
  • Machine Learning Engineer
    Coding
    +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
  • Google logoAsked at Google 

    "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
    +1 more
  • Machine Learning Engineer
    Machine Learning
  • Netflix logoAsked at Netflix 
    Machine Learning Engineer
    Concept
  • Amazon logoAsked at Amazon 

    "That I had not been a PM for a formal ML product. But good models need sound data and my five years of sql writing and ensuring that DWHs and marts had the data they needed for reporting would be very relevant"

    Tony C. - "That I had not been a PM for a formal ML product. But good models need sound data and my five years of sql writing and ensuring that DWHs and marts had the data they needed for reporting would be very relevant"See full answer

    Machine Learning Engineer
    Technical
    +1 more
  • 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
  • Pinterest logoAsked at Pinterest 
    Machine Learning Engineer
    Concept
Showing 201-220 of 259