top of page

Automated Machine Learning for Professionals


Summary:

Summary: There are a variety of new Automated Machine Learning (AML) platforms emerging that led us recently to ask if we’d be automated and unemployed any time soon. In this article we’ll cover the “Professional AML tools”. They require that you be fluent in R or Python which means that Citizen Data Scientists won’t be using them. They also significantly enhance productivity and reduce the redundant and tedious work that’s part of model building.

Last week we wrote about Automated Machine Learning (AML) and particularly about a breed of platforms that promise One-Click Data-In Model-Out simplicity. These were quite impressive and all but one has been in the market for more than a year, each claiming its measure of success. One of the key characteristics these platforms offer is simplicity that drives two user benefits:

  • The ability for trained data scientists to produce quality supervised models quickly, thereby also reducing cost.

  • The at least theoretical capability that these tools could be used by much less experienced or even amateur citizen data scientists dramatically expanding the market for these platforms.

What’s worthy of note however is that there are a number of AML packages that rely exclusively on code, both R and Python, that we want to take a look at this week.

The implication of the fact that they require you to code is that it requires expert professional data scientist skills to execute and therefore does not open them up to use by citizen data scientists. Also these are all open source. Let’s call these Professional AML tools.

So although the user interface is not as ‘slick’, if your organization is an R or Python shop then these packages offer the consistency, speed, and economy of the true One-Clicks.

The Middle Way

In our last articles we also noted a number of platform vendors that had selected “a middle way” by which we mean that while several steps were automated, the user was still required to go through several traditional separate procedures.

This platform simplification is also a good thing and perhaps even superior to fully automated machine learning since it requires the user to examine assumptions and processes at each step. However, for purposes of this article we’re looking for applications that are as close to one-click as we can get.

As it turns out there are a number of code-based open source apps that have been developed that address just one or two features of AML. The most popular of these take on one of the most difficult problems which is hyperparameter tuning. These include:

  • Hyperopt

  • SMAC and SMAC3 – Sequential Model-based Algorithm Configuration

  • RoBO – Robust Bayesian Optimization framework

In addition there is at least one suite of tools, CARET, which although not integrated as one-click, offers a broad range of apps for ‘automating’ many of the separate steps in model creation. CARET is open source in R.

Ideally What They Should be Able to Do:

Certainly there are any number of tasks in the creation of predictive models that are more repetitive than creative. We’d like to be able to delegate tasks that are fundamentally repetitive, things that make us wait and waste our time, and tasks that can be built up from reusable routines.

The commercial applications of AML that we examined in our last article could cover the full process. Here on the ‘Professional Tools’ side we might expect and accept a little less integration. But still we want these tools to be able to combine many of the following steps into a single click task after we provide an analytic flat file:

  1. Preprocess the data. Including cleansing, transforms, imputes, and normalizations as required. Note that we’ve seen some apps that stick with decision trees and their ensemble variants just because they need so little of this.

  2. Feature engineering and feature selection. OK, it takes a domain expert to do really effective feature engineering but it ought to at least be able bucket categoricals, create some date analyses like ‘time since’ or ‘day of week’, and create ratios from related features.

  3. Select appropriate algorithms, presumably a fairly large number of primary types that would be run in parallel.

  4. Optimize the hyperparameters. The more algorithm types selected the more difficult this becomes.

  5. Run the models including a loop to create some meaningful ensembles.

  6. Present the results in a manner that allows simplified but accurate comparison and selection of a champion model.

  7. Deploy: Provide a reasonably easy method of exporting code or at least an API for scoring and implementation in operational systems.

Limits

If it seems like we’re asking for a lot, and we are, then we should also be specific about what we’re not expecting.

  • These should prepare classical supervised learning models of both regression and classification. For now we’d probably settle for just classification.

  • We’re not looking for exotic time series models.

  • We’re not asking for deep neural nets or unlabeled data (though some of these are starting to emerge). Both the target and the variables should be labeled.

http://www.datasciencecentral.com/profiles/blogs/automated-machine-learning-for-professionals

12 views0 comments

Recent Posts

See All

POST

bottom of page