Ai software engineer sollicitatievragen
135
Sollicitatievragen voor Ai Software Engineer gedeeld door sollicitantenMeest gestelde sollicitatievragen
4 16 64 256 solve using for loop.
3 antwoorden
How you approach developing a language model with small amounts of data
1 antwoorden↳
Start with a basic model, e.g Naïve Bayes as a baseline, choose to either increase model complexity or use pretrained models and fine tune them. For additional performance boosting create synthetic data via paraphrasing. Minder

there were unable to articulate anything intelligent on even average level c++, nothing about boost or even stl, nothing on algorithms, nothing on software engineering and definitely nothing on ai, ml, cv or even qt
1 antwoorden↳
i answered their questions, being very humble, was trying to help and and help my country. apparently this was not been taken well, did not get the job. these are spoiled rats (generals kids, etc). also, i noticed no female engineers (just one in hr), no brown, no black, nobody over 30, nobody even with a light accent (naturalized citizens) there. furniture (this was an on site interview) was super expensive, clearly this is an initial investment by and for potentates... i wish this was different! well, it is what it is Minder

Backtracking, Linear Regression, Bias vs Variance.
1 antwoorden↳
I could not complete the backtracking question properly.
Write a program to print the sum of all even numbers upto 100 but should not be divisible by 8, Output: (2+4+6+10+12+14+16+20+....)
1 antwoorden↳
Write a program to print the series 1,4,3,8,5,12,...

A = [1,2,3,4] B = [3,4,5,6] get all elements of A that are not in B
1 antwoorden↳
A = set(A) B = set(B) A-B

They asked me to go over my responses to their questions and explain why.
1 antwoorden↳
I answered them.

How to implement Virtual members from the compiler point of view.
1 antwoorden↳
Yes, if you know C it is rather easy. Array of pointers to the parent members, and each time a child modifies a function change the matching pointer in the array. Minder