Machine Learning
40.5K subscribers
3.62K photos
29 videos
47 files
658 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
The first bot in the world of Telegram that offers free coupons, free certificates, and job opportunities based on AI https://telegram.me/UdemySybot
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
Get a job or employment opportunity by using our smart bot that connects the right person to the right job.

After using the bot, click the Find Job button.

@UdemySybot
โค3
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
Boost me and we both win! Sign up on Kimi and we each get a guaranteed benefit โ€” up to 1-Year Membership Credits: https://kimi-bot.com/activities/viral-referral/share?scenario=invite&from=share_poster&invitation_code=PJMK9U
โค1
Follow the Ai Tools Daily channel on WhatsApp:
https://whatsapp.com/channel/0029VbChm8XAojYoblmIW60h
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
16 GB RAM. No cloud subscription. Which local AI model actually fits?

How AI Helps built a free Telegram model picker. Choose your task, RAM or VRAM, language, runtime, and commercial-use requirement.

Then compare a shortlist by memory, license, sources, download options, and launch commands when available.

Join How AI Helps and open the pinned model-picker guide
๐Ÿ‘5โค4
๐Ÿ“š Mathematics without fluff: Three free books for those who want a solid foundation

Three free mathematics books by Allen Hatcher ๐Ÿงฎ

If you're looking for a solid foundation in topology, K-theory, and number theory, Allen Hatcher has an excellent free collection. ๐ŸŽ“

1. Algebraic Topology ๐Ÿ“
A classic textbook on algebraic topology. The book was published by Cambridge University Press, but the online version is available for free under an agreement with the publisher. The website offers the complete PDF, chapters individually, corrections, and additional exercises.
๐Ÿ”— https://pi.math.cornell.edu/~hatcher/AT/AT.pdf

Additionally: Spectral Sequences - a separate, expanded chapter for this book.
๐Ÿ”— https://pi.math.cornell.edu/~hatcher/AT/ATch5.pdf

2. Vector Bundles & K-Theory ๐Ÿงถ
A concise book about vector bundles, topological K-theory, and characteristic classes. Currently, approximately 120 pages are available online, covering the basics of vector bundles, a portion of K-theory, Bott periodicity, characteristic classes, and the stable J-homomorphism.
๐Ÿ”— https://pi.math.cornell.edu/~hatcher/VBKT/VB.pdf

3. Topology of Numbers ๐Ÿ”ข
An unusual introduction to number theory through geometry and pictures. It focuses heavily on quadratic forms, Farey diagrams, continued fractions, Pell's equation, quadratic reciprocity, and Conway's topograph. A PDF of approximately 350 pages is available for free.
๐Ÿ”— https://pi.math.cornell.edu/~hatcher/TN/TNbook.pdf

#Mathematics #Topology #FreeBooks #Learning #STEM #Education

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

โญ๏ธ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
โค5
๐Ÿš€ Stop Maintaining Scrapers. Start Shipping Products.

Build AI products, not scraping infrastructure.

CoreClaw provides ready-to-use Workers & APIs for 1000+ websites โ€” including Google Maps, Instagram, Facebook, YouTube, Amazon, Tiktok and Google Search Scraper.

โœ”๏ธ No infrastructure
โœ”๏ธ No proxy management
โœ”๏ธ No scraper maintenance
โœ”๏ธ JSON / CSV / REST API

๐ŸŽ Create a free account. Get free credits. Explore every Worker.

๐Ÿ‘‰ https://coreclaw.com
โค3
Here's a Python tool for accurately extracting text from PDFs and images into Markdown and JSON. ๐Ÿ“„โœจ

It supports tables, formulas, multiple OCR engines (Marker, Surya-OCR, Tesseract) and has built-in personal data removal. ๐Ÿ”’๐Ÿค–

https://github.com/CatchTheTornado/pdf-extract-api

#PDF #OCR #Python #Markdown #DataExtraction #TechTools

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

โญ๏ธ Join Our WhatsApp Channel https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
โค2