Skip to main content

If a student is selected in both IIT as well as in ISI which one should be preferred


Introduction:

I think I am eligible to answer this question as I am a student of ISI Bangalore and have cracked IIT also successfully. So, I stood on that path. See, in this place, you have to choose your decision carefully. First, ask yourself the following questions:

  1. how much do you love mathematics?
  2. what is your long term goal? Being a researcher or being a top-notch industrialist?

These two questions are sorting questions. If you are not dedicated enough to mathematics, and love physics, programming, and other staff also more than or equal to mathematics, then you should go for IIT. Maybe you want to become a big industrialist, then you should go to IIT for sure. In IIT, you will be doing engineering and therefore will be exposed to a lot of subjects and will learn diverse things.

Now, let's say you are a math nerd, you solved a lot of RMO and INMO level problems, want to know a lot of mathematics in your life, boss, you are welcome to ISI.

Now, you are like me, you are not a math nerd, but you love mathematics and suck in chemistry at large. You do not like to mug up things, want to try something interesting. I will refer you to come to ISI.

Now maybe you are confused because all those points do not sum up to you. So let me clearly point out all the pros for each brand.

First for ISI:

Pros:
  1. learn mathematics and statistics from world level teachers and learn to the depth.
  2. the best place for geeks and nerds. You will find people of similar minds to discuss mathematics and transfer knowledge.
  3. zero tuition fee is a big pro actually. You will not have a big burden of loan on your back to force you trying to get a job after graduation.
  4. most of the students go to do a Ph.D. abroad after either b.math and m.math. Others, who opt for placement, get packages above 12 LPA. Obviously, you will have to put a lot of sweat behind every aspect mentioned, but, a 100% placement in either industry or academic Ph.D. is the unwritten rule of ISI.
  5. domain expert knowledge: after you get out of ISI, you will get the tag of a domain expert in mathematics and statistics. This may help you get into industries or different other things as domain experts.
IIT:
Pros:
  1. a vast culture of industry-oriented growth and the most popular brand name in both industries and academics from India. The name itself will get you to opportunities which you can't get any other way.
  2. entrepreneurship cells and business clubs are one of the biggest opportunities to grow yourself in multidimensionality.
  3. again the high brand value helps you to get through multiple fellowship and internship programs. Therefore, you can go to academics also in a better chance if you are in an IIT, although it will be harder than premiers like ISI, IISC, and CMI.
  4. again, an array of highly talented teachers will teach you the subjects at high levels.

Conclusions:

Cons are that most of the industry-oriented things are not in ISI while in IIT the environment is lot less academic than ISI. Also, most streams in IIT do not have above 80% placement. So, you, my friend now choose on the prescribed points and therefore act to your one of the most important decisions.

Comments

Popular posts from this blog

Mastering SQL for Data Science: Top SQL Interview Questions by Experience Level

Introduction: SQL (Structured Query Language) is a cornerstone of data manipulation and querying in data science. SQL technical rounds are designed to assess a candidate’s ability to work with databases, retrieve, and manipulate data efficiently. This guide provides a comprehensive list of SQL interview questions segmented by experience level—beginner, intermediate, and experienced. For each level, you'll find key questions designed to evaluate the candidate’s proficiency in SQL and their ability to solve data-related problems. The difficulty increases as the experience level rises, and the final section will guide you on how to prepare effectively for these rounds. Beginner (0-2 Years of Experience) At this stage, candidates are expected to know the basics of SQL, common commands, and elementary data manipulation. What is SQL? Explain its importance in data science. Hint: Think about querying, relational databases, and data manipulation. What is the difference between WHERE

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

Spacy errors and their solutions

 Introduction: There are a bunch of errors in spacy, which never makes sense until you get to the depth of it. In this post, we will analyze the attribute error E046 and why it occurs. (1) AttributeError: [E046] Can't retrieve unregistered extension attribute 'tag_name'. Did you forget to call the set_extension method? Let's first understand what the error means on superficial level. There is a tag_name extension in your code. i.e. from a doc object, probably you are calling doc._.tag_name. But spacy suggests to you that probably you forgot to call the set_extension method. So what to do from here? The problem in hand is that your extension is not created where it should have been created. Now in general this means that your pipeline is incorrect at some level.  So how should you solve it? Look into the pipeline of your spacy language object. Chances are that the pipeline component which creates the extension is not included in the pipeline. To check the pipe eleme