Latest videos

Generative AI
3,460,661 Views · 4 years ago

This is my solution to costFunction.m function in Programming assignment 2 from the famous Machine Learning course by Andrew Ng.

Github: https://github.com/AladdinPerz....on/Courses/tree/mast

Generative AI
2,487,737 Views · 4 years ago

In this video we do the math for forward propagation in generalized notation!

Generative AI
2,221,411 Views · 4 years ago

Comparison of several examples using the the same prompt for generation.

Timestamps:
0:00 - Intro
0:49 - Prompt 1
2:30 - Prompt 2
3:47 - Prompt 3
4:39 - Prompt 4
5:32 - Prompt 5
6:24 - Prompt 6
7:34 - Prompt 7
9:32 - Other comparisons
12:23 - Winner

Generative AI
2,473,360 Views · 4 years ago

Implementation in Python of the weighted interval scheduling problem in Python using dynamic programming. I try to keep the code as clean as possible and hopefully it's crystal clear for you guys!

Code repository:

https://github.com/AladdinPerz....on/Algorithms-Collec


Explanation of algorithm: https://youtu.be/iIX1YvbLbvc

Generative AI
2,937,829 Views · 4 years ago

With all the juicy drama this week I hope you brought popcorn 🍿

Generative AI
2,065,443 Views · 4 years ago

In this video I walk through a general text generator based on a character level RNN coded with an LSTM in Pytorch in the application of generating new baby names.

People often ask what courses are great for getting into ML/DL and the two I started with is ML and DL specialization both by Andrew Ng. Below you'll find both affiliate and non-affiliate links if you want to check it out. The pricing for you is the same but a small commission goes back to the channel if you buy it through the affiliate link.
ML Course (affiliate): https://bit.ly/3qq20Sx
DL Specialization (affiliate): https://bit.ly/30npNrw
ML Course (no affiliate): https://bit.ly/3t8JqA9
DL Specialization (no affiliate): https://bit.ly/3t8JqA9

GitHub Repository:
https://github.com/aladdinpers....son/Machine-Learning

✅ Equipment I use and recommend:
https://www.amazon.com/shop/aladdinpersson

❤️ Become a Channel Member:
https://www.youtube.com/channe....l/UCkzW5JSFwvKRjXABI

✅ One-Time Donations:
Paypal: https://bit.ly/3buoRYH
Ethereum: 0xc84008f43d2E0bC01d925CC35915CdE92c2e99dc

▶️ You Can Connect with me on:
Twitter - https://twitter.com/aladdinpersson
LinkedIn - https://www.linkedin.com/in/al....addin-persson-a95384
GitHub - https://github.com/aladdinpersson

PyTorch Playlist:
https://www.youtube.com/playli....st?list=PLhhyoLH6Ijf

Generative AI
2,120,785 Views · 4 years ago

In this video we go through how to implement a dynamic algorithm for solving the sequence alignment or edit distance problem. This is also referred to as the Needleman Wunsch algorithm, it seems as if this algorithm has quite many names :)

Code repository:

https://github.com/AladdinPerz....on/Algorithms-Collec

I recommend watching the explanation video before watching this implementation:

https://youtu.be/bQ7kRW6zo9Y

Generative AI
2,172,792 Views · 4 years ago

In this video we look at the datasets that are available to us through TensorFlow Datasets (tfds) and how we load them and then doing preprocessing, shuffling, batching, prefetching etc. For the example we load an image dataset (mnist) and a text dataset (imdb) and create simple models to do image classification and sentiment analysis.

New packages/imports we used in the video:
https://anaconda.org/conda-forge/matplotlib (pip install matplotlib)
https://anaconda.org/anaconda/tensorflow-datasets (pip install tensorflow_datasets)

I learned a lot and was inspired to make these TensorFlow videos by the TensorFlow Specialization on Coursera. Below you'll find both affiliate and non-affiliate links, the pricing for you is the same but a small commission goes back to the channel if you buy it through the affiliate link.
affiliate: https://bit.ly/3t3tgI5
non-affiliate: https://bit.ly/3kZgN5B

GitHub Repository:
https://github.com/aladdinpers....son/Machine-Learning

✅ Equipment I use and recommend:
https://www.amazon.com/shop/aladdinpersson

❤️ Become a Channel Member:
https://www.youtube.com/channe....l/UCkzW5JSFwvKRjXABI

✅ One-Time Donations:
Paypal: https://bit.ly/3buoRYH
Ethereum: 0xc84008f43d2E0bC01d925CC35915CdE92c2e99dc

▶️ You Can Connect with me on:
Twitter - https://twitter.com/aladdinpersson
LinkedIn - https://www.linkedin.com/in/al....addin-persson-a95384
GitHub - https://github.com/aladdinpersson

TensorFlow Playlist:
https://www.youtube.com/playli....st?list=PLhhyoLH6Ijf

OUTLINE:
0:00 - Introduction
0:16 - Keras vs TFDS vs tf.data
1:54 - Imports
2:38 - Image Loading with TFDS
12:59 - Text loading with TFDS
28:15 - Results and Ending

Generative AI
3,803,854 Views · 4 years ago

This is my solution to predict.m function in Programming assignment 3 from the famous Machine Learning course by Andrew Ng.

Github: https://github.com/AladdinPerz....on/Courses/tree/mast

Generative AI
2,448,731 Views · 4 years ago

Explanation step by step of how the sequence alignment algorithms problem works. Other common names of this algorithm is the Needleman Wunsch algorithm. In the next video we will code this algorithm from scratch using Python. On Leetcode this algorithm can be found under "Edit Distance", it seems this algorithm has many different names!

