"Passionate coder exploring the tech world ๐ป | Learning programming, solving problems, and building projects ๐| Sharing my journey to grow with the community"
Studied Gradient Boosting today ๐ค๐
Unlike Bagging, it builds trees sequentially โ each one correcting the errors of the last
Implemented both GradientBoostingRegressor and GradientBoostingClassifier in sklearn โ๏ธ
@ApnacollegeX@ShradhaKhapra_#MachineLearning#AI#DS#Coding
Back after a short break, explored pointers in C++ ๐ง
Learned about reference operators (&) and dereference operators (*)
Understanding how memory is accessed and modified directly.
Low-level concepts getting clearer โ๏ธ
@ApnacollegeX@ShradhaKhapra_#CPP#DSA#Coding
Kicked off DSA with C++ โ following @striver_79 ๐
Starting from the basics: syntax, loops, I/O. Excited to see where this goes ๐ช
#DSA#CPP#Coding#CodingJourney
Learned web scraping today โ BeautifulSoup + Requests ๐ธ๏ธ
Scraped real book titles & prices from the web with pure Python.
Data collection is the first step of every DS project ๐ท
@codewithharry#ML#AI#DataScience#Coding#CodingJourney#DS
Solved the "Coders of Bangalore" DS challenge by @codewithharry
Analyzed raw Instagram data โ max followers, max posts & more using pure Python, no pandas ๐
Hands-on logic building hits different ๐ก
#ML#AI#DataScience#Coding#CodingJourney
Just completed all CodeChef practice problems up to 500 difficulty rating ๐
Every problem taught me something new about logic building & problem solving ๐ก
Consistency >> everything ๐ฅ
#CodeChef#CompetitiveProgramming#ProblemSolving#DSA#Coding
Took a quick overview of DSA โ starting with Time Complexity ๐
O(1) < O(logn) < O(n) < O(nยฒ)
Small intro course for now, will go deeper from a dedicated source soon ๐ฅ
@Hiteshdotcom@ChaiCodeHQ#DSA#Coding#CodingJourney
Built a Customer Purchase Predictor on e-commerce data ๐
Learned RandomSearchCV & GridSearchCV โ 25,920 fits to find the best model ๐
Accuracy 87.2% | F1 67.4%
Hyperparameter tuning is not optional ๐ก
@ApnaCollegeX@ShradhaKhapra_#ML#AI#DataScience#Coding#CodingJourney
Built a Decision Tree classifier on the Titanic dataset ๐ข๐ณ
Pre & post pruning + hyperparameter tuning with ccp_alpha
Accuracy: 83.2% | Precision: 85.4%
Visualizing the tree hits different ๐
@ApnacollegeX@ShradhaKhapra_#ML#AI#DataScience#Coding#CodingJourney
Improved House Price Prediction Rยฒ from 77% to 80% ๐ ๐
Key lesson: removing outliers + fixing skewed data makes a real difference.
Clean data > complex models ๐ก
#ML#AI#DataScience#Coding#CodingJourney
Built a House Price Prediction system on a real dataset ๐
Raw model: Rยฒ 65% โ After log transform & feature engineering: Rยฒ 77%
EDA + feature engineering isn't optional โ it's everything ๐ก
#ML#AI#DataScience#Coding#CodingJourney
Built a Loan Approval System using Logistic Regression & Naive Bayes on a real dataset ๐ฆ
LR: Accuracy 87.5% | Precision: 78.1% NB: Accuracy 87.5% | Precision: 81%
First real-world ML project. Just getting started ๐ฅ
#ML#AI#DataScience#Coding#CodingJourney
Just coded Logistic Regression from scratch in Python โ no sklearn, pure numpy ๐งฎ
Sigmoid, Gradient Descent, weight updates โ built every piece manually.
#ML#AI#DataScience#Coding#CodingJourney
Just coded Linear Regression from scratch in Python โ no sklearn, pure math ๐งฎ
Gradient Descent, weight updates, bias โ built it all manually using numpy.
Understanding the math behind ML hits different ๐ฅ
#MachineLearning#Coding#DS#AI
Learned KNN today โ also explored hyperparameter tuning with GridSearchCV & Cross Validation ๐
Accuracy: 91.8% | Precision: 93.5% | Recall: 90.6% | F1: 92%
Best K = 7. Small tweak, big difference ๐ก
#KNN#ML#DataScience#CodingJourney#Coding
Learned Naive Bayes today & implemented GaussianNB on a real heart disease dataset ๐ซ
Accuracy: 86.8% | Precision: 0.9 | Recall: 84.3% | F1: 0.87
Simple probabilistic algorithm, surprisingly powerful results. Slowly falling in love with ML ๐ค
#ML#DataScience#Coding#AI