UrbanPro
true
Vimalanathan Ayyanar Python trainer in Chennai

Vimalanathan Ayyanar

Tutor

Mogappair, Chennai, India - 600037.

2 Students

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Vimalanathan Ayyanar

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

Udacity Deep Learning Nanodegree MentorPython programmer for 3 years.
Machine Learning and Computer Vision practitioner for 3 years.
Strong Mathematical foundation. Worked with real time text and image data.
Done over 30+ projects in machine learning and web scraping.

Will be covering from scratch and go till real time face detection and object classification.
Modules covered: Selenium,Tensorflow, Scikit-learn, Pandas, NLTK, Skimage, OpenCV, BeautifulSoup.

Languages Spoken

English

Tamil

Education

Shiv Nadar University 2015

Bachelor of Technology (B.Tech.)

Address

Mogappair, Chennai, India - 600037

Verified Info

Phone Verified

Email Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

Python Training classes
2 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

3

Teaching Experience in detail in Python Training classes

Started coding in C and moved to Python for its elegance and powerful use cases. I have taught python programming and machine learning in college for 4 months. I believe in the learn by doing ideology. My opinion of knowledge is that if you can't explain it to a laymen then you don't know it yet and you'll get to know about this as you read my blog: pysnap.com. I took up machine learning as an elective and fallen in love with the field. Imagine instead of using programming to make computers solve problems, you use programming to make the computers to learn to solve problems. That notion has gotten me glued to the field and to pass on my knowledge to people with similar interest in turn improving my skills and perspective of the field. Of all my projects, my final semester project was a special one. It involved recognizing books you show the computer and fetching online reviews for the book and I cant wait to teach it to you.

Big Data Training
2 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Big Data Training

1

Reviews (1)

5 out of 5 1 review

Vimalanathan Ayyanar https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/1882235-small.jpg Mogappair
5.0051
Vimalanathan Ayyanar
A

Python Training

"He has a ton of experience in Python. He goes out of his way to ensure that the student understands stuff (gave assignments and even checked them). The tools and frameworks he uses are used in the industry and he doesn't follow a vague textbook approach. I would definitely recommend him for Python training. "

Have you attended any class with Vimalanathan? Write a Review

FAQs

1. Which classes do you teach?

I teach Big Data and Python Training Classes.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 3 years.

Answers by Vimalanathan (14)

Answered on 14/03/2017 Learn IT Courses/Programming Languages/Python

SVMs work with numerical data only - needs to be a vector input. But you can transform textual data into word vectors so that we can use SVM on textual data. Some of the methods are TFIDF, word2Vec, GloVe and FastText.
Answers 13 Comments
Dislike Bookmark

Answered on 19/04/2016 Learn IT Courses/Programming Languages/Python

How do I share global variables across modules?

Use the keyword "global"
Answers 1 Comments
Dislike Bookmark

Answered on 19/04/2016 Learn IT Courses/Programming Languages/Python

Why did changing list ‘y’ also change list ‘x’?

Please do elaborate your question... I assume you used an assignment operation y=x If that is the case then this does not mean that the list x gets copied into list y. What this means is that the variable y starts pointing to list x.. this means that both variables x and y point to the same list. That... ...more
Please do elaborate your question... I assume you used an assignment operation y=x If that is the case then this does not mean that the list x gets copied into list y. What this means is that the variable y starts pointing to list x.. this means that both variables x and y point to the same list. That is why when you change list y the change is also seen in x.
Answers 2 Comments
Dislike Bookmark

Answered on 16/04/2016 Learn IT Courses/Programming Languages/Python

What is “Monty Python’s Flying Circus”?

It is a UK based comedy drama series.! :p
Answers 2 Comments
Dislike Bookmark

Answered on 16/04/2016 Learn IT Courses/Programming Languages/Python

Yes, in fact python is one of the best languages to start. This is due to the fact that python is high level language with easy to read syntax which seems like pseudo code.
Answers 4 Comments
Dislike Bookmark

