Machine Learning - Winder.AI Blog

Industrial insight and articles from Winder.AI, focusing on the topic Machine Learning

Subscribe

Machine Learning Presentation: Packaging Your Models

Machine Learning Presentation: Packaging Your Models

Wed Mar 16, 2022, by Phil Winder, in Machine Learning, MLOps, Talk

Dr. Phil Winder shares experiences of Winder.AI’s machine learning consulting experience at a variety of large and small organizations. Abstract In this talk he focuses on packaging ML models for production serving. Learn about how the cloud vendors compare, what orchestration abstractions prefer, and how packaging tools seek to find the right abstractions. At the end of the talk Phil distils this information and presets best practices. There’s also some discussion of future trends and some ideas for aspiring open-source engineers.

Machine Learning Presentation: Provenance and Lineage for Data, Pipelines, and Deployments

Machine Learning Presentation: Provenance and Lineage for Data, Pipelines, and Deployments

Wed Feb 16, 2022, by Phil Winder, in Machine Learning, Talk

Dr. Phil Winder shares experiences of Winder.AI’s machine learning consulting experience at a variety of large and small organizations. Abstract In this talk he focuses on how provenance and lineage, typically thought of as a model deployment problem, can help make the development of machine learning models more repeatable, understandable, and robust. Discover the difference between lineage and provenance. Learn how to determine the “strength” of your lineage and how robust it is to failure.

The Value of a Machine Learning Pipeline: Past, Present, and the Future of MLOps With Kubeflow

The Value of a Machine Learning Pipeline: Past, Present, and the Future of MLOps With Kubeflow

Mon Nov 1, 2021, by Phil Winder, in Machine Learning, MLOps

Industrial machine learning consulting projects come in a variety of forms. Sometimes clients ask for exploratory data analysis, to evaluate whether their data can be used to help solve a problem using artificial intelligence. Other times we use machine learning (ML) algorithms to automate decisions and improve efficiencies within a business or product. More recently we’ve refocused on reinforcement learning and customers ask us to help control some complex multi-step process.

Fast Time-Series Filters in Python

Fast Time-Series Filters in Python

Fri Oct 4, 2019, by phil-winder, in Machine Learning

Time-series (TS) filters are often used in digital signal processing for distributed acoustic sensing (DAS). The goal is to remove a subset of frequencies from a digitised TS signal. To filter a signal you must touch all of the data and perform a convolution. This is a slow process when you have a large amount of data. The purpose of this post is to investigate which filters are fastest in Python.

Scikit Learn to Pandas: Data types shouldn't be this hard

Sun Feb 3, 2019, by Phil Winder, in Machine Learning

Nearly everyone using Python for Data Science has used or is using the Pandas Data Analysis/Preprocessing library. It is as much of a mainstay as Scikit-Learn. Despite this, one continuing bugbear is the different core data types used by each: pandas.DataFrame and np.array. Wouldn’t it be great if we didn’t have to worry about converting DataFrames to numpy types and back again? Yes, it would. Step forward Scikit Pandas. Sklearn Pandas Sklearn Pandas, part of the Scikit Contrib package, adds some syntactic sugar to use Dataframes in sklearn pipelines and back again.

Principal Component Analysis

Sun Jan 28, 2018, in Machine Learning, Workshop

Dimensionality Reduction - Principal Component Analysis Welcome! This workshop is from Winder.ai. Sign up to receive more free workshops, training and videos. Sometimes data has redundant dimensions. For example, when predicting weight from height data you would expect that information about their eye colour provides no predictive power. In this simple case we can simply remove that feature from the data. With more complex data it is usual to have combinations of features that provide predictive power.

101: Why Data Science?

Mon Jan 1, 2018, in Training, Machine Learning, Data Science

What is Data Science? Software Engineering, Maths, Automation, Data A.k.a: Machine Learning, AI, Big Data, etc. It’s current rise in popularity is due to more data and more computing power. For more information: https://winderresearch.com/what-is-data-science/ Examples US Supermarket Giants Target: Optimising Marketing using customer spending data. Walmart: Predicting demand ahead of a natural disaster. Discovery Most projects are “Discovery Projects”.

102: How to do a Data Science Project

Mon Jan 1, 2018, in Training, Machine Learning, Data Science

Problems in Data Science Understanding the problem “the five-whys” Different questions dramatically effect the tools and techniques used to solve the problem. Data Science as a Process More Science than Engineering High risk High reward Difficult Unpredictable By Kenneth Jensen CC BY-SA 3.0, via Wikimedia Commons Impacts of Data Science What is the purpose of the project?

201: Basics and Terminology

Mon Jan 1, 2018, in Training, Machine Learning, Data Science

The ultimate goal First lets discuss what the goal is. What is the goal? The goal is to make a decision or a prediction Based upon what? Information How can we improve the quality of the decision or prediction? The quality of the solution is defined by the certainty represented by the information. Think about this for a moment. It’s a key insight. Think about your projects.

202: Segmentation For Classification

Mon Jan 1, 2018, in Training, Machine Learning

Segmentation So let’s walk through a very visual, intuitive example to help describe what all data science algorithms are trying to do. This will seem quite complicated if you’ve never done anything like this before. That’s ok! I want to do this to show you that all algorithms that you’ve every heard of have some very basic assumption of what they are trying to do. At the end of this, we will have completely derived one very important type of classifier.