Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Dictionaries, sets and tuples
Learning the basics of building a class from scratch and special __init__ method This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about Python...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Lists - an in-depth look 2
A quick look at using the command line/terminal window to navigate file directories This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about Python...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Topological Sort In A Graph
This video will make things easy to follow. Topological sort is widely used in real world problems. This clip is from the chapter "Graph Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".Topological sort is an...
Curated Video
Practical Data Science using Python - Introduction to Machine Learning
This video introduces you to machine learning. This clip is from the chapter "Machine Learning" of the series "Practical Data Science Using Python".This section explains machine learning.
Curated Video
Python for Deep Learning - Build Neural Networks in Python - What is Deep Learning?
In this video, we will understand what deep learning is. This clip is from the chapter "Introduction to Deep Learning" of the series "Python for Deep Learning — Build Neural Networks in Python".In this section, we will take a quick...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Building if, elif, else blocks incrementally
Take a program and build a function step by step This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about Python in-depth.
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Exploring Jupyter Notebooks interface (optional)
A detailed look at using Jupyter Notebooks for developing Python code This clip is from the chapter "Development environment setup" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section describes the...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Depth First - In-Order and Post-Order Traversal
Depth first traversal can be of 3 types based on the order in which the node is processed relative to it's left and right sub-trees. This clip is from the chapter "Binary Trees" of the series "From 0 to 1: Data Structures & Algorithms in...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Meet The Queue - A Familiar Sight In Everyday Life
Learn more about queues which are much more intuitive as there are plenty of real world examples where a queue is the fair and correct way of processing. This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Graph Traversal - Depth First And Breadth First
Common traversal methods of trees apply to graphs as well. There is an additional wrinkle with graphs, dealing with cycles and with unconnected graphs. This clip is from the chapter "Graphs" of the series "From 0 to 1: Data Structures &...
Curated Video
Machine Learning Random Forest with Python from Scratch - Classification versus Regression
Let's learn about the three modes of machine learning: classification, regression, and clustering. This clip is from the chapter "Introduction to Machine Learning" of the series "Machine Learning: Random Forest with Python from...
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Special methods and what they are
Working with strings and variables to handle text This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This section is about Python in-depth.
Curated Video
Python 3: Project-based Python, Algorithms, Data Structures - Building a custom Student class and intro to special methods
You have already seen generator objects in use, let's take a deeper look at what they are and how they work. This clip is from the chapter "Python in-depth" of the series "Python 3: Project-based Python, Algorithms, Data Structures".This...
Curated Video
Multi-Paradigm Programming with Modern C++ - Enter Ranges
Most algorithms use a pair of iterators. Most containers can be thought of as a pair of begin() and end() iterators. Why not use a pair of iterators everywhere? Roughly, this is what ranges are all about. • Installing range-v3 from...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Breadth First Traversal
Let's visualize breadth first traversal and see how it's implemented. This clip is from the chapter "Binary Trees" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we study more about binary trees using...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Quick Sort
Let's see what makes quick sort so attractive. This clip is from the chapter "Sorting and Searching" of the series "From 0 to 1: Data Structures & Algorithms in Java".Learn about various sorting and searching functions from this section.
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Linked Lists vs Arrays
Learn how you can make an informed choice between Linked lists and arrays which solve the same kind of problems, holding a list or a collection. This clip is from the chapter "Linked Lists" of the series "From 0 to 1: Data Structures &...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Implementation Of Kruskal's Algorithm
Learn to implement Krushal’s Algorithm. This clip is from the chapter "Spanning Tree Algorithms" of the series "From 0 to 1: Data Structures & Algorithms in Java".Prim's algorithm is very similar to Dijkstra's shortest path algorithm...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - The Binary Heap - Making It Real With Code
Let's build a real heap in Java! This clip is from the chapter "Heaps" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we learn about Heap data structure, build a real heap in Java and perform operation...
Curated Video
Machine Learning Random Forest with Python from Scratch - Let's Introduce Machine Learning
This brief video outlines machine learning, its importance, and how it can be used in various applications to make life easier.
This clip is from the chapter "Introduction to Machine Learning" of the series "Machine Learning: Random...
Curated Video
Machine Learning Random Forest with Python from Scratch - Clustering
In this lesson, you will learn about an unsupervised branch of learning called clustering, which involves grouping elements with no labels to classify them. This clip is from the chapter "Introduction to Machine Learning" of the series...
Globalive Media
Beyond Innovation: Episode 22
Clothing becomes digitally connected, robots serve drinks and medical scanners spot diseases. Plus, Michael and Anthony speak with a professor developing brainwave-activated passwords. Hosted by venture capitalist Anthony Lacavera and...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Selection Sort
Learn more about simplest and most naive sorting algorithm. This clip is from the chapter "Sorting and Searching" of the series "From 0 to 1: Data Structures & Algorithms in Java".Learn about various sorting and searching functions from...
Curated Video
From 0 to 1 Data Structures & Algorithms in Java - Meet The Stack - Simple But Powerful
Learn various uses of stack which is a very simple and easy to understand data structure. This clip is from the chapter "Stacks And Queues" of the series "From 0 to 1: Data Structures & Algorithms in Java".In this section, we build stack...