Akshay 🚀 Profile picture
Jul 17 13 tweets 7 min read Read on X
10 GitHub repos that will set you up for a career in AI engineering (100% free):
1️⃣ ML for Beginners by Microsoft

A 12-week project-based curriculum that teaches classical ML using real-world datasets using Scikit-learn.

Includes quizzes, R/Python lessons, and hands-on projects. Some of the lessons are available as short-form videos.

Check this👇 Image
2️⃣ AI for Beginners by Microsoft

This repo covers neural networks, NLP, CV, transformers, ethics & more. There are hands-on labs in PyTorch & TensorFlow using jupyter notebooks.

Beginner-friendly, project-based, and full of real-world applications.

Check this 👇 Image
3️⃣ Neural Networks: Zero to Hero

Now that you’ve grasped the foundations of AI/ML, it’s time to dive deeper.

This repo by Andrej Karpathy is a hands-on course that builds modern deep learning systems from scratch, including GPTs.

Check this 👇 Image
4️⃣ DL Paper Implementations

So far, you have learned the fundamentals of AI, ML, and DL. Now study how the best architectures work.

This repo covers well-documented PyTorch implementations of 60+ research papers on Transformers, GANs, Diffusion models, etc.

Check this👇 Image
5️⃣ Made With ML

You’ve covered ML and neural nets. Now it’s time to learn how to go from notebooks to production.

Made With ML teaches you how to design, develop, deploy, and iterate on real-world ML systems using MLOps, CI/CD, and best practices.

Check this 👇 Image
6️⃣ Hands-on LLMs

- You've built neural nets.
- You've explored GPTs.
- You've studied LLMs from the inside.

Now it’s time to apply them. This is a visually rich repo that will teach you everything about LLMs like tokenization, fine-tuning, RAG, etc.

Check this👇 Image
7️⃣ Advanced RAG Techniques

Hands-on LLMs will give you a good grasp of RAG systems. Now learn advanced RAG techniques.

This repo covers 30+ methods to make RAG systems faster, smarter, and more accurate, like HyDE, GraphRAG, Vision RAG, etc.

Check this 👇 Image
8️⃣ AI Agents for Beginners by Microsoft

After diving into LLMs and mastering RAG, learn how to build AI agents.

This is a hands-on course that teaches you how to build autonomous AI agents using real frameworks like Semantic Kernel, AutoGen, and MCP.

Check this👇 Image
9️⃣ Agents Towards Production

The above beginner course taught you what AI agents are. Now it's time to learn how to ship them.

This is a practical playbook for building GenAI agents covering memory, orchestration, deployment, security & more.

Check this 👇 Image
🔟 AI Engineering Hub

To truly master LLMs, RAG, and AI agents, you need projects.

AI Engineering Hub covers 70+ real-world examples, tutorials, and agent applications you can actually build, adapt, and ship.

Check this 👇 Image
Links:

- ML for Beginners: github.com/microsoft/ML-F…
- AI for Beginners: github.com/microsoft/AI-F…
- NN Zero to Hero: github.com/karpathy/nn-ze…
- Paper implementations: github.com/labmlai
- Made with ML: github.com/GokuMohandas/M…
- Hands-on LLMs: github.com/HandsOnLLM
- Advanced RAG techniques: github.com/NirDiamant
- Agents for Beginners: github.com/microsoft/ai-a…
- Agents towards production: github.com/NirDiamant
- AI Engg. Hub: github.com/patchy631/ai-e…

Note: This roadmap moves toward LLMs, NLP, and AI agents after Made With ML, but don’t overlook CV and RL. They're equally powerful paths for AI engineers to explore.Image
If you found it insightful, reshare with your network.

Find me → @akshay_pachaar ✔️
For more insights and tutorials on LLMs, AI Agents, and Machine Learning!

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Akshay 🚀

Akshay 🚀 Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @akshay_pachaar

Jul 16
Let's build a multi-agent content creation system (100% local):
Before we dive in, here's a quick demo of what we're building!

Tech stack:

- @motiadev as the unified backend framework
- @firecrawl_dev to scrape web content
- @ollama to locally serve Deepseek-R1 LLM

The only AI framework you'll ever need to learn! 🚀
Here's the workflow:

- User submits URL to scrape
- Firecrawl scrapes content and converts it to markdown
- Twitter and LinkedIn agents run in parallel to generate content
- Generated content gets scheduled via Typefully

Now, let's dive into code!
Read 14 tweets
Jul 14
ML researchers just built a new ensemble technique.

It even outperforms XGBoost, CatBoost, and LightGBM.

Here's a complete breakdown (explained visually):
For years, gradient boosting has been the go-to for tabular learning.

TabM is a parameter-efficient ensemble that provides:
- The speed of an MLP.
- The accuracy of GBDT.

The visual below explains how it works.

Let's dive in!
In tabular ML:

- MLPs are simple and fast, but usually underperform on tabular data.
- Deep ensembles are accurate but bloated and slow.
- Transformers are powerful but rarely practical on tables.

The image below depicts an MLP ensemble, and it looks heavily parameterized👇
Read 8 tweets
Jul 12
A Crash Course on Building AI Agents!

Here's what it covers:

- What is an AI agent
- Connecting agents to tools
- Overview of MCP
- Replacing tools with MCP servers
- Setting up observability and tracing

All with 100% open-source tools!
This course builds agents based on the following definition:

An AI agent uses an LLM as its brain, has memory to retain context, and can take real-world actions through tools, like browsing web, running code, etc.

In short, it thinks, remembers, and acts.
100% open-source tech stack:

- @crewAIInc for building MCP ready agents
- @zep_ai Graphiti to add human like memory
- @Cometml Opik for observability and tracing.

You can find the entire code here: github.com/patchy631/ai-e…
Read 5 tweets
Jul 11
MCP is on fire.

AI agents can now talk to real world tools, apps and actually get stuff done.

This changes everything.

Here are 10 amazing examples:
1️⃣ WhatsApp MCP

Exchange images, videos, and voice notes on WhatsApp!

Pair it with the ElevenLabs MCP server for AI-powered transcription & audio messages with 3,000+ voices.

Check this out👇
2️⃣ MCP-powered Agentic RAG

I created this server for Cursor and lets it perform deep web searches, as well as RAG over a specified directory.

Everything from the comforts of your IDE:
Read 12 tweets
Jul 10
90% of Python programmers don't know these 11 ways to declare type hints:
Type hints are incredibly valuable for improving code quality and maintainability.

Today, I'll walk you through 11 must-know principles to declare type hints in just two minutes.

Let's begin! 🚀 Image
1️⃣ Type hints for standard Python objects:

The most basic (and must-know) way to declare type hints for standard Python objects is as follows👇 Image
Read 15 tweets
Jul 7
Temperature in LLMs, clearly explained (with code):
Let's prompt OpenAI GPT-3.5 with a low temperature value twice.

It produces identical responses from the LLM.

Check the response below👇 Image
Now, let's prompt it with a high temperature value.

This time, it produces a gibberish output. Check the output below👇

What is going on here? Let's dive in! Image
Read 9 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(