Data Minds
544 subscribers
41 photos
3 videos
81 links
All things data - analytics, AI, ML, and real projects.
Learn • Build • Solve • Grow
Download Telegram
C. K-Nearest Neighbors (KNN)

It’s a model used for classification
👉 It predicts based on similarity


Simple Idea:
👉 “Show me your neighbors… I’ll tell you who you are”

Example:
👉 New email looks like spam emails → Spam 📩
👉 New email looks like normal emails → Not Spam


How it Works:
👉 Pick a number K
👉 Find the closest K data points
👉 Majority vote decides the class


Output:
👉 Class chosen by nearest neighbors

Key Insight:
👉 Distance matters (closer = more important)

When to Use It:
👉 Small datasets
👉 Pattern recognition
👉 When similar data behaves the same


💡 Real Tip
KNN = simple but powerful
👉 But gets slow when data is big



Want to go deeper?
👉 https://scikit-learn.org/stable/modules/neighbors.html


Follow Data Minds @DataMinds16 for more

#DataMinds #MachineLearning #KNN #Python #AI
🔥1
D. Support Vector Machine (SVM)

It’s a model used for classification
👉 It separates classes with the best possible boundary


Simple Idea:
👉 “Not just any line… the BEST line”

Example:
👉 Spam vs Not Spam

Many lines can separate them…
👉 SVM chooses the one with the maximum gap


How it Works:
👉 Finds a boundary (hyperplane)
👉 Maximizes the distance between classes
👉 The closest points define the boundary
(They’re called support vectors)


Output:
👉 Which side of the boundary the data falls on


Key Insight:
👉 SVM doesn’t care about all points…
👉 It only cares about the most important ones
(the ones near the boundary)


When to Use It:
👉 Clear or almost clear separation
👉 High-dimensional data
👉 Medium-sized datasets

💡 Real Tip
SVM is powerful… but:
👉 Can be slow on large datasets
👉 Needs good parameter tuning



Want to go deeper?
👉 https://scikit-learn.org/stable/modules/svm.html


Follow Data Minds @DataMinds16 for more

#DataMinds #MachineLearning #SVM #Python #AI
2
Data Minds
D. Support Vector Machine (SVM) It’s a model used for classification 👉 It separates classes with the best possible boundary Simple Idea: 👉 “Not just any line… the BEST line” Example: 👉 Spam vs Not Spam Many lines can separate them… 👉 SVM chooses the one…
Back when I was doing my first ML project (Credit Card Fraud Detection), I tried SVM on a 1.3M row dataset 😭

It ran for more than 3 hours… and I finally had to interrupt it 😂

That was the moment I learned: SVM is powerful… but not always friendly with big data
5
#Opportunity_Alerts

🚀 Want to step into AI but don’t know where to start? 👀
Skill Lab is hosting an Artificial Intelligence for Starters training 🔥

April 20–22, 2026
5:00 PM – 7:00 PM
Online (Zoom)

Perfect for beginners who want to learn how AI works and apply it in real-world scenarios
Plus → you get a certificate
Deadline: April 19 (4:00 PM)

🔗 Apply now:
https://lnkd.in/ggA_AEft

📢 Don’t miss it, and share with someone who needs this

Follow Data Minds @DataMinds16 for more
1🙏1
#Opportunity_Alerts 📣

🚀 Opportunity from Information Network Security Administration (INSA)

🎓 Are you a graduating student or about to finish your studies?
This is something you shouldn’t miss 👀

INSA is inviting eligible students to apply for upcoming opportunities

Who can apply?
🔹 Final-year / graduating students
🔹 Interested in tech, security & national development
🔹 📍 Only for: Jimma, Arba Minch & ASTU university students


📝 Area of Interest options:
• Ethical Hacking / Penetration Testing
• Software/System Development
• Front-End Development (UI/UX)
• Artificial Intelligence (AI) & Emerging Technologies
• Machine Learning (ML)

🔗 Apply here:
https://forms.gle/hE6PkPMrdCp7kpQYA

