Skip to main content

Issues with current data science mentorship programs in India

Introduction:

I have been working with mentorbruh, a close impact mentorship program for quite sometime now, and had the opportunity to meet a lot and mentor a few data aspirants. Lots of them, come with a prior experiences with internship programs, coaching schools and other type of certification courses and what not. But most of them one thing common. 

"Their knowledge from these programs didn't make them employable."

Now when I say that, that sounds like I am exaggerating; and it can't be like that. But in this article, I am going to explain three types of programs, and also will in detail break down that why they don't work fully or partially.

Summary of article:

I am going to take a deep dive into the current famous programs running in india for data science coaching, and will thoroughly explain their flaws and reason of very small to no success rates.

The SMB coaching centers:

The lowest tier in data science mentorship is the small and medium businesses banking on data science coaching. These are 10-500 people sized and most of the times, are run by one main head personality with multiple teachers. Given the structure and low cap of income in such institutes; the quality is the first thing which takes a hit. There are obviously a few 0.1% exceptions; but most of these coaching institutes get 3 things wrong:

(1) the data science knowledge of the professors/mentors are not guaranteed here. Having a 25-30k bound salary in most cases, the professors in these coachings are people with limited exposure to the subject themselves. So the knowledge that goes to students is even less.

(2) There are just too many people in the classes most of the time. Generally coachings run a minimum of 20-30 people batches; with 1-1.5 hr long classes; where there is already a lot of "material" to teach on. This classroom structure is a complete no-go for subjects like data science; and given that there is almost no one to one timing in such system, there is absolutely no guarantee that the student understands the stuff.

(3) Lack of quality checks is the last nail in the coffin of these systems. The system in such a organization mostly involves a fixed number of courses, few assignments and then ends up with a certificate. The problem with this is that while assignments are mostly subject to copy paste and other obvious problems; there is no actual check that whether the students learn or not.

Most of the students whom I have interviewed, lacked basic theoretical understanding, as well as didn't know what they did and why they did. This proves the problem with these category of institutes.

Online project internships:

This is the second type of programs a lot of data aspirants go through. Online project internships, with the likes of the sparks foundation program, has more success rates than your typical coaching institutes. These programs, come with a fixed set of projects and a fees, and gathers a large number of participants in online communities and make them do the projects within a stipulated time. The good thing with this is that the participants are forced to do hands-on; and are often required to share the results in social media platform like linkedin; making their work a bit more valuable than totally unsupervised projects.

Then why am I criticizing this format? The criticism of this format comes again from the above para about coaching.

(1)  In a online project internship format, once again, there is little to no contact with actual mentor. The purpose of doing a good project for data aspirants is not writing some fancy codes and showing results, but getting a solid background for the projects so that next time they can do it on their own. The major part of this comes from the mentor for the project. And this is the exact part which is totally missed from the online project internship.

(2) There are, again, too many students doing the same thing. In data science industry, people are given value on two things: (1) in-depth skills and (2) creativity. The problem with this method is that projects suggested in the online internships are often very shallow, and gives little exposure to the subject in hand. And the fact that so many students do the same thing, guarantees the lack of individuality and uniqueness of the program.

(3) Finally there is a lack of checking the quality. Without effective exit exams, there is no guarantee on how much the student actually learns from the program. 

Most of the students coming out of these projects, are however a bit better than coaching center students, and people with high self-driving factors, even learn something from this. But as I analyzed, there is a lack of proper structure which doesn't ensure the quality of education in this process.

The costly online certification programs

Then there is the last category. Online certifications are not too shabby as the last two ones, but there are still a lot of holes in this ground as well which slips a lot of aspirants to lose both money and time.The main issues are:

(1) Many certificates are, in plain terms, worthless. If you are in-experienced and as beginners mostly are, they fall prey to these. After 6-8 months, and a few lakh rupees out of their pockets, they end up with a degree/certificate, which means nothing in the real interviews.

