Upload Button Icon Add office photos

Filter interviews by

Adagrad AI Computer Vision Engineer Interview Questions, Process, and Tips

Updated 18 Aug 2023

Top Adagrad AI Computer Vision Engineer Interview Questions and Answers

View all 6 questions

Adagrad AI Computer Vision Engineer Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Some OpenCV problems

Round 3 - Technical 

(2 Questions)

  • Q1. Why are activation functions used
  • Ans. 

    Activation functions are used to introduce non-linearity into neural networks, allowing them to learn complex patterns and relationships.

    • Activation functions help neural networks to learn complex patterns and relationships by introducing non-linearity.

    • They help in controlling the output of a neuron, ensuring that it falls within a desired range.

    • Common activation functions include ReLU, Sigmoid, Tanh, and Leaky ReLU.

    • Wit...

  • Answered by AI
  • Q2. What is learning rate
  • Ans. 

    Learning rate is a hyperparameter that controls how much we are adjusting the weights of our network with respect to the loss gradient.

    • Learning rate determines the size of the steps taken during optimization.

    • A high learning rate can cause the model to overshoot the optimal weights, while a low learning rate can result in slow convergence.

    • Common learning rate values are 0.1, 0.01, 0.001, etc.

    • Learning rate can be adjuste...

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. What is the difference between CNN and RNN
  • Ans. 

    CNN is used for image recognition while RNN is used for sequence data like text or speech.

    • CNN is Convolutional Neural Network, used for image recognition tasks.

    • RNN is Recurrent Neural Network, used for sequence data like text or speech.

    • CNN has convolutional layers for feature extraction, while RNN has recurrent connections for sequential data processing.

    • CNN is good at capturing spatial dependencies in data, while RNN i...

  • Answered by AI
  • Q2. Is Logloss function differentiable
  • Ans. 

    Yes, Logloss function is differentiable.

    • Logloss function is differentiable as it is a smooth and continuous function.

    • The derivative of Logloss function can be calculated using calculus.

    • Differentiability is important for optimization algorithms like gradient descent to converge smoothly.

    • Example: The derivative of Logloss function for binary classification is (predicted probability - actual label).

  • Answered by AI
  • Q3. Questions on YOLO models

Interview Preparation Tips

Interview preparation tips for other job seekers - Even if you are fresher. Expect very advanced experienced level questions to be asked

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Assignment 

Implement a model improvement using a C++ API of Pytorch.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Rotate an image in your choice of language
  • Ans. 

    To rotate an image in Python, use the Pillow library's rotate() method.

    • Import the Image module from the Pillow library

    • Open the image using the open() method

    • Use the rotate() method to rotate the image by the desired angle

    • Save the rotated image using the save() method

  • Answered by AI
  • Q2. A breadth first search problem
  • Ans. 

    Breadth first search problem

    • BFS is a graph traversal algorithm that visits all the vertices of a graph in breadth-first order

    • It uses a queue to keep track of the nodes to be visited next

    • BFS can be used to find the shortest path between two nodes in an unweighted graph

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Questions based on my past jobs, past experience and behaviour.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't leave any gaps in your knowledge, as far as you can see. Don't mention topics you're not in full control of.

Skills evaluated in this interview

Computer Vision Engineer Interview Questions Asked at Other Companies

Q1. Can you train model using MATLAB for image classifications?
Q2. How would you approach the problem of training a model to detect ... read more
asked in B Garage
Q3. 1. Draw the YOLO v4 complex Architecture. 2. Why is SIFT invarian ... read more
asked in Adagrad AI
Q4. Rotate an image in your choice of language
asked in Awiros
Q5. Write a Program to print a checker board pattern on an input imag ... read more

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Introduction for your reference
  • Q2. Introduction to the same
  • Q3. Introduction to the smoky

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction to the smoky and thanks for your

Interview Questionnaire 

1 Question

  • Q1. Training?

Interview Preparation Tips

Interview preparation tips for other job seekers - Best training in India. No doubt

I applied via Walk-in and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Main focous on java and selenium.if you have devops knowledge then good to have..
  • Q2. Framework design,oops concept, challange you face,roles and responsibilities,agile concept etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focous on core Java,do good practice to identify elements, analyse the things before you respond,be more practical,raise the concern once you stuck,try to find the solution from your end before you ask for Help,...

