🗂 Building our own mini-Skynet — a collection of 10 powerful AI repositories from big tech companies
1. Generative AI for Beginners and AI Agents for Beginners
Microsoft provides a detailed explanation of generative AI and agent architecture: from theory to practice.
2. LLMs from Scratch
Step-by-step assembly of your own GPT to understand how LLMs are structured "under the hood".
3. OpenAI Cookbook
An official set of examples for working with APIs, RAG systems, and integrating AI into production from OpenAI.
4. Segment Anything and Stable Diffusion
Classic tools for computer vision and image generation from Meta and the CompVis research team.
5. Python 100 Days and Python Data Science Handbook
A powerful resource for Python and data analysis.
6. LLM App Templates and ML for Beginners
Ready-made app templates with LLMs and a structured course on classic machine learning.
If you want to delve deeply into AI or start building your own projects — this is an excellent starting kit.
tags: #github #LLM #AI #ML
➡️ https://xn--r1a.website/CodeProgrammer
1. Generative AI for Beginners and AI Agents for Beginners
Microsoft provides a detailed explanation of generative AI and agent architecture: from theory to practice.
2. LLMs from Scratch
Step-by-step assembly of your own GPT to understand how LLMs are structured "under the hood".
3. OpenAI Cookbook
An official set of examples for working with APIs, RAG systems, and integrating AI into production from OpenAI.
4. Segment Anything and Stable Diffusion
Classic tools for computer vision and image generation from Meta and the CompVis research team.
5. Python 100 Days and Python Data Science Handbook
A powerful resource for Python and data analysis.
6. LLM App Templates and ML for Beginners
Ready-made app templates with LLMs and a structured course on classic machine learning.
If you want to delve deeply into AI or start building your own projects — this is an excellent starting kit.
tags: #github #LLM #AI #ML
Please open Telegram to view this post
VIEW IN TELEGRAM
❤15🔥3👍2
SVFR — a full-fledged framework for restoring faces in videos.
It can:
Essentially, the model takes old or damaged videos and makes them "as if they were shot yesterday". And it's free and open-source.
1. Create an environment
conda create -n svfr python=3.9 -y
conda activate svfr
2. Install PyTorch (for your CUDA)
pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2
3. Install dependencies
pip install -r requirements.txt
4. Download models
conda install git-lfs
git lfs install
git clone https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt models/stable-video-diffusion-img2vid-xt
5. Start processing videos
python infer.py \
--config config/infer.yaml \
--task_ids 0 \
--input_path input.mp4 \
--output_dir results/ \
--crop_face_region
Where task_ids:
*
0 — face enhancement*
1 — colorization*
2 — redrawing damageAn ideal tool if:
#python #soft #github
https://xn--r1a.website/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
❤10👍4
📰 Awesome Open Source AI 2026 — A comprehensive collection of current open-source AI projects 🤖
This repository consolidates significant resources in a single location, including frameworks, training tools, inference utilities, RAG solutions, agents, and more. The content is organized into distinct categories to facilitate efficient navigation and resource identification for specific tasks. 📂
Repo: https://github.com/alvinreal/awesome-opensource-ai
Tags: #github #useful✔️
This repository consolidates significant resources in a single location, including frameworks, training tools, inference utilities, RAG solutions, agents, and more. The content is organized into distinct categories to facilitate efficient navigation and resource identification for specific tasks. 📂
Repo: https://github.com/alvinreal/awesome-opensource-ai
Tags: #github #useful
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6
reader3 📚✨
When you want to connect an AI like Gemini to help you analyze books or content, copying text from a reader usually becomes a hassle. 😩💻
Especially if you want to discuss a book by chapters. Highlighting text manually and copying it disrupts the flow and feels like a waste of time. ⏳🚫
Yesterday, Andrzej Karpati, a well-known AI expert, released a new project to the public: reader3, which solves this problem very neatly. 🎉🛠️ It's a lightweight EPUB reader that allows you to read a book together with AI. 🤖📖
Its interface is as minimalist as possible: only the necessary reading and navigation functions. 📉🧭 You can also manage your library through folders. 📁✨
The key feature is that it breaks an EPUB into chapters and displays the content one chapter at a time. 🔓📄
This makes it easy to copy the needed part of the book and pass it to a large model for analysis or discussion. 📋🔄 It significantly improves the reading experience when paired with AI. 🚀🧠
And it's very easy to get started - just run two commands via uv. ⚡🛠️ As a result, it's an excellent tool for those who love reading and want to use AI as a companion for text analysis. 📚🤝🤖
📁 Language: #Python 61.0%
⭐️ Stars: 1.5k
➡️ Link to GitHub https://github.com/karpathy/reader3
#AI #Python #Reader3 #Tech #BookLovers #Github
https://xn--r1a.website/CodeProgrammer✅
When you want to connect an AI like Gemini to help you analyze books or content, copying text from a reader usually becomes a hassle. 😩💻
Especially if you want to discuss a book by chapters. Highlighting text manually and copying it disrupts the flow and feels like a waste of time. ⏳🚫
Yesterday, Andrzej Karpati, a well-known AI expert, released a new project to the public: reader3, which solves this problem very neatly. 🎉🛠️ It's a lightweight EPUB reader that allows you to read a book together with AI. 🤖📖
Its interface is as minimalist as possible: only the necessary reading and navigation functions. 📉🧭 You can also manage your library through folders. 📁✨
The key feature is that it breaks an EPUB into chapters and displays the content one chapter at a time. 🔓📄
This makes it easy to copy the needed part of the book and pass it to a large model for analysis or discussion. 📋🔄 It significantly improves the reading experience when paired with AI. 🚀🧠
And it's very easy to get started - just run two commands via uv. ⚡🛠️ As a result, it's an excellent tool for those who love reading and want to use AI as a companion for text analysis. 📚🤝🤖
📁 Language: #Python 61.0%
⭐️ Stars: 1.5k
➡️ Link to GitHub https://github.com/karpathy/reader3
#AI #Python #Reader3 #Tech #BookLovers #Github
https://xn--r1a.website/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
❤6👍4🔥2👎1🆒1
Found an easy way to learn math for ML: Mathematics for Machine Learning 🎓📚
This is a curated collection on GitHub, including books, research papers, video lectures, and basic materials on math for studying and reviewing the mathematical foundations of machine learning. 📖📊
It helps build a stronger knowledge base by bringing together trusted resources around topics that machine learning engineers constantly encounter: linear algebra, mathematical analysis, probability theory, statistics, information theory, matrix calculus, and deep learning mathematics. 🧮🤖
Free public repository on GitHub. 💻✨
https://github.com/dair-ai/Mathematics-for-ML
#MachineLearning #Mathematics #DataScience #Learning #GitHub #AI
✨ Join Best TG Channels
https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel
https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
This is a curated collection on GitHub, including books, research papers, video lectures, and basic materials on math for studying and reviewing the mathematical foundations of machine learning. 📖📊
It helps build a stronger knowledge base by bringing together trusted resources around topics that machine learning engineers constantly encounter: linear algebra, mathematical analysis, probability theory, statistics, information theory, matrix calculus, and deep learning mathematics. 🧮🤖
Free public repository on GitHub. 💻✨
https://github.com/dair-ai/Mathematics-for-ML
#MachineLearning #Mathematics #DataScience #Learning #GitHub #AI
✨ Join Best TG Channels
https://xn--r1a.website/addlist/0f6vfFbEMdAwODBk
⭐️ Join Our WhatsApp Channel
https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
GitHub
GitHub - dair-ai/Mathematics-for-ML: 🧮 A collection of resources to learn mathematics for machine learning
🧮 A collection of resources to learn mathematics for machine learning - dair-ai/Mathematics-for-ML
❤8👎1