runtimevibes's profile picture. Web Dev โš™๏ธ | Exploring AI/ML ๐Ÿ‘จโ€๐Ÿ’ป
Writing clean code for messy problems .

Terminal Dev

@runtimevibes

Web Dev โš™๏ธ | Exploring AI/ML ๐Ÿ‘จโ€๐Ÿ’ป Writing clean code for messy problems .

๐Ÿ” Took a closer look at the Sigmoid function today: โœจ Key insights: When z โ†’ +โˆž, sigmoid โ†’ 1 When z โ†’ -โˆž, sigmoid โ†’ 0 At z = 0, sigmoid = 0.5 (the decision boundary) #MachineLearning #LogisticRegression #BuildInPublic


๐Ÿ“Š Just built a Linear Regression model from scratch in Python! โœ… Predicted admission chances based on exam scores ๐ŸŽ“ โœ… Implemented gradient descent + cost function visualization Great to see math โ†’ code โ†’ real insights ๐Ÿ”ฅ #MachineLearning #Python #BuildInPublic

runtimevibes's tweet image. ๐Ÿ“Š Just built a Linear Regression model from scratch in Python!
โœ… Predicted admission chances based on exam scores ๐ŸŽ“
โœ… Implemented gradient descent + cost function visualization
Great to see math โ†’ code โ†’ real insights ๐Ÿ”ฅ
#MachineLearning #Python #BuildInPublic
runtimevibes's tweet image. ๐Ÿ“Š Just built a Linear Regression model from scratch in Python!
โœ… Predicted admission chances based on exam scores ๐ŸŽ“
โœ… Implemented gradient descent + cost function visualization
Great to see math โ†’ code โ†’ real insights ๐Ÿ”ฅ
#MachineLearning #Python #BuildInPublic

๐Ÿ“Š Today I learned about the problem of Overfitting in ML. 1) Underfit (High Bias): Model too simple, misses patterns 2) Overfit (High Variance): Model too complex, memorizes noise 3) Just Right: Good balance โ†’ best generalization ๐Ÿš€ #MachineLearning #100DaysOfML


๐Ÿ“š Today I explored Logistic Regression โ€” from hypothesis function to the log loss function. Loved seeing how it shifts from squared error to cross-entropy for better optimization ! #MachineLearning #LogisticRegression #DataScience #100DaysOfML


๐Ÿ“˜ Just learned about Classification in Machine Learning ๐Ÿš€ Unlike regression (predicting continuous values), classification helps us categorize data โ€” e.g., ๐Ÿ”น Email โ†’ Spam or Not Spam ๐Ÿ”น Image โ†’ Cat ๐Ÿฑ or Dog ๐Ÿถ Lets connect ! #MachineLearning #DataScience #BuildInPublic

runtimevibes's tweet image. ๐Ÿ“˜ Just learned about Classification in Machine Learning ๐Ÿš€

Unlike regression (predicting continuous values), classification helps us categorize data โ€” e.g.,
๐Ÿ”น Email โ†’ Spam or Not Spam
๐Ÿ”น Image โ†’ Cat ๐Ÿฑ or Dog ๐Ÿถ

Lets connect !

#MachineLearning #DataScience #BuildInPublic

๐Ÿ“Š Today I explored Polynomial Regression 1) Extends linear regression by adding polynomial features (xยฒ, xยณ โ€ฆ) 2) Helps capture non-linear relationships in data ๐Ÿ”„ Another tool unlocked in the ML journey ๐Ÿš€ #MachineLearning #BuildInPublic #100DaysOfCode


๐Ÿ“Š Today I dived into Linear Regression with multiple features ๐Ÿš€ 1) Learned how to handle multiple inputs using vectors 2) Explored how gradient descent reduces the loss step by step Feels amazing to see the math ! #MachineLearning #BuildInPublic #100DaysOfCode


