(Phone Round 2 - Technical) Write an algorithm to say if two strings are anagrams of each other? Input: 'ace' and 'cae' Output: True
Machine Learning Researcher Interview Questions
1,840 machine learning researcher interview questions shared by candidates
How much experience do you have with Python?
How long have you worked with python? or computer vision? They mainly asked technical questions about my research.
what is CNN
Tell me about your projects and reason to leave your current organization.
(onsite interview roun 5): Edit distance There is a big file, it contain lots of words. given the first word and second word, check wether the words are in the path of edit distance e.g. File input: 'aaaa' 'aaab' 'abab' 'acdb' 'almn' 'abbb' Word1: 'aaaa' Word2: 'abbb' Output: True Explaination: Yes. There is an edit distance path from 'aaaa' to 'abbb' 'aaaa' -> 'aaab' -> 'abab' -> 'abbb'
Given a SQL database with an Integer field, retrieve the sum of said field for all records.
Was asked to implement a K-means clustering algorithm, with the major skeleton of the code provided.
Have you worked on GANs? Describe how they can be utilized to augment a dataset of documents?
'''Question 1: Given a sorted but rotated array, and a target, find the location of the target in the array. If the target is not in the array, returns -1 1) INPUT: [3,6,7,1,2], target = 1 OUTPUT: 3 2) INPUT: [3,6,7,1,2], target = 9 OUTPUT: -1 '''
Viewing 41 - 50 interview questions