{% from sklearn.utils import estimator_html_repr %} {% import json %} {{ handler.name }}

MLHandler

This is a sample Tornado tempate for MLHandler. It exposes the following variables:

You can write your own template, and specify it as the template argument of your MLHandler configuration. The above variables will be available to any such template.


Training Data:

The following table shows your training data.


The Model:

{% raw estimator_html_repr(handler.model) %}

Your model is a {{ handler.model.__class__.__name__ }}, with the following parameters:

{{ handler.model.get_params() }}

Download the model here.