๐Ÿ“ˆ Just wrapped up Linear Regression โ€“ my first ML algorithm โœ… Learned how models fit data, calculate loss & optimize with gradient descent ๐Ÿš€ Super pumped to learn new and exciting things from here ! ๐Ÿ’ก #MachineLearning #BuildInPublic #100DaysOfCode


What are the best resources / courses to get started with ML (hands-on + theory)? Would love your recommendations ๐Ÿ™Œ


๐Ÿ“Š Just wrapped up exploring Pandas โ€“ and applied it to the Titanic dataset for cleaning & preprocessing! ๐Ÿšขโœจ Crazy how powerful Pandas is for data wrangling ๐Ÿคฏ Next stop โž deeper EDA & ML models ๐Ÿš€ #Pandas #Python #DataScience #MachineLearning #100DaysOfCode #AI


โœ… Wrapped up my NumPy deep dive today โ€“ covered arrays, slicing, broadcasting & even some linear algebra! ๐Ÿ’ป๐Ÿ”ฅ Always open to tips/resources to go deeper ๐Ÿ™Œ Letโ€™s keep pushing forward together ๐Ÿ’ก


๐Ÿ’ป Just brushed up my Python & now diving into NumPy โ€“ super excited to explore arrays, vectorization & all the ML magic ๐Ÿ”ฅ Any tips on how I can move more efficiently would be super helpful ๐Ÿ™Œ Letโ€™s connect & grow together ๐Ÿš€ #Python #NumPy #MachineLearning #AI #DataScience


๐Ÿ”ฅ Just read about Adam Optimization โ€” combines the best of Momentum + RMSProp ๐Ÿคฏ Super excited to brush up my Python ๐Ÿ and dive into ML algorithms soon! ๐Ÿš€ Letโ€™s gooo ๐Ÿ’ชโœจ #AI #ML #DeepLearning #Python


Just learned how to implement momentum based gradient descent ๐Ÿš€. #MachineLearning #AI #DeepLearning

runtimevibes's tweet image. Just learned how to implement momentum based gradient descent ๐Ÿš€.

#MachineLearning #AI #DeepLearning

Just learned about Stochastic Gradient Descent (SGD) ๐Ÿคฏ Itโ€™s crazy how instead of calculating gradients on the entire dataset, it updates weights using just one (or few) samples at a time! ๐Ÿ”ฅ โšก Faster, Handles huge datasets #AI #ML #DeepLearning


Wrapped up Eigenvalues & Eigenvectors today ๐Ÿ”ฅ Feels wild to finally understand how they power so many ML concepts. Almost at the end of my Linear Algebra journey โ€” letโ€™s go! ๐Ÿš€ #MathForML #MachineLearning #LinearAlgebra #BuildInPublic #LearnInPublic #AI #MLCommunity


Studied matrix dot product today andโ€ฆ wow ๐Ÿคฏ Linear algebra isnโ€™t just theory โ€” itโ€™s geometry in disguise. Anyone else find this stuff as mind-blowing as I do? #MathForML #LinearAlgebra #MachineLearning #AI #BuildInPublic #LearnInPublic #MLCommunity


Quick question for folks into #AI and #MachineLearning #tech ๐Ÿง Iโ€™ve started learning math (linear algebra, etc.) for ML, but Iโ€™m still trying to see how it actually connects to real algorithms. Is math really that essential for building models? Curious to hear your thoughts!


Hey folks! ๐Ÿ‘‹ Anyone here into AI / ML / Math for ML? Would love to connect, share resources, and learn together ๐Ÿค Letโ€™s build in public and help each other grow ๐Ÿš€ #AI #MachineLearning #MLCommunity #AICommunity #MathForML #BuildInPublic #100DaysOfML #100DaysOfCode


Got deep into #MathForML today ๐Ÿง  ๐Ÿ”ธ Linear transformations (2D & 3D) ๐Ÿ”ธ Determinants So curious to โ€œseeโ€ how math powers AI. #BuildInPublic #MachineLearning #AI #100DaysOfCode #MLJourney #SoftwareEngineering #LearnInPublic


United States Trends

Loading...

Something went wrong.


Something went wrong.