(2) Among the good certificates, a few are really really costly. What I mean by that is, there is already a lot of quality contents out there for free; which is enough to train a data aspirant upto medium level data scientists. The part which is not available are business acumen and industrial experience, which is anyway impossible to teach through a course. Hence if you are paying something around 3-6 lakh for a degree; well you are paying upto 10x more price for what you are getting.

(3) Other than a few good certificate and degree courses, like the ones from upgrad; most don't offer any credible placement offers as well. While placement offering is not a main thing in most coachings, it is often added as a part of the packages which the students buy when they sign up for the courses. But seldom these turn out to be that good.

Conclusion:

In conclusion, most of the current famous structured programs, are the ones to be taken with more than a pinch of salt. If you are in one of the above programs, chances are, unfortunately, you are not going to get much better at the end than the beginning if you don't try to learn on your own. There are a few good programs like Alpha ai or my own mentorbruh; where the hands-on is being focused, as well as students are subjected to present their work to a number of people to ensure the growth. The future of data science training is with p2p, closely mentored programs with full hands on projects. If you want to join such a program, Read about mentorbruh here; and you can contact me on shyambhu20@gmail.com for further discussion.

Thanks for reading! stay tuned and subscribe to my blog for getting awesome data science posts like this to your gmail feed every week.

Comments

Popular posts from this blog

Tinder bio generation with OpenAI GPT-3 API

Introduction: Recently I got access to OpenAI API beta. After a few simple experiments, I set on creating a simple test project. In this project, I will try to create good tinder bio for a specific person.  The abc of openai API playground: In the OpenAI API playground, you get a prompt, and then you can write instructions or specific text to trigger a response from the gpt-3 models. There are also a number of preset templates which loads a specific kind of prompt and let's you generate pre-prepared results. What are the models available? There are 4 models which are stable. These are: (1) curie (2) babbage (3) ada (4) da-vinci da-vinci is the strongest of them all and can perform all downstream tasks which other models can do. There are 2 other new models which openai introduced this year (2021) named da-vinci-instruct-beta and curie-instruct-beta. These instruction models are specifically built for taking in instructions. As OpenAI blog explains and also you will see in our

Can we write codes automatically with GPT-3?

 Introduction: OpenAI created and released the first versions of GPT-3 back in 2021 beginning. We wrote a few text generation articles that time and tested how to create tinder bio using GPT-3 . If you are interested to know more on what is GPT-3 or what is openai, how the server look, then read the tinder bio article. In this article, we will explore Code generation with OpenAI models.  It has been noted already in multiple blogs and exploration work, that GPT-3 can even solve leetcode problems. We will try to explore how good the OpenAI model can "code" and whether prompt tuning will improve or change those performances. Basic coding: We will try to see a few data structure coding performance by GPT-3. (a) Merge sort with python:  First with 200 words limit, it couldn't complete the Write sample code for merge sort in python.   def merge(arr, l, m, r):     n1 = m - l + 1     n2 = r- m       # create temp arrays     L = [0] * (n1)     R = [0] * (n

What is Bort?

 Introduction: Bort, is the new and more optimized version of BERT; which came out this october from amazon science. I came to know about it today while parsing amazon science's news on facebook about bort. So Bort is the newest addition to the long list of great LM models with extra-ordinary achievements.  Why is Bort important? Bort, is a model of 5.5% effective and 16% total size of the original BERT model; and is 20x faster than BERT, while being able to surpass the BERT model in 20 out of 23 tasks; to quote the abstract of the paper,  ' it obtains performance improvements of between 0 . 3% and 31%, absolute, with respect to BERT-large, on multiple public natural language understanding (NLU) benchmarks. ' So what made this achievement possible? The main idea behind creation of Bort is to go beyond the shallow depth of weight pruning, connection deletion or merely factoring the NN into different matrix factorizations and thus distilling it. While methods like knowle