Akshay ๐Ÿš€ Profile picture
Jul 26 โ€ข 6 tweets โ€ข 3 min read Twitter logo Read on Twitter
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

Jul 25
Better prompts lead to better responses from LLMs!

But how do you decide which prompt is betterโ“๐Ÿค”

Let me show you how it's done: Image
So, how prompt selection is done ?

An LLM is tested on a certain test dataset using different prompt templates & the performance is evaluated.

The challenge with real world data is that it can be noisy.

Check this out๐Ÿ‘‡ Image
Today, there are various ways to prompt LLMs.

Here are a few standard techniques:

- Few Shot prompting
- Instruction prompting
- Templatized prompting
- Chain of thoughts prompting

Images below provide example for each ๐Ÿ‘‡


Image
Image
Image
Image
Read 8 tweets
Jul 24
Two of the fundamental evaluation metrics in machine learning are:

- Precision
- Recall

But, their formal definitions can be a bit confusing.

In next 2 minutes I'll help you clearly understand them!

Let's go!๐Ÿš€ Image
Let's say there are 10 people in a Town.

2 of them have committed a crime, so in reality:

- 8 are innocent
- 2 are guilty

This is how it looks ๐Ÿ‘‡ Image
Now, we hire a detective to catch the guilty parties!

The detective accuses 3 people of being guilty, while 7 are deemed innocent.

Out of the 3 accused, only 1 is actually guilty.

Out of the 7 predicted innocent, 1 is guilty in reality.

This is how the scenario looks so far๐Ÿ‘‡ Image
Read 8 tweets
Jul 16
Harvard university is offering FREE world class education in Data Science!

Courses cover:
- Python
- Data Visualization
- Probability
- Statistics
- Machine Learning
- Data Science: Capstone

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

Read more!๐Ÿ‘‡ Image
1๏ธโƒฃ CS50p: Python

If you are new to programming and just getting started.

There isn't a better place to learn Python than @davidjmalan 's CS50p.

Beautiful explanations and great projects.
It's a complete package.

Check this out ๐Ÿ‘‡
edx.org/course/cs50s-iโ€ฆ
2๏ธโƒฃ Data Visualization

Learn basic data visualization principles and how to apply them using ggplot2.

Check this out๐Ÿ‘‡
edx.org/course/data-scโ€ฆ
Read 8 tweets
Jul 15
LLMs have taken the world by storm, and attention is everywhere!

It's about time we understand how things work!

Today, I'll clearly explain the self-attention mechanism!

Let's go! ๐Ÿš€ Image
Computer are good with numberโ—๏ธ

In NLP we convert the sequence of words into token & then token to embeddings.

You can think of embedding as a meaningful representation of each token using a bunch of numbers.

Check this out ๐Ÿ‘‡ Image
Now, for a language model to perform at a human level, it's not sufficient for it to process these tokens independently.

It's also important to understand the relationship between them!

Check this ๐Ÿ‘‡ Image
Read 9 tweets
Jul 14
Decorators are one of the most powerful feature of Python! ๐Ÿ”ฅ

However, understanding them can be a bit overwhelming!

Today, I'll clearly explain how decorators work!

Let's go! ๐Ÿš€ Image
Before we jump onto decorator, we must understand that functions in python are "first-class" objects!

It means that a function can be:

- passed around as an argument
- used in expressions
- returned as values of other functions

Just like integers or string!

Check this out๐Ÿ‘‡ Image
To get the essence of Decorators, let's imagine it's your friend's birthday, you're giving them a gift.

But before you do, you wrap it in a fancy gift paper to enhance its look, right?

Decorators do the same thing but with functions. โœจ

Let's see how ... ๐Ÿ‘‡
Read 8 tweets
Jul 10
Embeddings are the building blocks of powerful LLMs we see today!

Let me break things down to first principles & also show you how to harness power of embeddings!

Let's go! ๐Ÿš€
So, what are embeddingsโ“๐Ÿค”

Vector embeddings are a way to represent data (image, text, audio) as a series of numbers.

Think of it like turning words into a special kind of code that computers can understand and work with more easily.

Check this ๐Ÿ‘‡
Why embeddings are so powerful:

- They capture meaning
- They reveal relationships
- Allow similarity search
- Save space

The image below is a great example of how meaning & relationship is captured in form of vectors/embeddings ๐Ÿ‘‡
Read 6 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 on Twitter!

:(