Skip to content
Permalink
Browse files

Update learners.ipynb

  • Loading branch information...
lanzagar committed May 15, 2015
1 parent 0c5a70b commit 734e3c832bc7506e5b3f9d178de0a3e9f5892b99
Showing with 1 addition and 1 deletion.
  1. +1 −1 tutorials/learners.ipynb
@@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Learners\n",
"# Custom learners in Orange\n",
"Orange contains many learners which can be used to fit models for classification, regression and other tasks. But it is also very simple to write your own learner. To start, define a subclass of the `Orange.classification.Learner` base class and implement either one or both of the fit methods: `fit` works on data matrices represented as numpy arrays, while the more general `fit_storage` uses the encapsulating `Orange.data.Storage` object (or a subclass such as `Orange.data.Table`).\n",
"After the necessary computations, the learner should produce a fitted model object, derived from the `Orange.classification.Model` base class, which needs to implement `predict` or `predict_storage`."
]

0 comments on commit 734e3c8

Please sign in to comment.
You can’t perform that action at this time.