Tags¶
API¶
- How to work with the Google Sheets API and Python
- Create a Note Taking App in Python with Speech Recognition and the Notion API
- How to work with the Notion API in Python
- How To Scrape Reddit & Automatically Label Data For NLP Projects | Reddit API Tutorial
- Build & Deploy A Python Web App To Automate Twitter | Flask, Heroku, Twitter API & Google Sheets API
- YouTube Data API Tutorial with Python - Analyze Channel Statistics - Part 1
- YouTube Data API Tutorial with Python - Find Channel Videos - Part 2
- YouTube Data API Tutorial with Python - Get Video Statistics - Part 3
- YouTube Data API Tutorial with Python - Analyze the Data - Part 4
Basics¶
- 10 Python Basics You Should Know!
- How to access the index in a for loop in Python
- What is the difference between append and extend for Python Lists?
- What are args and *kwargs in Python
- How to ask the user for input until they give a valid response in Python
- What is assert in Python
- The base64 Module in Python
- Difference between byte objects and string in Python
- Calendar Module in Python
- How to check if a file or directory exists in Python
- How to check if a String contains a Substring in Python
- Complex Numbers in Python
- How to concatenate two Lists in Python
- How to create a constant in Python
- How to copy files in Python
- How to count the occurrence of an element in a List in Python
- How to create a nested directory in Python
- Data classes in Python with dataclass decorator
- Complete Guide to the datetime Module in Python
- How to delete files and folders in Python
- How to delete a key from a dictionary in Python
- Deque in Python using Collections Module
- Difference between str and repr in Python
- Difference between @classmethod, @staticmethod, and instance methods in Python.
- How to use dotenv package to load environment variables in Python
- What is the meaning of single and double leading underscore in Python
- Enum in Python
- How to access and set environment variables in Python
- Difference between the equality operator and is operator in Python
- How to find the index of an item in a List in Python
- How to flatten a list of lists in Python
- What is functools in Python?
- What are global, local, and nonlocal scopes in Python
- What is init.py file in Python
- In-place file editing with fileinput module
- Difference between iterator and iterable in Python
- How to limit float values to N decimal places in Python
- How to merge two Dictionaries in Python
- What are metaclasses in Python
- How to check if an object is iterable in Python
- How to pad zeros to a String in Python
- How to use pprint in Python?
- Precision Handling in Python | floor, ceil, round, trunc, format
- How to execute a Program or System Command from Python
- How to write for loops in Python
- What does if name == "main" do?
- How to use Poetry to manage dependencies in Python
- Working with Stacks in Python
- How to write while loops in Python
- How to work with ZIP files in Python
- How to randomly select an item from a list?
- How to read and write files in Python
- How to remove duplicate elements from a List in Python
- How to remove elements in a Python List while looping
- How to rename files in Python
- How to reverse a String in Python
- What is self in Python classes
- How to slice sequences in Python
- Difference between set() and frozenset() in Python
- How to sort a dictionary by values in Python
- Difference between sort() and sorted() in Python
- Exploring the statistics module in Python
- How to format Strings in Python
- 31 essential String methods in Python you should know
- How to convert a string to float/integer and vice versa in Python
- What is super() in Python
- How to work with tarball/tar files in Python
- How to use ThreadPoolExecutor in Python
- Type Conversion in Python
- What are virtual environments in Python and how to work with them
- What does the yield keyword do in Python
Computer Vision¶
- Working with Images in OpenCV using Python
- Getting Started with OpenCV in Python
- Working with Videos in OpenCV using Python
Crash Course¶
- Python Flask Beginner Tutorial - Todo App
- HuggingFace Crash Course
- LangChain Tutorial in Python - Crash Course
- NumPy Crash Course 2020 - Complete Tutorial
- Object Oriented Programming (OOP) In Python - Beginner Crash Course
- MongoDB Crash Course With Python
- Regular Expressions in Python - ALL You Need To Know
Data Science¶
Data Structures¶
Deep Learning¶
- Installation - PyTorch Beginner 01
- Tensor Basics - PyTorch Beginner 02
- Autograd - PyTorch Beginner 03
- Backpropagation - PyTorch Beginner 04
- Gradient Descent Using Autograd - PyTorch Beginner 05
- Training Pipeline - PyTorch Beginner 06
- Linear Regression - PyTorch Beginner 07
- Logistic Regression - PyTorch Beginner 08
- Dataset And Dataloader - PyTorch Beginner 09
- Dataset Transforms - PyTorch Beginner 10
- Softmax And Cross Entropy - PyTorch Beginner 11
- Activation Functions - PyTorch Beginner 12
- Feed Forward Neural Network - PyTorch Beginner 13
- Convolutional Neural Network (CNN) - PyTorch Beginner 14
- Transfer Learning - PyTorch Beginner 15
- Tensorboard - PyTorch Beginner 16
- Saving And Loading Models - PyTorch Beginner 17
- Installation - TensorFlow Beginner 01
- Tensor Basics - TensorFlow Beginner 02
- Neural Net - TensorFlow Beginner 03
- Regression - TensorFlow Beginner 04
- Convolutional Neural Net (CNN) - TensorFlow Beginner 05
- Saving And Loading Models - TensorFlow Beginner 06
- Functional API -TensorFlow Beginner 07
- Classify Lego Star Wars Minifigures - TensorFlow Beginner 08
- Transfer Learning - TensorFlow Beginner 09
- Recurrent Neural Nets (RNN) - TensorFlow Beginner 10
- Text Classification - NLP Tutorial - TensorFlow Beginner 11
- 10 Deep Learning Projects With Datasets (Beginner & Advanced)
- Chat Bot With PyTorch - NLP And Deep Learning
- How To Deploy ML Models With Google Cloud Run
- Introduction to Graph Machine Learning
- How To Hack Neural Networks!
- HuggingFace Crash Course
- LangChain Tutorial in Python - Crash Course
- Complete FREE Study Guide for Machine Learning and Deep Learning
- Autoencoder In PyTorch - Theory & Implementation
- Build A Machine Learning iOS App | PyTorch Mobile Deployment
- PyTorch Lightning Tutorial - Lightweight PyTorch Wrapper For ML Researchers
- PyTorch LR Scheduler - Adjust The Learning Rate For Better Results
- Create & Deploy A Deep Learning App - PyTorch Model Deployment With Flask & Heroku
- PyTorch Tutorial - RNN & LSTM & GRU - Recurrent Neural Nets
- PyTorch RNN Tutorial - Name Classification Using A Recurrent Neural Net
- Build A PyTorch Style Transfer Web App With Streamlit
- PyTorch Time Sequence Prediction With LSTM - Forecasting Tutorial
- Teach AI To Play Snake - Practical Reinforcement Learning With PyTorch And Pygame
DevOps¶
Docker¶
- How to debug Python apps inside a Docker Container with VS Code
- Docker Tutorial For Beginners - How To Containerize Python Applications
Intermediate¶
Machine Learning¶
- KNN (K Nearest Neighbors) in Python - ML From Scratch 01
- Linear Regression in Python - ML From Scratch 02
- Logistic Regression in Python - ML From Scratch 03
- Linear and Logistic Regression Refactoring- ML From Scratch 04
- Naive Bayes in Python - ML From Scratch 05
- Perceptron in Python - ML From Scratch 06
- SVM (Support Vector Machine) in Python - ML From Scratch 07
- Decision Tree in Python Part 1/2 - ML From Scratch 08
- Decision Tree in Python Part 2/2 - ML From Scratch 09
- Random Forest in Python - ML From Scratch 10
- PCA (Principal Component Analysis) in Python - ML From Scratch 11
- K-Means Clustering in Python - ML From Scratch 12
- AdaBoost in Python - ML From Scratch 13
- LDA (Linear Discriminant Analysis) In Python - ML From Scratch 14
- 15 Best AI Newsletters
- Anaconda Tutorial - Installation and Basic Commands
- How To Deploy ML Models With Google Cloud Run
- The Best FREE Machine Learning Crash Courses
- Introduction to Graph Machine Learning
- How To Load Machine Learning Data From Files In Python
- Python Automation Projects With Machine Learning
- 5 Machine Learning BEGINNER Projects (+ Datasets & Solutions)
- Machine Learning From Scratch in Python
- Complete FREE Study Guide for Machine Learning and Deep Learning
- Build A Machine Learning Web App From Scratch
- Machine Learning From Scratch in Python - Full Course [FREE]
- How To Setup Jupyter Notebook In Conda Environment And Install Kernel
- Build A Stock Prediction Web App In Python
- Build A Beautiful Machine Learning Web App With Streamlit And Scikit-learn
NLP¶
- Text Classification - NLP Tutorial - TensorFlow Beginner 11
- Create A Chatbot GUI Application With Tkinter
- Chat Bot With PyTorch - NLP And Deep Learning
- HuggingFace Crash Course
- Create Conversational AI Applications With NVIDIA Jarvis
- PyTorch RNN Tutorial - Name Classification Using A Recurrent Neural Net
Personal¶
Project¶
PyTorch¶
- Installation - PyTorch Beginner 01
- Tensor Basics - PyTorch Beginner 02
- Autograd - PyTorch Beginner 03
- Backpropagation - PyTorch Beginner 04
- Gradient Descent Using Autograd - PyTorch Beginner 05
- Training Pipeline - PyTorch Beginner 06
- Linear Regression - PyTorch Beginner 07
- Logistic Regression - PyTorch Beginner 08
- Dataset And Dataloader - PyTorch Beginner 09
- Dataset Transforms - PyTorch Beginner 10
- Softmax And Cross Entropy - PyTorch Beginner 11
- Activation Functions - PyTorch Beginner 12
- Feed Forward Neural Network - PyTorch Beginner 13
- Convolutional Neural Network (CNN) - PyTorch Beginner 14
- Transfer Learning - PyTorch Beginner 15
- Tensorboard - PyTorch Beginner 16
- Saving And Loading Models - PyTorch Beginner 17
- Chat Bot With PyTorch - NLP And Deep Learning
- Autoencoder In PyTorch - Theory & Implementation
- Build A Machine Learning iOS App | PyTorch Mobile Deployment
- PyTorch Lightning Tutorial - Lightweight PyTorch Wrapper For ML Researchers
- PyTorch LR Scheduler - Adjust The Learning Rate For Better Results
- Create & Deploy A Deep Learning App - PyTorch Model Deployment With Flask & Heroku
- PyTorch Tutorial - RNN & LSTM & GRU - Recurrent Neural Nets
- PyTorch RNN Tutorial - Name Classification Using A Recurrent Neural Net
- Build A PyTorch Style Transfer Web App With Streamlit
- PyTorch Time Sequence Prediction With LSTM - Forecasting Tutorial
- Teach AI To Play Snake - Practical Reinforcement Learning With PyTorch And Pygame
Python¶
- Lists - Advanced Python 01
- Tuples - Advanced Python 02
- Dictionary - Advanced Python 03
- Sets - Advanced Python 04
- Strings - Advanced Python 05
- Collections - Advanced Python 06
- Itertools - Advanced Python 07
- Lambda Functions - Advanced Python 08
- Exceptions And Errors - Advanced Python 09
- Logging - Advanced Python 10
- JSON - Advanced Python 11
- Random Numbers - Advanced Python 12
- Decorators - Advanced Python 13
- Generators - Advanced Python 14
- Threading vs Multiprocessing - Advanced Python 15
- Multithreading - Advanced Python 16
- Multiprocessing - Advanced Python 17
- Function arguments - Advanced Python 18
- The Asterisk (*) operator - Advanced Python 19
- Shallow vs Deep Copying - Advanced Python 20
- Context Managers - Advanced Python 21
- 10 Python Basics You Should Know!
- 10 Python One Liner You Must Know
- 11 Tips And Tricks To Write Better Python Code
- 5 Python Pitfalls that can save you HOURS of debugging!
- How to access the index in a for loop in Python
- What is the difference between append and extend for Python Lists?
- How To Analyze Apple Health Data With Python
- What are args and *kwargs in Python
- How to ask the user for input until they give a valid response in Python
- What is assert in Python
- The base64 Module in Python
- 6 Tips To Write Better For Loops in Python
- Why I Don't Care About Code Formatting In Python | Black Tutorial
- Difference between byte objects and string in Python
- Calendar Module in Python
- Create A Chatbot GUI Application With Tkinter
- How to check if a file or directory exists in Python
- How to check if a List is empty in Python
- How to check if a String contains a Substring in Python
- How to build CLIs using Quo
- Complex Numbers in Python
- How to concatenate two Lists in Python
- How to create a constant in Python
- How to write your own context manager in Python
- How to convert a Google Colab to Markdown
- How to copy files in Python
- How to count the occurrence of an element in a List in Python
- How to create a nested directory in Python
- How To Schedule Python Scripts As Cron Jobs With Crontab (Mac/Linux)
- Data classes in Python with dataclass decorator
- Complete Guide to the datetime Module in Python
- How to debug Python apps inside a Docker Container with VS Code
- How to delete files and folders in Python
- How to delete a key from a dictionary in Python
- Deque in Python using Collections Module
- Difference between str and repr in Python
- Difference between @classmethod, @staticmethod, and instance methods in Python.
- How To Build A Photo Sharing Site With Django
- Docker Tutorial For Beginners - How To Containerize Python Applications
- How to use dotenv package to load environment variables in Python
- What is the meaning of single and double leading underscore in Python
- Enum in Python
- How to access and set environment variables in Python
- Difference between the equality operator and is operator in Python
- FastAPI Introduction - Build Your First Web App
- File Organizing with Python
- How to find the index of an item in a List in Python
- Tip - Find the longest String in a List in Python using the max() function
- Python Flask Beginner Tutorial - Todo App
- How to flatten a list of lists in Python
- Should You Use FOR Or WHILE Loop In Python?
- freeCodeCamp.org Released My Intermediate Python Course
- What is functools in Python?
- What are global, local, and nonlocal scopes in Python
- How to work with the Google Sheets API and Python
- Best hosting platforms for Python applications and Python scripts
- How to copy a List in Python without side effects
- Download Images With Python Automatically - Web Scraping Tutorial
- What is init.py file in Python
- In-place file editing with fileinput module
- Difference between iterator and iterable in Python
- LangChain Tutorial in Python - Crash Course
- How to limit float values to N decimal places in Python
- List Comprehension in Python
- Python Automation Projects With Machine Learning
- How to measure the elapsed time in Python
- How to merge two Dictionaries in Python
- What are metaclasses in Python
- Machine Learning From Scratch in Python
- Select Movies with Python - Web Scraping Tutorial
- New Features In Python 3.10 You Should Know
- Create a Note Taking App in Python with Speech Recognition and the Notion API
- How to work with the Notion API in Python
- NumPy Crash Course 2020 - Complete Tutorial
- Create Conversational AI Applications With NVIDIA Jarvis
- How to check if an object is iterable in Python
- Object Oriented Programming (OOP) In Python - Beginner Crash Course
- Working with Images in OpenCV using Python
- Getting Started with OpenCV in Python
- Working with Videos in OpenCV using Python
- How to pad zeros to a String in Python
- Learn about Pandas groupby operations - From Zero to Hero
- Master Pattern Matching In Python 3.10 | All Options |
- How to use pprint in Python?
- Precision Handling in Python | floor, ceil, round, trunc, format
- Tip - The print function can take additional arguments
- How To Add A Progress Bar In Python With Just One Line
- Awesome Python Automation Ideas
- How to use the Python Debugger using the breakpoint()
- How to execute a Program or System Command from Python
- How to write for loops in Python
- What does if name == "main" do?
- How to use the interactive mode in Python.
- MongoDB Crash Course With Python
- How to use Poetry to manage dependencies in Python
- Quick Python Refactoring Tips (Part 2)
- Quick Python Refactoring Tips
- Socket Programming in Python
- Working with Stacks in Python
- How to write while loops in Python
- How to work with ZIP files in Python
- How to randomly select an item from a list?
- How to read and write files in Python
- How To Scrape Reddit & Automatically Label Data For NLP Projects | Reddit API Tutorial
- Regular Expressions in Python - ALL You Need To Know
- How to remove duplicate elements from a List in Python
- How to remove elements in a Python List while looping
- How to easily remove the background of images in Python
- How to rename files in Python
- How to reverse a String in Python
- Beautiful Terminal Styling in Python With Rich
- Tip - Use the round() function with negative arguments
- How to schedule Python scripts with GitHub Actions
- What is self in Python classes
- How to slice sequences in Python
- Difference between set() and frozenset() in Python
- Snake Game In Python - Python Beginner Tutorial
- Python Snake Game With Pygame - Create Your First Pygame Application
- How to sort a dictionary by values in Python
- Difference between sort() and sorted() in Python
- How to split a List into equally sized chunks in Python
- Exploring the statistics module in Python
- Build A Beautiful Machine Learning Web App With Streamlit And Scikit-learn
- How to format Strings in Python
- 31 essential String methods in Python you should know
- How to convert a string to float/integer and vice versa in Python
- What is super() in Python
- How to work with tarball/tar files in Python
- Create a Task Tracker App for the Terminal with Python (Rich, Typer, Sqlite3)
- How to use ThreadPoolExecutor in Python
- TinyDB in Python - Simple Database For Personal Projects
- Build & Deploy A Python Web App To Automate Twitter | Flask, Heroku, Twitter API & Google Sheets API
- Type Conversion in Python
- How To Edit Videos With Python
- What are virtual environments in Python and how to work with them
- My Minimal VS Code Setup for Python - 5 Visual Studio Code Extensions
- The Walrus Operator - New in Python 3.8
- Build A Website Blocker With Python - Task Automation Tutorial
- What does the yield keyword do in Python
- YouTube Data API Tutorial with Python - Analyze Channel Statistics - Part 1
- YouTube Data API Tutorial with Python - Find Channel Videos - Part 2
- YouTube Data API Tutorial with Python - Get Video Statistics - Part 3
- YouTube Data API Tutorial with Python - Analyze the Data - Part 4
- Tip - How to loop over multiple Lists in Python with the zip function
Reinforcment Learning¶
TensorFlow¶
- Installation - TensorFlow Beginner 01
- Tensor Basics - TensorFlow Beginner 02
- Neural Net - TensorFlow Beginner 03
- Regression - TensorFlow Beginner 04
- Convolutional Neural Net (CNN) - TensorFlow Beginner 05
- Saving And Loading Models - TensorFlow Beginner 06
- Functional API -TensorFlow Beginner 07
- Classify Lego Star Wars Minifigures - TensorFlow Beginner 08
- Transfer Learning - TensorFlow Beginner 09
- Recurrent Neural Nets (RNN) - TensorFlow Beginner 10
- Text Classification - NLP Tutorial - TensorFlow Beginner 11
Tips¶
- 11 Tips And Tricks To Write Better Python Code
- 6 Tips To Write Better For Loops in Python
- Tip - Find the longest String in a List in Python using the max() function
- Tip - The print function can take additional arguments
- How to use the Python Debugger using the breakpoint()
- How to use the interactive mode in Python.
- Quick Python Refactoring Tips (Part 2)
- Quick Python Refactoring Tips
- Tip - Use the round() function with negative arguments
- Tip - How to loop over multiple Lists in Python with the zip function
Web¶
- How To Deploy ML Models With Google Cloud Run
- Async Views in Django 3.1
- How To Build A Photo Sharing Site With Django
- FastAPI Introduction - Build Your First Web App
- Python Flask Beginner Tutorial - Todo App
- Best hosting platforms for Python applications and Python scripts
- Create & Deploy A Deep Learning App - PyTorch Model Deployment With Flask & Heroku
- Build A PyTorch Style Transfer Web App With Streamlit
- Build A Stock Prediction Web App In Python
- Build A Beautiful Machine Learning Web App With Streamlit And Scikit-learn
- Build & Deploy A Python Web App To Automate Twitter | Flask, Heroku, Twitter API & Google Sheets API
- Website Rebuild With Publish (Static Site Generator)
numpy¶
- KNN (K Nearest Neighbors) in Python - ML From Scratch 01
- Linear Regression in Python - ML From Scratch 02
- Logistic Regression in Python - ML From Scratch 03
- Linear and Logistic Regression Refactoring- ML From Scratch 04
- Naive Bayes in Python - ML From Scratch 05
- Perceptron in Python - ML From Scratch 06
- SVM (Support Vector Machine) in Python - ML From Scratch 07
- Decision Tree in Python Part 1/2 - ML From Scratch 08
- Decision Tree in Python Part 2/2 - ML From Scratch 09
- Random Forest in Python - ML From Scratch 10
- PCA (Principal Component Analysis) in Python - ML From Scratch 11
- K-Means Clustering in Python - ML From Scratch 12
- AdaBoost in Python - ML From Scratch 13
- LDA (Linear Discriminant Analysis) In Python - ML From Scratch 14
- How To Load Machine Learning Data From Files In Python
- How to apply image thresholding in Python with NumPy
- Machine Learning From Scratch in Python
- Machine Learning From Scratch in Python - Full Course [FREE]
- NumPy Crash Course 2020 - Complete Tutorial
- Learn NumPy In 30 Minutes