“Archie was so good that as just an intern, he'd review our app, understand the tech completely on his own in his very first week. If something didn't work, he used to diagnose any bugs, fix them, and then send the merge request, all by himself. His sense of ownership is as high as his technical skill. He will supercharge any tech team as a member.”
About
Currently, I'm pursuing my career as an SDE and AI Researcher. I share my learnings…
Activity
-
Today, we introduced our new o3 reasoning models, accompanied by some impressive benchmark performance results! 📈 The o3 model demonstrates…
Today, we introduced our new o3 reasoning models, accompanied by some impressive benchmark performance results! 📈 The o3 model demonstrates…
Liked by Archishman Sengupta
-
AGI is almost here, OpenAI's o3 high-compute model scored 87.5% (ARC-AGI) on the Semi-Private Eval. The key thing about this benchmark is that it is…
AGI is almost here, OpenAI's o3 high-compute model scored 87.5% (ARC-AGI) on the Semi-Private Eval. The key thing about this benchmark is that it is…
Shared by Archishman Sengupta
Experience
Education
-
University of Engineering & Management (UEM)
-
Rank 1: Dept Topper, Scholarship Holder
ICPC Regionalist
PS: "You don’t need college to learn stuff. Everything is available basically for free. You can learn anything you want for free. It is not a question of learning. I think colleges are basically for fun and to prove you can do your chores. But, they’re not for learning," ~ Elon Musk -
-
Top 0.1% in Computer Science(AISSE)
Licenses & Certifications
Volunteer Experience
-
Problem Setter & Ex-Events Lead
CodeChef
- 1 year 7 months
Education
CodeChef promotes constant learning and friendly programming competitions for its users, along with the support of its large community of problem curators. College Chapters are programming clubs targeted specifically towards competitive programming, which are guided and mentored by CodeChef. The idea behind forming College Chapters is to create a strong culture of competitive programming across all colleges and schools in India and exchange knowledge amongst themselves using the CodeChef…
CodeChef promotes constant learning and friendly programming competitions for its users, along with the support of its large community of problem curators. College Chapters are programming clubs targeted specifically towards competitive programming, which are guided and mentored by CodeChef. The idea behind forming College Chapters is to create a strong culture of competitive programming across all colleges and schools in India and exchange knowledge amongst themselves using the CodeChef platform.
I am currently the Events Lead at Codechef UEMK Chapter. I give inputs and ideas about events and workshops that are conducted inside the college campus or in online mode. I organize contests & workshops on Codechef for our college and others. I am also a part of the problem setter team. The motto is to promote competitive programming and be a better problem solver and logical thinker. -
Student Ambassador
AngelHack
- 5 months
Education
AngelHack is a global hackathon organization. AngelHack hosts an annual global hackathon competition where entrants compete to build and launch new software over the course of 36-hours. Hackathon events are hosted in several cities around the world and winning teams are chosen to receive acceptance into the AngelHack Hackcelerator program.
AngelHack also runs the HACKcelerator, a pre-accelerator program that provides mentorship to entrepreneurs and showcases companies to investors. Notable…AngelHack is a global hackathon organization. AngelHack hosts an annual global hackathon competition where entrants compete to build and launch new software over the course of 36-hours. Hackathon events are hosted in several cities around the world and winning teams are chosen to receive acceptance into the AngelHack Hackcelerator program.
AngelHack also runs the HACKcelerator, a pre-accelerator program that provides mentorship to entrepreneurs and showcases companies to investors. Notable AngelHack HACKcelerator teams include WeFunder and Microryza, both of which have been inducted to Y-Combinator.
AngelHack ignites the passion of developers, entrepreneurs, and innovators to build the future.
- Building tech and start-up communities.
- Strengthening local ecosystems and promoting innovation.
- Bringing together passionate and motivated individuals.
- Organizing and running a kick-ass hackathon -
Member
Developer Student Clubs - IIT Patna
- 5 months
Education
• Serves Google Developers Students Club IIT Patna as a member.(I am not from IIT Patna)
-
Internshala Student Partner
Internshala
- 3 months
Education
• I have been a part of Internshala Student Program since Nov '20.
• Successfully completed the tasks that were given to me
• Promoted Internshala to over 400+ students right from the 1st year so that they can be industry ready.
• I made students register for Internshala Training courses and Internshala Platform so that they can benefit from the program.
• Link: https://drive.google.com/file/d/1FbGqZRz8MQkhqLWpOFafDLN4y32QtIpX/view -
Member
Google Developers Group
- 10 months
Education
I am currently volunteering as a member at Google Developer Group, Kolkata chapter. I seek to use integrated management tools for the bigger picture which is awareness about Google products to the masses.
Courses
-
CS101.1x Programming Basics IIT Bombay
edX.org
-
CS50 Havard University: Introduction to Artificial Intelligence with Python
edX.org
-
MITx 6.00.1x Introduction to Computer Science and Programming Using Python
edx.org
Projects
-
Consistent-Hashing (Available on Go Packages)
-
A Thread-safe Go library for Distributed Load Balancing using consistent hashing with bounded loads
Go dev package: https://pkg.go.dev/github.com/ArchishmanSengupta/consistent-hashing
Github: https://github.com/ArchishmanSengupta/consistent-hashing -
In-Memory Cache (Available on Go Packages)
-
A simple, efficient, thread-safe <130 loc in-memory data store with expiration time.
Go dev package link: https://pkg.go.dev/github.com/archishmansengupta/cache
Github: https://github.com/ArchishmanSengupta/cache-store -
QLaMDA: txt2Que Generation Model
-
Quiz generation using NLP, Wordnet, sense2vec, t5 transformer, SQuAD 2.0, normalized levenshtein, sentence transformer, hugging face for pre-trained model, and Maximal Marginal Relevance with cosine similarity for distractor generation
https://github.com/ArchishmanSengupta/qlamdaOther creators -
DNN - Digit Neural Network
-
DNN is a neural network made from scratch using numpy, pandas, and matplotlib on top of the MNIST dataset with 85% accuracy. DNN consists of four main components: data preprocessing, parameter initialization, forward and backward propagation, and gradient descent optimization. The code begins by reading the MNIST dataset from a CSV file and shuffling the data. The dataset is then split into a development set (first 1000 examples) and a training set.
The network architecture is…DNN is a neural network made from scratch using numpy, pandas, and matplotlib on top of the MNIST dataset with 85% accuracy. DNN consists of four main components: data preprocessing, parameter initialization, forward and backward propagation, and gradient descent optimization. The code begins by reading the MNIST dataset from a CSV file and shuffling the data. The dataset is then split into a development set (first 1000 examples) and a training set.
The network architecture is initialized with parameters, including weights and biases, using the init_params function. The activation functions used in the hidden layer include Rectified Linear Unit (ReLU) and softmax for the output layer. Forward propagation computes the activations at each layer, while backward propagation calculates the gradients for updating the parameters during training.
The DNN is trained using the gradient descent optimization algorithm through the gradient_descent function. This function iteratively updates the parameters based on the computed gradients, and the training progress is printed every 10 iterations.
The code also includes utility functions for one-hot encoding, ReLU activation, and accuracy calculation. After training, the DNN's predictions on the training set are visualized using the test_prediction function, which displays a randomly selected image along with its predicted label and the true label.
In summary, this DNN implementation provides a foundational understanding of building and training neural networks for digit recognition tasks, offering insights into the fundamental concepts of forward and backward propagation, activation functions, and gradient descent optimization.
Honors & Awards
-
Winner(First Prize) Apptify -Ureckon 5.0
University of Engineering and Management
-
ICPC Gwalior Pune Regionals 2021
ICPC
ICPC Gwalior Pune Regionals 2020
AIR 123
Institutional
The ICPC formerly known as ACM-ICPC (Association for Computing Machinery - International Collegiate Programming Contest) is considered as the "Olympics of Programming Competitions". It is quite simply, the oldest, largest, and most prestigious programming contest in the world.
The ICPC is a multi-tier, team-based, programming competition. The contest participants come from over 2,000 universities that are spread across…ICPC Gwalior Pune Regionals 2020
AIR 123
Institutional
The ICPC formerly known as ACM-ICPC (Association for Computing Machinery - International Collegiate Programming Contest) is considered as the "Olympics of Programming Competitions". It is quite simply, the oldest, largest, and most prestigious programming contest in the world.
The ICPC is a multi-tier, team-based, programming competition. The contest participants come from over 2,000 universities that are spread across 80 countries and six continents. -
Top 9 in IEM Hackathon 1.0 '21, IEM
Institute of Engineering and Management, Kolkata
Top 9 teams in IEM Hackathon 1.0'21 organised by IEM kolkata for a E-Voting project using Blockchain Technolgy which includes .sol(Solidity) Ethereum, React framework , Google Map API,Firestore, Python,OpenCV, Raspberry Pi and ADHAAR API.
Github: https://github.com/rollexxx23/e-Voting -
9th Position in Hack-A-Nova '21 by DTU
Delhi Technological University
Came in 9th Position out of top 10 teams in Hack-A-Nova '21 by DTU for Project CropX : A platform where Farmers can buy and sell their fresh products in a radius of 1km-2km. Also the platform provides live data for growing crops using Google Earth Engine
Github Link: https://github.com/ArchishmanSengupta/CropX
Certificate: https://drive.google.com/file/d/1S_hVFmJ9uKhzHfpdIWUXuDL4iOGE1wS5/view?usp=sharing
Submisin Link: https://devfolio.co/submissions/cropx-f711 -
Hack-It-Out'21, IIT Patna Winner
Indian Institute of Technology, Patna
Won the first prize at Hack It Out - a hackathon hosted by Celesta, IIT Patna. We completed a flutter application which helps local businesses gain more recognition.
Github Link: https://github.com/xybercommander/Prarambh
Certificate: https://drive.google.com/file/d/1QuPahHYyP1UoiBrl-YKJAMuBJXMubvzK/view?usp=sharing
Test Scores
-
6th Semester
Score: Score: 9.82
Scored 9.82 SGPA in 6th semester with the following subjects(relevant):
Compiler Design: 10.0/10.0
Software Engineering: 10.0/10.0
Object Oriented Programming using JAVA: 10.0/10.0
Professional Elective - III : Data Analytics: 10.0/10.0
Signal & Systems: 10.0/10.0
Professional Elective - II : Soft Computing: 9.0/10.0 -
5th Semester
Score: Score: 9.25
Scored 9.25 SGPA in 5th Sem. Scores (Relevant):
Database Management Systems 10.0/10.0
Formal Language & Automata Theory 10.0/10.0
Computer Networks 9.0/10.0
Professional Elective - I : (Image Processing) 10.0/10.0 -
3rd Semester
Score: 9.75
Scored 9.75 SGPA in 3rd Semester with the following subjects(relevant):
Mathematics-III 10.0/10.0
Data Structure & Algorithm Laboratory 10.0/10.0
IT Workshop Practical 10.0/10.0
Data Structure & Algorithm 9.0/10.0
IT Workshop 9.0/10.0 -
Qualified SnackDown 2021 by Codechef
Score: Rank 9,822/36,341
SnackDown is India’s global programming event that invites coders from all over the world - everyone from middle/high school to colleges to working professionals from the industry, to make an attempt to take home the coveted crown of SnackDown champion.
Certi: https://www.codechef.com/certificates/public/56c6e17 -
Codechef Starters 13
Score: Global Rank 206
Global Rank 206 out of 21015 particiants
CodeChef Starters is the newest addition to the monthly contests dedicated to the Division 2 and Division 3 programmers on the platform. A 3-hour programming contest best suited for beginner-level programmers. -
Facebook HackerCup Round 1
Score: Rank: 5,032th
Cleared Facebook Hackercup 2021 Round 1 with a Global rank of 5,012th.
Hacker Cup is Facebook's annual open programming competition. Open to participants around the world, anyone can apply and improve problem-solving and algorithmic coding skills to advance through each year’s online rounds, win prizes, and have a chance to make it to the global finals and win the grand prize -
IIIT Sonepat Contest 101
Score: Rank 31
Scored 800 pts. Rank 31 in IIIT sonepat Contest 101 on Hackerearth.
IIIT Sonepat is one of the IIIT located at Sonepat, Haryana. The academic session of IIIT Sonepat started from its mentor Institute National Institute of Technology, Kurukshetra from year 2014. -
ICPC Gwalior Pune Regionals 2020
Score: AIR 123
Rank AIR 123(institutional)
The ICPC formerly known as ACM-ICPC (Association for Computing Machinery - International Collegiate Programming Contest) is considered as the "Olympics of Programming Competitions". It is quite simply, the oldest, largest, and most prestigious programming contest in the world.
The ICPC is a multi-tier, team-based, programming competition. The contest participants come from over 2,000 universities that are spread across 80 countries and six continents. -
Qualified Facebook HackerCup 2021
Score: Rank 8,584th/34,588
Qualified Facebook Hackercup 2021 with a Global rank of 8,584th out of 34,588 participants.
Hacker Cup is Facebook's annual open programming competition. Open to participants around the world, anyone can apply and improve problem-solving and algorithmic coding skills to advance through each year’s online rounds, win prizes, and have a chance to make it to the global finals and win the grand prize. -
Tech Gig Code Gladiators: Rank 20045 out of 3,16,000
Score: 20045/3,16,000
Code Gladiators Semi-Finalist. Code Gladiators is our annual coding competition to identify the top programmers in the world. It is one of the largest coding contests.
-
2nd Semester
Score: SGPA: 9.51
Scored 9.51 SGPA in 2nd Semester with the following subjects(relevant):
Mathematics and Statistics - II 10.0/10.0
Programming for Problem Solving 10.0/10.0
Programming for Problem Solving Laboratory 10.0/10.0
Physics Laboratory 10.0/10.0
Economics, Finance and Entrepreneurship Skills - II 10.0/10.0
English Communication and Public Speaking Skills - II 10.0/10.0 -
1st Semester
Score: SGPA: 9.55
Scored 9.55 SGPA in 1st Sem with the following subjects(relevant):
Mathematics and Statistics - I 9.0/10.0
Computer Programming and Problem Solving using Python and C - I 10.0/10.0
Chemistry 10.0/10.0
Economics, Finance and Entrepreneurship Skills - I 10.0/10.0
English Communication and Public Speaking Skills - I 10.0/10.0 -
AISSE
Score: 100/100
Subject -
Foundation of Information Technology(Top 1%) in CBSE Board Exam AISSE -
Facebook Hackercup Round 2
Score: Global Rank 2826th
Global Rank 2826th in Facebook Hackercup 2021.
Hacker Cup is Facebook's annual open programming competition. Open to participants around the world, anyone can apply and improve problem-solving and algorithmic coding skills to advance through each year’s online rounds, win prizes, and have a chance to make it to the global finals and win the grand prize -
SnackDown 2021 - Online Round 1A
Score: Rank 5827/22408
SnackDown is India’s global programming event that invites coders from all over the world - everyone from middle/high school to colleges to working professionals from the industry, to make an attempt to take home the coveted crown of SnackDown champion
Recommendations received
4 people have recommended Archishman
Join now to viewMore activity by Archishman
-
60% of the tables I have recently designed, do not have the standard auto-increment ID column. Although counter-intuitive, doing this has helped me…
60% of the tables I have recently designed, do not have the standard auto-increment ID column. Although counter-intuitive, doing this has helped me…
Liked by Archishman Sengupta
-
We're passionate about helping engineering teams build the best solutions. 🚀 We recently had the pleasure of hosting datacraft Paris, where Radu…
We're passionate about helping engineering teams build the best solutions. 🚀 We recently had the pleasure of hosting datacraft Paris, where Radu…
Liked by Archishman Sengupta
-
One of YC's largest consumer startups was paying an ad consultant 310k/yr to monitor competitor ad strategies Gemini + o1 completely replaced them…
One of YC's largest consumer startups was paying an ad consultant 310k/yr to monitor competitor ad strategies Gemini + o1 completely replaced them…
Liked by Archishman Sengupta
-
Rust has one of the best memory management & it does not need a garbage collector. - rust has a concept of ‘ownership’ and ‘borrow checker’. - these…
Rust has one of the best memory management & it does not need a garbage collector. - rust has a concept of ‘ownership’ and ‘borrow checker’. - these…
Shared by Archishman Sengupta
-
Last week I presented my startup, at the prestigious ABP-INFOCOM Kolkata 2024 event. Out of all the startups that participated in the event, we…
Last week I presented my startup, at the prestigious ABP-INFOCOM Kolkata 2024 event. Out of all the startups that participated in the event, we…
Liked by Archishman Sengupta
-
Can LLMs ever answer the questions accurately? Yes, as long as the relevant data points are provided. This might seem like an easy problem to…
Can LLMs ever answer the questions accurately? Yes, as long as the relevant data points are provided. This might seem like an easy problem to…
Liked by Archishman Sengupta
Other similar profiles
Explore collaborative articles
We’re unlocking community knowledge in a new way. Experts add insights directly into each article, started with the help of AI.
Explore More