Machine Learning Engineer Interview Questions

Review this list of 243 machine learning engineer interview questions and answers verified by hiring managers and candidates.
  • Apple logoAsked at Apple 
    Machine Learning Engineer
    Concept
  • Meta (Facebook) logoAsked at Meta (Facebook) 

    "We've identified the problem as a Design a Product question. Use the following framework for tackling these types of questions: Ask Clarifying Questions Identify users, behaviors, and pain points State product goal Identify current solutions Brainstorm new solutions Evaluate solutions Measure success Summarize We'll go through each of these step by step. Ask Clarifying Questions The PM interview isn't about your ability to come up w"

    Exponent - "We've identified the problem as a Design a Product question. Use the following framework for tackling these types of questions: Ask Clarifying Questions Identify users, behaviors, and pain points State product goal Identify current solutions Brainstorm new solutions Evaluate solutions Measure success Summarize We'll go through each of these step by step. Ask Clarifying Questions The PM interview isn't about your ability to come up w"See full answer

    Machine Learning Engineer
    Product Design
    +1 more
  • Machine Learning Engineer
    Concept
    +1 more
  • Capital One logoAsked at Capital One 
    Machine Learning Engineer
    System Design
  • Microsoft logoAsked at Microsoft 

    "BERT is a bidirectional encoder representation transformer. It takes a sequence of tokens and produces vector embeddings for each token. The BERT Model was trained on the task of next sentence prediction task and masked language modeling. The key difference between word2vec and BERT is that, word2vec produces semantic embeddings for each word, where as BERT produces contextual word embeddings based on the relationships between surrounding words. Example - Vector Embedding of lets say word "i"

    Sanmitra I. - "BERT is a bidirectional encoder representation transformer. It takes a sequence of tokens and produces vector embeddings for each token. The BERT Model was trained on the task of next sentence prediction task and masked language modeling. The key difference between word2vec and BERT is that, word2vec produces semantic embeddings for each word, where as BERT produces contextual word embeddings based on the relationships between surrounding words. Example - Vector Embedding of lets say word "i"See full answer

    Machine Learning Engineer
    Concept
  • 🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.

  • Amazon logoAsked at Amazon 
    Machine Learning Engineer
    Concept
    +1 more
  • Apple logoAsked at Apple 

    "class TrieNode { constructor() { this.children = {}; this.isEndOfWord = false; } } class Trie { constructor() { this.root = new TrieNode(); } insert(word) { let node = this.root; for (const char of word) { if (!node.children[char]) { node.children[char] = new TrieNode(); } node = node.children[char]; } node.isEndOfWord = true; } search(word) { l"

    Tiago R. - "class TrieNode { constructor() { this.children = {}; this.isEndOfWord = false; } } class Trie { constructor() { this.root = new TrieNode(); } insert(word) { let node = this.root; for (const char of word) { if (!node.children[char]) { node.children[char] = new TrieNode(); } node = node.children[char]; } node.isEndOfWord = true; } search(word) { l"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +3 more
  • Samsung logoAsked at Samsung 

    "I've worked on projects not quite like this, but very similar, in the past - I'll borrow from that to answer this: The Broader Context this problem doesn't specify the type of data we're working with, or how it's being ingested to align with my personal background, I'll assume a picture that lends this problem well to being a computer vision (abbreviated "CV") related question: let's say we have a conveyor belt in a waste facility, which sequentially carries a stream of waste w"

    Zain R. - "I've worked on projects not quite like this, but very similar, in the past - I'll borrow from that to answer this: The Broader Context this problem doesn't specify the type of data we're working with, or how it's being ingested to align with my personal background, I'll assume a picture that lends this problem well to being a computer vision (abbreviated "CV") related question: let's say we have a conveyor belt in a waste facility, which sequentially carries a stream of waste w"See full answer

    Machine Learning Engineer
    System Design
    +1 more
  • Apple logoAsked at Apple 
    Machine Learning Engineer
    Technical
  • Google logoAsked at Google 

    "i use google frequently, but most of the time i use for syntax and terms which i dont undestand, google is my go to guy."

    Ankit R. - "i use google frequently, but most of the time i use for syntax and terms which i dont undestand, google is my go to guy."See full answer

    Machine Learning Engineer
    Behavioral
  • Machine Learning Engineer
    System Design
  • Scale AI logoAsked at Scale AI 

    "A typical computer vision pipeline consists of several key stages that process and analyze visual data to extract meaningful information. Here’s a general outline of the steps involved: Image Acquisition:Capturing images or videos using cameras or other imaging devices. Preprocessing steps such as resizing, cropping, and converting color spaces. Image Preprocessing:Noise reduction (e.g., using filters like Gaussian blur). Image normalization to standardize pixel values. Contrast e"

    Shibin P. - "A typical computer vision pipeline consists of several key stages that process and analyze visual data to extract meaningful information. Here’s a general outline of the steps involved: Image Acquisition:Capturing images or videos using cameras or other imaging devices. Preprocessing steps such as resizing, cropping, and converting color spaces. Image Preprocessing:Noise reduction (e.g., using filters like Gaussian blur). Image normalization to standardize pixel values. Contrast e"See full answer

    Machine Learning Engineer
    Concept
  • Amazon logoAsked at Amazon 

    "DevOps Engineer Interview Questions for 3+ yrs experience candidate"

    Vishwanath K. - "DevOps Engineer Interview Questions for 3+ yrs experience candidate"See full answer

    Machine Learning Engineer
    Concept
  • Adobe logoAsked at Adobe 

    "static boolean sudokuSolve(char board) { return sudokuSolve(board, 0, 0); } static boolean sudokuSolve(char board, int r, int c) { if(c>=board[0].length) { r=r+1; c=0; } if(r>=board.length) return true; if(boardr=='.') { for(int num=1; num<=9; num++) { boardr=(char)('0' + num); if(isValidPosition(board, r, c)) { if(sudokuSolve(board, r, c+1)) return true; } boardr='.'; } } else { return sudokuSolve(board, r, c+1); } return false; } static boolean isValidPosition(char b"

    Divya R. - "static boolean sudokuSolve(char board) { return sudokuSolve(board, 0, 0); } static boolean sudokuSolve(char board, int r, int c) { if(c>=board[0].length) { r=r+1; c=0; } if(r>=board.length) return true; if(boardr=='.') { for(int num=1; num<=9; num++) { boardr=(char)('0' + num); if(isValidPosition(board, r, c)) { if(sudokuSolve(board, r, c+1)) return true; } boardr='.'; } } else { return sudokuSolve(board, r, c+1); } return false; } static boolean isValidPosition(char b"See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +4 more
  • Machine Learning Engineer
    Concept
  • "focus was on tradeoffs of diff object detection algorithms, data collection and labelling, foundational models, followup: not working well in production, retraining/active learning"

    Ayush B. - "focus was on tradeoffs of diff object detection algorithms, data collection and labelling, foundational models, followup: not working well in production, retraining/active learning"See full answer

    Machine Learning Engineer
    Machine Learning
  • Apple logoAsked at Apple 
    Machine Learning Engineer
    Concept
  • Adobe logoAsked at Adobe 
    +7

    "from typing import List def traprainwater(height: List[int]) -> int: if not height: return 0 l, r = 0, len(height) - 1 leftMax, rightMax = height[l], height[r] res = 0 while l < r: if leftMax < rightMax: l += 1 leftMax = max(leftMax, height[l]) res += leftMax - height[l] else: r -= 1 rightMax = max(rightMax, height[r]) "

    Anonymous Roadrunner - "from typing import List def traprainwater(height: List[int]) -> int: if not height: return 0 l, r = 0, len(height) - 1 leftMax, rightMax = height[l], height[r] res = 0 while l < r: if leftMax < rightMax: l += 1 leftMax = max(leftMax, height[l]) res += leftMax - height[l] else: r -= 1 rightMax = max(rightMax, height[r]) "See full answer

    Machine Learning Engineer
    Data Structures & Algorithms
    +4 more
  • Meta (Facebook) logoAsked at Meta (Facebook) 
    Video answer for 'Find the common ancestors in a tree.'
    Machine Learning Engineer
    Data Structures & Algorithms
    +1 more
Showing 141-160 of 243