Irrelevant, since the questions they ask most aren't actually what you're evaluated on. Good luck?
Sr Data Scientist Interview Questions
3,380 sr data scientist interview questions shared by candidates
SQL questions mostly during the technical round, plus some experiment size/AB testing questions.
Projeto que trabalhei que deu errado (case de insucesso)
Can you walk me through a project you've worked on recently which you're proud of?
Design ML system end to end
Case study on feature selection
What makes a classifier non-linear?
What modeling packages do you use.
Explain what the below pseudo-code is trying to do. array[N] # array of N integers, indexed 0 to N-1; # assume it’s populated with [1,4,2,-2,-9,10,2,12,2,-4,-4,-4,-4,2,6,7] peak = array[0] index = 0 output = [] # array of tuples For x in 1..N-1 if (array[x]*array[x-1] > 0) if peak < 0 and array[x] < peak peak = array[x] index = x if peak >= 0 and array[x] > peak peak = array[x] index = x else output.insert( (index, peak) ) peak = array[x] index = x end if end for return output
Explain one of your favorite Data Science projects.
Viewing 1501 - 1510 interview questions