Interview Questionnaire 

1 Question

  • Q1. Design facebook
  • Ans. 

    Designing Facebook is a complex task involving various components and technologies.

    • Identify the core features of Facebook such as user profiles, news feed, messaging, and groups.

    • Choose appropriate technologies for each component such as PHP for backend, React for frontend, and MySQL for database.

    • Ensure scalability and performance by implementing caching, load balancing, and database sharding.

    • Implement security measures...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Database, logical reasoning

Skills evaluated in this interview

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of c, matrix multiplication, sql,he said to write group by query and swapping program without using third variable

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basics of the mentioned languages in the resume.

I applied via Campus Placement and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions Will be asked as per your CV

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with all the elements written in CV

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(4 Questions)

  • Q1. What is Polymorphism and it’s type?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were of the same class.

    • Polymorphism is achieved through method overriding and method overloading.

    • Method overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Method overloading is when a class has two or more methods with the ...

  • Answered by AI
  • Q2. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern where the dependencies of an object are injected into it rather than created within it.

    • It helps in achieving loose coupling between objects

    • It makes testing easier as dependencies can be mocked or stubbed

    • There are three types of Dependency Injection - Constructor Injection, Setter Injection, and Interface Injection

    • Example: In a web application, the database connection object can ...

  • Answered by AI
  • Q3. How Garbage Collection works in .Net?
  • Ans. 

    Garbage Collection in .Net automatically manages memory by freeing up unused objects.

    • Garbage Collector runs in the background and periodically checks for unused objects.

    • It frees up memory by deallocating objects that are no longer being used.

    • GC can be configured using different modes like Server, Workstation, Concurrent, etc.

    • GC can also be manually triggered using GC.Collect() method.

    • GC.SuppressFinalize() method can be...

  • Answered by AI
  • Q4. What is LINQ and some basic concept related it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy. Go through basic concepts of OOPs and SQL.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

The first round is an aptitude online test that had Basics of Computer Science, Mathematics, English and then finally one basic program to code and compile like Palindrome.

Round 2 - Group Discussion 

Three panellists were present and it was a face-face round, Panellist 1 and 2 takes the technical discussions like classes, inheritance, oops concept, basic syntax, and such. Panellist 3 talks more about your resume skills, hobbies and the company overview.

Interview Preparation Tips

Topics to prepare for TCS System Engineer interview:
  • Basic Promgramming Questions
  • Aptitiude
Interview preparation tips for other job seekers - Since this was my first job it was slightly challenging in several ways in terms of how to present yourself, confidence and such. But make sure to stay humble and agree to most of the requests made and stick to the resume.

Adagrad AI Interview FAQs

How many rounds are there in Adagrad AI Computer Vision Engineer interview?
Adagrad AI interview process usually has 4 rounds. The most common rounds in the Adagrad AI interview process are Resume Shortlist, One-on-one Round and Assignment.
How to prepare for Adagrad AI Computer Vision Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Adagrad AI. The most common topics and skills that interviewers at Adagrad AI expect are C++, Computer Vision, Data Analytics, Deep Learning and Image Processing.
What are the top questions asked in Adagrad AI Computer Vision Engineer interview?

Some of the top questions asked at the Adagrad AI Computer Vision Engineer interview -

  1. Rotate an image in your choice of langu...read more
  2. What is the difference between CNN and ...read more
  3. Why are activation functions u...read more

Tell us how to improve this page.

Adagrad AI Computer Vision Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Adagrad AI Computer Vision Engineer Salary
based on 6 salaries
₹6 L/yr - ₹14.8 L/yr
18% less than the average Computer Vision Engineer Salary in India
View more details

Adagrad AI Computer Vision Engineer Reviews and Ratings

based on 5 reviews

3.2/5

Rating in categories

3.2

Skill development

2.1

Work-life balance

2.8

Salary

3.1

Job security

2.8

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
Computer Vision Engineer
6 salaries
unlock blur

₹6 L/yr - ₹14.8 L/yr

Field Engineer
4 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Machine Learning Engineer
4 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Software Engineer
3 salaries
unlock blur

₹1.8 L/yr - ₹3.9 L/yr

Product Designer
3 salaries
unlock blur

₹5.6 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Adagrad AI with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview