Machine Learning
40K subscribers
3.6K photos
28 videos
47 files
615 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
Discover an incredible LLM course designed to deepen your understanding of the transformer architecture and its role in building powerful Large Language Models (LLMs). This course breaks down complex concepts into easy-to-grasp modules, making it perfect for both beginners and advanced learners. Dive into the mechanics of attention mechanisms, encoding-decoding processes, and much more. Elevate your AI knowledge and stay ahead in the world of machine learning!

Enroll Free: https://www.deeplearning.ai/short-courses/how-transformer-llms-work/

#LLMCourse #Transformers #MachineLearning #AIeducation #DeepLearning #TechSkills #ArtificialIntelligence

https://xn--r1a.website/DataScienceM
👍5
This media is not supported in your browser
VIEW IN TELEGRAM
Last week we introduced how transformer LLMs work, this week we go deeper into one of its key elements—the attention mechanism, in a new #OpenSourceAI course, Attention in Transformers: Concepts and #Code in #PyTorch

Enroll Free: https://www.deeplearning.ai/short-courses/attention-in-transformers-concepts-and-code-in-pytorch/

#LLMCourse #Transformers #MachineLearning #AIeducation #DeepLearning #TechSkills #ArtificialIntelligence

https://xn--r1a.website/DataScienceM
4👍3
Machine Learning
Photo
# Learning rate scheduler for transformers
def lr_schedule(step, d_model=512, warmup_steps=4000):
arg1 = step ** -0.5
arg2 = step * (warmup_steps ** -1.5)
return (d_model ** -0.5) * min(step ** -0.5, step * warmup_steps ** -1.5)


---

### **📌 What's Next?
In **Part 5
, we'll cover:
➡️ Generative Models (GANs, VAEs)
➡️ Reinforcement Learning with PyTorch
➡️ Model Optimization & Deployment
➡️ PyTorch Lightning Best Practices

#PyTorch #DeepLearning #NLP #Transformers 🚀

Practice Exercises:
1. Implement a character-level language model with LSTM
2. Add attention visualization to a sentiment analysis model
3. Build a transformer from scratch for machine translation
4. Compare teacher forcing ratios in seq2seq training
5. Implement beam search for decoder inference

# Character-level LSTM starter
class CharLSTM(nn.Module):
def __init__(self, vocab_size, hidden_size, n_layers):
super().__init__()
self.embed = nn.Embedding(vocab_size, hidden_size)
self.lstm = nn.LSTM(hidden_size, hidden_size, n_layers, batch_first=True)
self.fc = nn.Linear(hidden_size, vocab_size)

def forward(self, x, hidden=None):
x = self.embed(x)
out, hidden = self.lstm(x, hidden)
return self.fc(out), hidden
🔥21
🌟 Vision Transformer (ViT) Tutorial – Part 1: From CNNs to Transformers – The Revolution in Computer Vision

Let's start: https://hackmd.io/@husseinsheikho/vit-1

#VisionTransformer #ViT #DeepLearning #ComputerVision #Transformers #AI #MachineLearning #NeuralNetworks #ImageClassification #AttentionIsAllYouNeed

✉️ Our Telegram channels: https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk

📱 Our WhatsApp channel: https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
3👍1
🌟 Vision Transformer (ViT) Tutorial – Part 3: Pretraining, Transfer Learning & Real-World Applications

Let's start: https://hackmd.io/@husseinsheikho/vit-3

#VisionTransformer #TransferLearning #HuggingFace #ImageNet #FineTuning #AI #DeepLearning #ComputerVision #Transformers #ModelZoo


✉️ Our Telegram channels: https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk
3
🌟 Vision Transformer (ViT) Tutorial – Part 5: Efficient Vision Transformers – MobileViT, TinyViT & Edge Deployment

Read lesson: https://hackmd.io/@husseinsheikho/vit-5

#MobileViT #TinyViT #EfficientViT #EdgeAI #ModelOptimization #ONNX #TensorRT #TorchServe #DeepLearning #ComputerVision #Transformers

✉️ Our Telegram channels: https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk

📱 Our WhatsApp channel: https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
Please open Telegram to view this post
VIEW IN TELEGRAM
2
🌟 Vision Transformer (ViT) Tutorial – Part 6: Vision Transformers in Production – MLOps, Monitoring & CI/CD

Learn more: https://hackmd.io/@husseinsheikho/vit-6

#MLOps #ModelMonitoring #CIforML #MLflow #WandB #Kubeflow #ProductionAI #DeepLearning #ComputerVision #Transformers #AIOps

✉️ Our Telegram channels: https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk

📱 Our WhatsApp channel: https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
Please open Telegram to view this post
VIEW IN TELEGRAM
1
🌟 Vision Transformer (ViT) Tutorial – Part 7: The Future of Vision Transformers – Multimodal, 3D, and Beyond

Learn: https://hackmd.io/@husseinsheikho/vit-7

#FutureOfViT #MultimodalAI #3DViT #TimeSformer #PaLME #MedicalAI #EmbodiedAI #RetNet #Mamba #NextGenAI #DeepLearning #ComputerVision #Transformers

✉️ Our Telegram channels: https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk

