Instructional Video4:10
Curated Video

Discuss the importance of data : Evaluating model performance in Python

Higher Ed
From the section: Simple Decision trees. In this section, we will start with the basic theory of decision tree then we cover data pre-processing topics like missing value imputation, variable transformation and Test-Train split. In the...
Instructional Video12:51
APMonitor

Vision Deep Learning

10th - Higher Ed
In computer vision, deep learning has proven useful to extract patterns from images. Deep learning uses a neural network and optimization to relate features (pixels) to a desired label. As opposed to Cascade Classifiers, deep learning...
Instructional Video23:22
APMonitor

Deploy Python ML Apps

10th - Higher Ed
Training and testing are often performed once on a dedicated computing platform. The trained model is then packaged for another computing system for predictions. Deploying machine learning is the process of making the model available to...
Instructional Video14:49
APMonitor

Python 🐍 Curve Fit with Step Test Data

10th - Higher Ed
The Scipy curve_fit function determines two unknown coefficients (dead-time and time constant) to minimize the difference between predicted and measured response values. Pandas imports the data and the dataframe header is diplayed with...
Instructional Video4:07
Curated Video

Evaluate the impact of an AI application used in the real world. (case study) : Working with Flower Images: Case Study - Part 1

Higher Ed
From the section: CNN-Industry Live Project: Playing With Real World Natural Images. This section includes a live project of working with flower images. CNN-Industry Live Project: Playing with Real World Natural Images: Working with...
Instructional Video13:14
TLDR News

Trade After Hard Brexit: WTO Rules Explained

12th - Higher Ed
There has been a lot of talk about World Trade Organisation rules coming into force after Brexit. These are the rules and principles which would guide the UK's trade relationships after leaving the EU. So what will trade be like for the...
Instructional Video9:20
APMonitor

Python 🐍 Solve Nonlinear Equations with fsolve

10th - Higher Ed
This tutorial is an introduction to solving nonlinear equations with Python. The solution to linear equations is through matrix operations while sets of nonlinear equations require a solver such as Scipy optimize fsolve to numerically...
Instructional Video7:28
Catalyst University

The Nuclear Pore Complex: Nuclear Import, Export, & RAN

Higher Ed
In this video, we discuss the mechanisms by which proteins are targeted to the nucleus (import) and moved from the nucleus to the cytoplasm (export). Collectively, nucleocytoplasmic transport is regulated by the nuclear pore complex and...
Instructional Video5:50
Packt

Importance of Soft Assertions in Selenium WebDriver

Higher Ed
This video discusses the importance of soft assertions in Selenium WebDriver. This clip is from the chapter "Miscellaneous Topics in Selenium WebDriver" of the series "Selenium WebDriver with Java - Basics to Advanced and...
Instructional Video7:45
Curated Video

Evaluate visual representations of data that models real-world phenomena or processes : Visualizing Text Data

Higher Ed
From the section: NLP Visualization and Model Experimentation. Visualize text data and view data embeddings. View and track hyperparameter tuning and display training configurations to run reproducible experiments. In this video, we’ll...
Instructional Video10:25
Curated Video

Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 3 - Q3 When to Advertise

Higher Ed
In this session, we will be addressing third question of the challenge, which is: What time should we display advertisements to maximize the likelihood of customers trying products? This clip is from the chapter "Structured API - Spark...
Instructional Video8:21
Curated Video

Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 2 - Get the City and State

Higher Ed
Let's go ahead and work on the second part of the challenge. In this session, we will extract the city and state from the purchase address. This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3...
Instructional Video13:08
Curated Video

Cypress - Modern Automation Testing from Scratch + Framework - Implementing Page Object Design Pattern into Cypress

Higher Ed
This video introduces you to implementing page object design pattern into Cypress. This clip is from the chapter "Cypress Framework Part 2- Page Object Design and Test Parameterization" of the series "Cypress - Modern Automation Testing...
Instructional Video21:11
Curated Video

Complete Python Scripting for Automation - How to use Functions of one script into another script, what is __name__ ?

Higher Ed
Functions: How to use Functions of one script into another script, what is __name__ ? This clip is from the chapter "Functions" of the series "Complete Python Scripting for Automation".You will learn how to define a Function, converting...
Instructional Video3:45
Jabzy

Sack of Antwerp - Stuff That I Find Interesting

12th - Higher Ed
In this video, Jabzy brings us historical tidbits and unknown facts about the Sack of Antwerp
Instructional Video4:24
TLDR News

Who Does The UK Trade With Most? - Data Dive

12th - Higher Ed
With Brexit coming up so soon it's important to consider who the UK actually trade with. Which countries does the UK export the most of their goods and services to and who does the UK rely on for imports?
Instructional Video4:30
Curated Video

Ensemble Machine Learning Techniques 2.3: Ensemble Learning for Classification

Higher Ed
In this video, we will use python to write a simple ensemble learning model for classification. • We will use Jupyter Notebook to execute our code • Use Iris dataset to perform classification • Use hard voting and soft voting for...
Instructional Video9:30
Curated Video

Apache Spark 3 for Data Engineering and Analytics with Python - Challenge Part 3 - Q4 Products Bought Together

Higher Ed
In this session, we will address the final question of the challenge, which is: What products are often sold together in the state of 'NY'? This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3...
Instructional Video19:20
APMonitor

Split Data for Machine Learning

10th - Higher Ed
Splitting data ensures that there are independent sets for training, testing, and validation. Data can be divided into sequential blocks where the order is preserved (e.g. time series) or with random selection (shuffle). Cross-validation...
Instructional Video3:40
Curated Video

Predictive Analytics with TensorFlow 3.3: TensorFlow Programming Model

Higher Ed
The TensorFlow programming model signifies how to structure your predictive models. • Look at the steps for structuring the model
Instructional Video7:20
Curated Video

Julia for Data Science (Video 15)

Higher Ed
Julia is an easy, fast, open source language that if written well performs nearly as well as low-level languages such as C and FORTRAN. Its design is a dance between specialization and abstraction, providing high machine performance...
Instructional Video6:04
Curated Video

Apache Spark 3 for Data Engineering and Analytics with Python - Aggregations - Count and Count Distinct

Higher Ed
In this session, we will explore the concept of aggregation further and learn to use the count and countDistinct aggregation functions. This clip is from the chapter "Structured API - Spark DataFrame" of the series "Apache Spark 3 for...
Instructional Video4:20
IDG TECHtalk

Docstrings in Python: Code as comments, and comments as code

Higher Ed
Learn how to use Python's docstrings feature to embed documentation directly into your code, available through Python's help system and accessible by third-party documentation-generation tools.
Instructional Video31:08
Curated Video

Complete Python Scripting for Automation - Introduction to Python Modules

Higher Ed
Working with Python Modules: Introduction to Python Modules This clip is from the chapter "Working with Python Modules" of the series "Complete Python Scripting for Automation".You will learn about platform module and getpass module.