Machine Learning
40.7K subscribers
3.64K photos
31 videos
47 files
671 links
Real Machine Learning — simple, practical, and built on experience.
Learn step by step with clear explanations and working code.

Admin: @HusseinSheikho || @Hussein_Sheikho
Download Telegram
Diving deep into Deep Learning, Reinforcement Learning, Machine Learning, Computer Vision, and NLP. 🤖🧠

Lectures: 🎓📚
https://github.com/kmario23/deep-learning-drizzle

#DeepLearning #MachineLearning #AI #ReinforcementLearning #ComputerVision #NLP

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
6
This repository contains a collection of the best resources on PyTorch: https://github.com/ritchieng/the-incredible-pytorch

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A

#PyTorch #AI #MachineLearning #DeepLearning #Coding #Resources
6
This media is not supported in your browser
VIEW IN TELEGRAM
Hugging Face Viewer is now at 2300 viewable models! 😊 Would love more feedback and ideas!

It's a free interactive graph visualizer for learning about the architectures of open source AI models! 🚀

Hovering nodes in the graph links to a definitions + animation and the paper that introduced it!

🌟 hfviewer.com

#HuggingFace #AI #MachineLearning #OpenSource #TechNews #DataViz

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
5
🔖 A large collection of lectures on Machine Learning and Deep Learning 🧠

We found a repository that brings together high-quality materials on several areas of artificial intelligence. 🤖

Excellent material for both learning and reviewing key topics. 📚

⛓️ Link to GitHub
https://github.com/kmario23/deep-learning-drizzle

#MachineLearning #DeepLearning #AI #Tech #Coding #Learning

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
5
Maths, CS & AI Compendium: A free textbook for aspiring AI/ML engineers

🚀 A large open-source compendium on mathematics, computer science, and AI has gone viral on GitHub. The project already has around 6.3K stars.

📚 The author positions it as a "non-traditional textbook" for practitioners: less dry notation, more intuition, connections between topics, and real-world context.

📖 It contains 20 chapters:
* Vectors, matrices, calculus
* Statistics and probability
* Machine learning and deep learning
* NLP, computer vision, audio/speech
* Multimodal learning and autonomous systems
* GNN, OS, algorithms
* Production engineering, GPU/SIMD
* AI inference, ML systems design, and applied AI

🤖 There is also a MCP server so that Claude Code, Cursor, VS Code, and other AI assistants can use the compendium as a local knowledge base.

💡 This is a great resource for those who want to not just "learn ML," but to build a solid foundation: mathematics → CS → ML systems → modern AI.

🔗 GitHub: https://github.com/HenryNdubuaku/maths-cs-ai-compendium

#AI #MachineLearning #ComputerScience #Maths #OpenSource #DevCommunity

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
6
This media is not supported in your browser
VIEW IN TELEGRAM
sequence of four inputs, carrying every hidden state forward yourself. 🔄

1. Given

Four inputs X1 to X4, recurrent weights and biases for hidden layers a, b, c, and an output layer y. 📊

2. Initialize

Let us set the hidden states a0, b0, c0 to zeros. Nothing has been read yet. 🛑

3. First hidden layer (a)

We build the transformation matrix by laying the input weights, the state weights and the biases side by side. We stack X1, the previous state a0, and an extra 1 underneath. Multiply the two, and a1 = [0, 1]. 🧮

4. Second hidden layer (b)

Let us do it again, one layer up. Now a1 is the input, and b0 is the previous state. Multiply: b1 = [1, -1]. ⬆️

5. Third hidden layer (c)

Once more. b1 is the input, c0 is the previous state, and c1 = [1, 1]. 🔁

6. Output layer (y)

Let us read the answer off the top of the stack. Weights and biases against [c1; 1], and Y1 = [3, 0, 3]. 📝

7. Carry the states forward

We copy a1, b1, c1 across. This is the whole trick of a recurrent network: the states are the only thing the next input gets to see. 🚀

8. Process X2

Repeat steps 3 to 6 for the second input: three hidden layers, then the output. Y2 = [5, 0, 4]. 🔢

