From 0d3ea813cdbaf99611e3277eb3d51955b13adf69 Mon Sep 17 00:00:00 2001 From: Kwame Robinson Date: Tue, 17 Jul 2018 09:49:31 -0400 Subject: [PATCH] (doc): Fixes typo in Categorical Ensembling by replacing `market` with `model` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8bff083..3fb755e 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ This feature only supports regression and binary classification currently. The r ## Categorical Ensembling -Ever wanted to train one market for every store/customer, but didn't want to maintain hundreds of thousands of independent models? With `ml_predictor.train_categorical_ensemble()`, we will handle that for you. You'll still have just one consistent API, `ml_predictor.predict(data)`, but behind this single API will be one model for each category you included in your training data. +Ever wanted to train one model for every store/customer, but didn't want to maintain hundreds of thousands of independent models? With `ml_predictor.train_categorical_ensemble()`, we will handle that for you. You'll still have just one consistent API, `ml_predictor.predict(data)`, but behind this single API will be one model for each category you included in your training data. Just tell us which column holds the category you want to split on, and we'll handle the rest. As always, saving the model, loading it in a different environment, and getting speedy predictions live in production is baked right in.