Machine Learning & AI Enthusiast | Python Developer

Joined August 2025
11 Photos and videos
20 Sep 2025
Check my New Video: Is Python better than others? youtu.be/1XNjnn6bi2Q?si=tWtd… via @YouTube

1
12
18 Sep 2025
Learning ML Algorithms Day-6 What are Neural Networks? Neural networks are computing systems inspired by biological neural networks. They consist interconnected nodes (neurons) organized in layers that can learn complex patterns in data through a process called backpropagation.
1
1
36
18 Sep 2025
Step 4: Update Weights Solver: adam Learning rate: 0.001 L2 regularization: 0.0001
1
1
10
18 Sep 2025
Follow to learning about AI/ML Stuff!! #ai #deeplearning #machinelearning #GenerativeAI
1
7
17 Sep 2025
Learning ML Algorithms Day-5 What is K-Means Clustering? K-Means is an unsupervised learning algorithm that groups data points into K clusters. It works by finding cluster centers (centroids) that minimize the within-cluster sum of squared distances.
1
1
9
17 Sep 2025
Implementation of KMeans using Sklearn:
1
1
8
17 Sep 2025
1
6
16 Sep 2025
Learning ML Algorithms Day-4 What are Decision Trees? Decision trees are intuitive machine learning models that make decisions by asking a series of questions.
1
1
16
16 Sep 2025
Regression- from sklearn import tree X = [[0, 0], [2, 2]] y = [0.5, 2.5] clf = tree.DecisionTreeRegressor() clf = clf.fit(X, y) clf.predict([[1, 1]])

1
1
12
16 Sep 2025
1
10