9. Carry the states forward

Let us copy a2, b2, c2 across, exactly as before. 🔄

10. Process X3

Same four moves, third input. Y3 = [13, -1, 9]. 🧩

11. Carry the states forward

We copy a3, b3, c3 across, one last time. ⏭️

12. Process X4

Repeat once more. Y4 = [15, 7, 2].

You have just run a Deep RNN over a whole sequence by hand. ✍️

The outputs:
Y1: [3, 0, 3]
Y2: [5, 0, 4]
Y3: [13, -1, 9]
Y4: [15, 7, 2]

The takeaway: the hidden states are the memory, and they are the only memory there is. Everything the network learns from X1 has to fit in those little two-cell columns and get handed forward, one step at a time. 🧠

#RNN #DeepLearning #AI #MachineLearning #NeuralNetworks #Tech

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
5👍1💩1
I kept running into the same problem: some of the best AI/ML books are legally free. The authors put them up on their own sites, but the links are scattered across personal pages, university sites, and random GitHub repos nobody finds.

So I built a single index: Awesome Free AI Books. 30+ books across Deep Learning, Reinforcement Learning, Bayesian/Probabilistic ML, NLP & LLMs, Math for ML, Computer Vision, Generative Models, Causal Inference, GNNs, and AI Safety. Think Goodfellow’s Deep Learning, Sutton & Barto’s RL bible, Murphy’s Probabilistic ML, Bishop’s latest, Jurafsky & Martin’s SLP3 draft, and more.

Every link points straight to the author’s or publisher’s own page—no rehosted PDFs, no shady mirrors. A weekly GitHub Action checks all links so they don't rot over time. 🔄

It’s open source and open to contributions. If you know a legitimately free book that’s missing, PRs and issues are welcome. 🤝

Repo:
https://github.com/MarcosSete/awesome-free-ai-books

#AI #MachineLearning #DeepLearning #NLP #LLMs #OpenSource

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
4
Day 7 of self-studying Berkeley CS189 — stochastic gradient descent notes 📚📝

🔥 *Stochastic Gradient Descent (SGD)* is a powerful optimization algorithm used to minimize loss functions in machine learning. Unlike batch gradient descent, which uses the entire dataset to compute gradients, SGD updates parameters using a single training example (or a small mini-batch) at a time.

🚀 Key Benefits:
- Faster convergence on large datasets
- Escapes local minima more easily
- Suitable for online learning scenarios

📊 The Update Rule:
θ = θ - α * ∇J(θ; x⁽ⁱ⁾, y⁽ⁱ⁾)
Where α is the learning rate and (x⁽ⁱ⁾, y⁽ⁱ⁾) is a single training example.

📌 Challenges:
- High variance in updates
- Requires careful tuning of the learning rate

🧠 *Tip:* Use momentum or adaptive learning rates (like Adam) to stabilize training!

#MachineLearning #CS189 #SGD #DeepLearning #DataScience #Algorithms

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
5
This media is not supported in your browser
VIEW IN TELEGRAM
🔖 Learning Data Science through interactive examples

One of the most useful repositories for those who want to better understand machine learning.

It transforms complex concepts into visual experiments: you can study models, change parameters, and immediately see the results.

Link to GitHub
https://github.com/GeostatsGuy/DataScienceInteractivePython

#DataScience #MachineLearning #Python #Learning #Tech #GitHub

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
5
🔖 Over 300 real-world case studies of ML systems from top companies. 🤖

We found a repository that collects genuine ML engineering experience – not theory from textbooks, but real stories of implementing models in production. 📚

Inside, you'll find case studies from Uber, Netflix, Google, and other companies: how they built the architecture, what problems arose, where the systems failed, and what solutions helped them recover. 🏗️

Link to GitHub
https://github.com/Engineer1999/A-Curated-List-of-ML-System-Design-Case-Studies

#MachineLearning #MLCaseStudies #DataScience #Engineering #Uber #Netflix

Join Best TG Channels https://t.me/addlist/0f6vfFbEMdAwODBk

⭐️ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
2