Apply as soon as possible!
📢 Credit: Telegram @TechHaila (https://t.me/TechHaila/529)

Share with friends who qualify, don’t gatekeep


@DataMinds16
🔥2
😳😁
😁8😭4
E. Decision Tree

It’s a model used for classification
👉 It makes decisions step by step (like a flowchart)

Simple Idea:
👉 “Ask questions until you get the answer”


How it Works:
👉 Splits data using questions
👉 Each split = better separation
👉 Ends with a final decision (leaf)

Output:
👉 Final category after a series of decisions

Key Insight:
👉 Good questions = good predictions
👉 The model learns which questions matter most

Why It’s Powerful:
👉 Easy to understand
👉 Works with numbers + text
👉 No heavy math needed


When to Use It:
👉 When you want interpretability
👉 Simple to medium problems
👉 Quick baseline model


💡 Real Tip
Decision Trees can overfit
👉 They may memorize data if not controlled

Want to go deeper?
👉 https://scikit-learn.org/stable/modules/tree.html


Follow Data Minds @DataMinds16 for more

#DataMinds #MachineLearning #DecisionTree #Python #AI
Data Minds
overfit
Overfitting vs Underfitting

Every ML model faces this problem 👇

1. Underfitting

👉 Model is too simple
It doesn’t learn enough from the data

Example:
👉 You draw a straight line for complex data
Result: bad predictions

2. Overfitting

👉 Model is too complex
It memorizes the data instead of learning

Example:
👉 Model fits every single point perfectly
Result: fails on new data


The Goal

👉 Find the balance
Not too simple
Not too complex

Simple Way to Remember:
👉 Underfitting = didn’t learn
👉 Overfitting = memorized
👉 Good model = understands



Real Tip

👉 Train error low + Test error high = Overfitting
👉 Both errors high = Underfitting


Fix It

👉 Underfitting:
• Use a more complex model
• Add more features

👉 Overfitting:
• Use simpler model
• Regularization
• More data

Follow Data Minds @DataMinds16 for more

#DataMinds #MachineLearning #AI #DataScience #Python
🤝31👌1
F. Random Forest

It’s a model used for classification
👉 It combines many Decision Trees to make better decisions

Simple Idea:
👉 “One tree can be wrong… a group is smarter” like Amharic proverb(ድር ቢያብር አንበሳ ያስር😉)


Example:

👉 100 emails predict:
• 70 say Spam
• 30 say Not Spam

👉 Final answer = Spam


What’s the Trick?
👉 Each tree sees a different part of the data
👉 So they don’t all make the same mistake


How it Works:
👉 Build many trees
👉 Each tree makes a prediction
👉 Final answer = majority vote


Key Insight :
👉 Decision Tree = can overfit
👉 Random Forest = reduces overfitting


Why It Works So Well
👉 Reduces noise
👉 More stable
👉 Better accuracy

When to Use It:
👉 When you want a strong, reliable model
👉 Tabular data (most real-world datasets)


💡Real Tip
If you don’t know what to try…
👉 Try Random Forest first


Follow Data Minds @DataMinds16 for more

#DataMinds #MachineLearning #RandomForest #Python #AI
👍1👏1👌1
🔥2🥰1😎1
2morrow we will Summarize Classification Algorithms
👍1
Good night Data Minds🥱
#Opportunity_Alerts 📣

🚀 Paid Internship Opportunity in Addis Ababa
Mohas Consult is looking for a MERL (Monitoring, Evaluation, Research & Learning) Intern

🎯 What you’ll do:
• Support data management & quality checks
• Assist in research & report writing
• Join field data collection

🎓 What you’ll gain:
• Work on real projects (MESMER, SAFEE, QIYAS)
• Learn professional data & project tracking
• Get real field experience

Who should apply?
• Interested in data, research & development
• Familiar with Excel, Canva, KoboToolbox/ODK
• Ready for field travel (based in Addis Ababa)

📩 Send your CV:
career.mohasconsult@gmail.com

Deadline: April 30, 2026

📢 If it’s not for you, share it with someone who needs it

Follow @DataMinds16 for more opportunities
4🔥1
Doing a Loan Risk Profiling Dashboard in Power BI for my Business Intelligence assignment…

and my PC is already fighting for its life 😭
😁1
Data cleaning with Python vs Power BI…

Python: clean, simple, one line… done 😎
Power BI: click… transform… wait… click again 😭

I love Python fr, it just understands me
😁2🤯1
Data Minds
ahh, Drag and Drop
Finished everything…

✔️ Data Cleaning
✔️ DAX
✔️ KPIs
✔️ Dashboard

Now stuck at the hardest part 😭

👉 Making it look PROFESSIONAL in Power BI
Anyone really good at Power BI? 👀

I’m building a fully interactive dashboard and I want it to look professional 🔥

Any tips on:
• Clean design & layout
• Making it more interactive
• What separates a basic dashboard from a pro one

Drop your advice 👇
አይዞን gunners😔😁
😁5
Forwarded from Bytephilosopher
The game is a game but Tikvah sport comment section is another level fr😂

@byte_philosopher
😁1🤣1