Code Repository:

https://github.com/AladdinPerz....on/Algorithms-Collec

Generative AI
2,772,532 Views · 4 years ago

In this tutorial we go through how an image captioning system works and implement one from scratch. Specifically we're looking at the caption dataset Flickr8k. There are multiple ways to improve the model: train a larger model (the one used is relatively small), train for longer and improve the model by adding attention similar to this paper: https://arxiv.org/abs/1502.03044.

Video of dataset (link in that video description to download the dataset yourself):
https://youtu.be/9sHcLvVXsns

✅ Support My Channel Through Patreon:
https://www.patreon.com/aladdinpersson

PyTorch Playlist:
https://www.youtube.com/playli....st?list=PLhhyoLH6Ijf

Github Repository:
https://github.com/aladdinpers....son/Machine-Learning

I stole the thumbnail image from Yunjeys Github on Image Captioning which I also used as a resource. The implementation in the video differs a bit, but it's definitely worth checking out:
https://github.com/yunjey/pytorch-tutorial


OUTLINE:
0:00 - Introduction
0:12 - Explanation of Image Captioning
05:15 - Overview of the code
06:07 - Implementation of CNN and RNN
20:03 - Setting up the training
30:36 - Fixing errors
32:18 - Small evaluation and ending

Generative AI
2,129,313 Views · 4 years ago

#shorts #machinelearning #deeplearning #gnn #graphs

Generative AI
2,950,536 Views · 4 years ago

Tensors are super important for neural networks, but can be confusing because different people use the word "Tensor" differently. In this StatQuest, we clear this up and tell you what the big deal is. BAM!

NOTE: If you are not already familiar with Neural Networks, check out the Neural Network playlist: https://www.youtube.com/watch?v=CqOfi41LfDw&list=PLblh5JKOoLUIxGDQs4LFFD--41Vzf-ME1

For a complete index of all the StatQuest videos, check out...
https://app.learney.me/maps/StatQuest
...or...
https://statquest.org/video-index/

If you'd like to support StatQuest, please consider...

Buying my book, The StatQuest Illustrated Guide to Machine Learning:
PDF - https://statquest.gumroad.com/l/wvtmc
Paperback - https://www.amazon.com/dp/B09ZCKR4H6
Kindle eBook - https://www.amazon.com/dp/B09ZG79HXC

Patreon: https://www.patreon.com/statquest
...or...
YouTube Membership: https://www.youtube.com/channe....l/UCtYLUTtgS3k1Fg4y5

...a cool StatQuest t-shirt or sweatshirt:
https://shop.spreadshirt.com/s....tatquest-with-josh-s

...buying one or two of my songs (or go large and get a whole album!)
https://joshuastarmer.bandcamp.com/

...or just donating to StatQuest!
https://www.paypal.me/statquest

Lastly, if you want to keep up with me as I research and create new StatQuests, follow me on twitter:
https://twitter.com/joshuastarmer

0:00 Awesome song and introduction
1:34 Why we need Tensors
4:52 Tensors store data
6:51 Tensors have hardware acceleration
7:37 Tensors have automatic differentiation

#StatQuest #Tensors #NeuralNetworks

Generative AI
2,535,105 Views · 4 years ago

In this tutorial we build a Sequence to Sequence (Seq2Seq) with Attention model from scratch in Pytorch and apply it to machine translation on a dataset with German to English sentences, specifically the Multi30k dataset.

Resources to learn more:
https://github.com/bentrevett
https://youtu.be/SysgYptB198
https://youtu.be/quoGRI-1l0A
https://arxiv.org/abs/1409.0473
https://pytorch.org/tutorials/....intermediate/seq2seq

Comment on resources:
I think bentrevett on Github is awesome and this series of videos was heavily inspired in this video by his Seq2Seq Tutorials and I really recommend checking him out, he puts out a lot of great tutorials on his Github.

People often ask what courses are great for getting into ML/DL and the two I started with is ML and DL specialization both by Andrew Ng. Below you'll find both affiliate and non-affiliate links if you want to check it out. The pricing for you is the same but a small commission goes back to the channel if you buy it through the affiliate link.
ML Course (affiliate): https://bit.ly/3qq20Sx

DL Specialization (affiliate): https://bit.ly/30npNrw
ML Course (no affiliate): https://bit.ly/3t8JqA9
DL Specialization (no affiliate): https://bit.ly/3t8JqA9

GitHub Repository:
https://github.com/aladdinpers....son/Machine-Learning

✅ Equipment I use and recommend:
https://www.amazon.com/shop/aladdinpersson

❤️ Become a Channel Member:
https://www.youtube.com/channe....l/UCkzW5JSFwvKRjXABI

✅ One-Time Donations:
Paypal: https://bit.ly/3buoRYH
Ethereum: 0xc84008f43d2E0bC01d925CC35915CdE92c2e99dc

▶️ You Can Connect with me on:
Twitter - https://twitter.com/aladdinpersson
LinkedIn - https://www.linkedin.com/in/al....addin-persson-a95384
GitHub - https://github.com/aladdinpersson

PyTorch Playlist:
https://www.youtube.com/playli....st?list=PLhhyoLH6Ijf

Generative AI
2,457,998 Views · 4 years ago

This is the Programming assignment 1 from Andrew Ngs Machine Learning course.

Github: https://github.com/AladdinPerz....on/Courses/tree/mast




Showing 241 out of 583