Akshay ๐Ÿš€ Profile picture
Jul 26, 2023 โ€ข 6 tweets โ€ข 3 min read โ€ข Read on X
Microsoft is offering FREE courses in following areas:

- AI
- IOT
- Data Science
- Machine Learning

A project-based pedagogy that allows you to learn while building! ๐Ÿš€

Read More ...๐Ÿ‘‡ Image
1๏ธโƒฃ AI for beginners

A 12-week, 24-lesson curriculum all about Artificial Intelligence.

You'll learn about:
- Neural Nets
- Deep Learning
- Knowledge representation
- Genetic Algorithms & multi-agent systems

Check this out ๐Ÿ‘‡
https://t.co/rZ3Jdw2Le8microsoft.github.io/AI-For-Beginneโ€ฆ
Image
2๏ธโƒฃ IOT

Learn about IOT by doing project that cover the journey of food from farm to table.

This includes farming, logistics, manufacturing, retail and consumer - all popular industry areas for IoT devices.

Check this out ๐Ÿ‘‡
https://t.co/o4GJM8gHzmmicrosoft.github.io/IoT-For-Beginnโ€ฆ
Image
3๏ธโƒฃ Machine Learning

A great course on classical machine learning, using Scikit-learn!

Check this out๐Ÿ‘‡ https://t.co/vpUIczCZ5Tmicrosoft.github.io/ML-For-Beginneโ€ฆ
4๏ธโƒฃ Data Science

This course covers Deep Learning & Data Science in more details!

Each lesson includes:
- hands-on assignments
- pre & post-lesson quizzes
- instructions to complete the lesson & solutions

Check this out๐Ÿ‘‡
https://t.co/YmOsSEWr7Cmicrosoft.github.io/Data-Science-Fโ€ฆ
Image
That's a wrap!

If you interested in:

- Python ๐Ÿ
- Machine Learning ๐Ÿค–
- Maths for ML ๐Ÿงฎ
- MLOps ๐Ÿ› 
- CV/NLP ๐Ÿ—ฃ
- LLMs ๐Ÿง 

Find me โ†’ @akshay_pachaar โœ”๏ธ

Subscribe to my Newsletterโ†’

Everyday, I share tutorials on above topics!

Cheers!mlspring.beehiiv.com/subscribe

โ€ข โ€ข โ€ข

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

Sep 12
10 MCP, AI Agents & LLM visual explainers:

(don't forget to bookmark ๐Ÿ”–)
1๏ธโƒฃ MCP

MCP is a standardized way for LLMs to access tools via a clientโ€“server architecture.

Think of it as a JSON schema with agreed-upon endpoints.

Anthropic said, "Hey, let's all use the same JSON format when connecting AI to tools" and everyone said "Sure."

Check this๐Ÿ‘‡
2๏ธโƒฃ MCP vs Function calling for LLMs

Before MCPs became popular, AI workflows relied on traditional Function Calling for tool access. Now, MCP is standardizing it for Agents/LLMs.

The visual covers how Function Calling & MCP work under the hood.

Check this out๐Ÿ‘‡
Read 12 tweets
Sep 11
I've put 100+ MCP apps into production!

There's one rule you can not miss if you want to do the same!

Here's the full breakdown (with code):
There are primarily 2 factors that determine how well an MCP app works:

- If the model is selecting the right tool?
- And if it's correctly preparing the tool call?

Today, let's learn how to evaluate any MCP workflow using @deepeval's MCP evaluations (open-source).

Let's go!
Here's the workflow:

- Integrate the MCP server with the LLM app.
- Send queries and log tool calls, tool outputs in DeepEval.
- Once done, run the eval to get insights on the MCP interactions.

Now let's dive into the code for this!
Read 13 tweets
Sep 9
6 GitHub repositories that will give you superpowers as an AI Engineer:
You can use these 6 open-source repos/tools for:

- building an enterprise-grade RAG solution
- build and deploy multi-agent workflows
- finetune 100+ LLMs
- and more...

Let's learn more about them one by one: Image
1๏ธโƒฃ Sim AI

A drag-and-drop UI to build AI agent workflows!

Sim AI is a lightweight, user-friendly platform that makes creating AI agent workflows accessible to everyone.

Supports all major LLMs, MCP servers, vectorDBs, etc.

100% open-source.

๐Ÿ”— github.com/simstudioai/sim
Read 10 tweets
Sep 7
8 key skills to become a full-stack AI Engineer:
Production-grade AI systems demand deep understanding of how LLMs are engineered, deployed, and optimized.

Here are the 8 pillars that define serious LLM development:

Let's dive in! ๐Ÿš€
1๏ธโƒฃ Prompt engineering

Prompt engineering is far from dead!

The key is to craft structured prompts that reduce ambiguity and result in deterministic outputs.

Treat it as engineering, not copywriting! โš™๏ธ

Here's something I published on JSON prompting:
Read 12 tweets
Sep 6
K-Means has two major problems:

- The number of clusters must be known
- It doesn't handle outliers

Hereโ€™s an algorithm that addresses both issues:
Introducing DBSCAN, a density-based clustering algorithm.

Simply put, DBSCAN groups together points in a dataset that are close to each other based on their spatial density.

It's very easy to understand, just follow along ...๐Ÿ‘‡ Image
DBSCAN has two important parameters.

1๏ธโƒฃ Epsilon (eps):

`eps`: represents the maximum distance between two points for them to be considered part of the same cluster.

Points within this distance of each other are considered to be neighbours.

Check this out ๐Ÿ‘‡ Image
Read 9 tweets
Sep 4
Let's build a reasoning LLM, from scratch (100% local):
Today, we're going to learn how to turn any model into a reasoning powerhouse.

We'll do so without any labeled data or human intervention, using Reinforcement Finetuning (GRPO)!

Tech stack:

- @UnslothAI for efficient fine-tuning
- @HuggingFace TRL to apply GRPO

Let's go! ๐Ÿš€
What is GRPO?

Group Relative Policy Optimization is a reinforcement learning method that fine-tunes LLMs for math and reasoning tasks using deterministic reward functions, eliminating the need for labeled data.

Here's a brief overview of GRPO before we jump into code:
Read 12 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!

:(