Preguntas de entrevista de Machine learning engineer intern
77
Preguntas de entrevista para Machine Learning Engineer Intern compartidas por los candidatosPrincipales preguntas de entrevista

Write a function to find the intersection between two arrays.
1 respuestas↳
there are many ways to write this function. If we want just to use native python language we can do : def inter(l1, l2): l3 = [v for v in l1 if v in l2] return l3 or we can for example use the intersection function like : def inter(l1, l2): l3 = set(l1).intersection(l2) return l3 Menos

Describe why you would be a good fit at IQVIA
1 respuestas↳
I talked about IQVIA's company and how my skills would help there company grow.

Have you worked on GANs? Describe how they can be utilized to augment a dataset of documents?
1 respuestas↳
I had worked previously on GANs in an academic project to produce image datasets. So I was able to answer the question Menos

How to identify and deal with overfitting and underfitting
1 respuestas↳
A model is over-fitting when you see the epoch to become 100% accurate or more. to deal with it you can simplify the model by reducing the parameters, for example reduce the convolution neural networks or dropouts. A model is under-fitting when you see the losses do not reduce. Deal it with feeding the model with more data, do back propagation, switching to a non linear model from a linear one, adding hidden layers, convolution neural networks, and random dropouts. Menos

Why should we hire you?
1 respuestas↳
Hi Sir/Madam, I’m passionate to learn and work. I’m willing to take up the challenge at the same time able to contribute area that need to improve .. My responsibility, royalty, passionate and contribution worth in value that hired for sure… Menos

What's the project's detail about?

What is the most challenging part of your project? How did you solve this
go through your resume please.

A lot of questions about machine learning models, including random forest, neural network, and logistic regression.