📱 Our WhatsApp channel: https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
Please open Telegram to view this post
VIEW IN TELEGRAM
2
🔥 Master Vision Transformers with 65+ MCQs! 🔥

Are you preparing for AI interviews or want to test your knowledge in Vision Transformers (ViT)?

🧠 Dive into 65+ curated Multiple Choice Questions covering the fundamentals, architecture, training, and applications of ViT — all with answers!

🌐 Explore Now: https://hackmd.io/@husseinsheikho/vit-mcq

🔹 Table of Contents
Basic Concepts (Q1–Q15)
Architecture & Components (Q16–Q30)
Attention & Transformers (Q31–Q45)
Training & Optimization (Q46–Q55)
Advanced & Real-World Applications (Q56–Q65)
Answer Key & Explanations

#VisionTransformer #ViT #DeepLearning #ComputerVision #Transformers #AI #MachineLearning #MCQ #InterviewPrep


✉️ Our Telegram channels: https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk

📱 Our WhatsApp channel: https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
7
AI for Healthcare: Fine-Tuning Google’s PaliGemma 2 for Brain Tumor Detection

📖 Table of Contents AI for Healthcare: Fine-Tuning Google’s PaliGemma 2 for Brain Tumor Detection Configuring Your Development Environment Setup and Imports Load the Brain Tumor Dataset Format Dataset to PaliGemma Format Display Train Image and Label COCO Format BBox to…...

🏷️ #FineTuning #ObjectDetection #PaliGemma2 #PEFT #QLoRA #Transformers #Tutorial #VisionLanguageModels
Image Processing with Gemini Pro

📖 Table of Contents Image Processing with Gemini Pro Getting Started with Gemini Pro: An Overview Gemini Pro Setup Integrating Google AI Python SDK with Gemini Pro Image Processing with Gemini Pro: Python Code Generation Comprehensive List of GenAI Models Compatible…...

🏷️ #ArtificialIntelligence #ChatGPT #DeepLearning #Gemini #GeminiPro #GenAI #GenerativeAI #GoogleCloud #ImageProcessing #Python #Transformers #Tutorial #VertexAI
2
🔥 Trending Repository: generative-ai-for-beginners

📝 Description: 21 Lessons, Get Started Building with Generative AI

🔗 Repository URL: https://github.com/microsoft/generative-ai-for-beginners

📖 Readme: https://github.com/microsoft/generative-ai-for-beginners#readme

📊 Statistics:
🌟 Stars: 95.7K stars
👀 Watchers: 827
🍴 Forks: 50.1K forks

💻 Programming Languages: Jupyter Notebook - Python - JavaScript - TypeScript - Shell - PowerShell

🏷️ Related Topics:
#ai #azure #transformers #openai #gpt #language_model #semantic_search #dall_e #prompt_engineering #llms #generative_ai #generativeai #chatgpt #microsoft_for_beginners


==================================
🧠 By: https://xn--r1a.website/DataScienceM
🔥 Trending Repository: transformerlab-app

📝 Description: Open Source Application for Advanced LLM + Diffusion Engineering: interact, train, fine-tune, and evaluate large language models on your own computer.

🔗 Repository URL: https://github.com/transformerlab/transformerlab-app

🌐 Website: https://transformerlab.ai/

📖 Readme: https://github.com/transformerlab/transformerlab-app#readme

📊 Statistics:
🌟 Stars: 3.9K stars
👀 Watchers: 31
🍴 Forks: 363 forks

💻 Programming Languages: TypeScript - JavaScript

🏷️ Related Topics:
#electron #transformers #llama #lora #diffusion #mlx #diffusion_models #llms #stability_diffusion #rlhf


==================================
🧠 By: https://xn--r1a.website/DataScienceM
📌 How Relevance Models Foreshadowed Transformers for NLP

🗂 Category: MACHINE LEARNING

🕒 Date: 2025-11-20 | ⏱️ Read time: 19 min read

The revolutionary attention mechanism at the heart of modern transformers and LLMs has a surprising history. This article traces its lineage back to "relevance models" from the field of information retrieval. It explores how these earlier models, designed to weigh the importance of terms, laid the conceptual groundwork for the attention mechanism that powers today's most advanced NLP. This historical perspective highlights how today's breakthroughs are built upon foundational concepts, reminding us that innovation often stands on the shoulders of giants.

#NLP #Transformers #LLM #AttentionMechanism #AIHistory
1🤩1
"Dive into Deep Learning" 📘🤖 is an open-source book that forms the mathematical foundation for large language models. 🧠📐

It covers linear algebra, mathematical analysis, probability theory, optimization methods, backpropagation, attention mechanisms, and transformer architectures. 🧮📉🔄

The book progressively moves from classical neural networks and convolutional neural networks to modern transformers and practical techniques used in large language models. 🚀🔗🧠

It contains over 1,000 pages 📖 and provides clear explanations, practical examples, and exercises. 📝 Making it one of the most comprehensive free resources for understanding the mathematical structure of modern artificial intelligence systems and language models. 🌐🔍🤖

arxiv.org/pdf/2106.11342 🔗

#DeepLearning #AI #MachineLearning #NeuralNetworks #Transformers #OpenSource
4