Teaches

Python Training classes
2 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Python Training classes

3

Teaching Experience in detail in Python Training classes

Started coding in C and moved to Python for its elegance and powerful use cases. I have taught python programming and machine learning in college for 4 months. I believe in the learn by doing ideology. My opinion of knowledge is that if you can't explain it to a laymen then you don't know it yet and you'll get to know about this as you read my blog: pysnap.com. I took up machine learning as an elective and fallen in love with the field. Imagine instead of using programming to make computers solve problems, you use programming to make the computers to learn to solve problems. That notion has gotten me glued to the field and to pass on my knowledge to people with similar interest in turn improving my skills and perspective of the field. Of all my projects, my final semester project was a special one. It involved recognizing books you show the computer and fetching online reviews for the book and I cant wait to teach it to you.

Big Data Training
2 Students

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Big Data Training

1

5 out of 5 1 review

Vimalanathan Ayyanar
A

Python Training

"He has a ton of experience in Python. He goes out of his way to ensure that the student understands stuff (gave assignments and even checked them). The tools and frameworks he uses are used in the industry and he doesn't follow a vague textbook approach. I would definitely recommend him for Python training. "

Have you attended any class with Vimalanathan? Write a Review

Answers by Vimalanathan Ayyanar (14)

Answered on 14/03/2017 Learn IT Courses/Programming Languages/Python

SVMs work with numerical data only - needs to be a vector input. But you can transform textual data into word vectors so that we can use SVM on textual data. Some of the methods are TFIDF, word2Vec, GloVe and FastText.
Answers 13 Comments
Dislike Bookmark

Answered on 19/04/2016 Learn IT Courses/Programming Languages/Python

How do I share global variables across modules?

Use the keyword "global"
Answers 1 Comments
Dislike Bookmark

Answered on 19/04/2016 Learn IT Courses/Programming Languages/Python

Why did changing list ‘y’ also change list ‘x’?

Please do elaborate your question... I assume you used an assignment operation y=x If that is the case then this does not mean that the list x gets copied into list y. What this means is that the variable y starts pointing to list x.. this means that both variables x and y point to the same list. That... ...more
Please do elaborate your question... I assume you used an assignment operation y=x If that is the case then this does not mean that the list x gets copied into list y. What this means is that the variable y starts pointing to list x.. this means that both variables x and y point to the same list. That is why when you change list y the change is also seen in x.
Answers 2 Comments
Dislike Bookmark

Answered on 16/04/2016 Learn IT Courses/Programming Languages/Python

What is “Monty Python’s Flying Circus”?

It is a UK based comedy drama series.! :p
Answers 2 Comments
Dislike Bookmark

Answered on 16/04/2016 Learn IT Courses/Programming Languages/Python

Yes, in fact python is one of the best languages to start. This is due to the fact that python is high level language with easy to read syntax which seems like pseudo code.
Answers 4 Comments
Dislike Bookmark

Contact

Load More

Vimalanathan Ayyanar describes himself as Tutor. He conducts classes in Big Data and Python Training. Vimalanathan is located in Mogappair, Chennai. Vimalanathan takes at students Home and Regular Classes- at his Home. He has 3 years of teaching experience . Vimalanathan has completed Bachelor of Technology (B.Tech.) from Shiv Nadar University in 2015. He is well versed in English and Tamil. Vimalanathan has got 1 reviews till now with 100% positive feedback.

X

Share this Profile

Recommended Profiles

Btree Systems

Btree Systems photo Thiruvanmiyur, Chennai

Rajaram T.

Rajaram T. photo Doddakannelli, Bangalore

Harinath Krishnamoorthy

Harinath Krishnamoorthy photo Anna Nagar Western Extn, Chennai

SAI BHAVYA TECHNOLOGIES

SAI BHAVYA TECHNOLOGIES photo Kphb Colony, Hyderabad

Bharath Preetham

Bharath Preetham photo Egatoor, Chennai

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

Certified

The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.

Different batches available for this Course

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more