Source code for h2o.model.autoencoder

# -*- encoding: utf-8 -*-
"""
Autoencoder model.

:copyright: (c) 2016 H2O.ai
:license:   Apache License Version 2.0 (see LICENSE for details)
"""
from __future__ import absolute_import, division, print_function, unicode_literals
from h2o.utils.compatibility import *  # NOQA

import h2o
from .model_base import ModelBase


[docs]class H2OAutoEncoderModel(ModelBase):
[docs] def anomaly(self, test_data, per_feature=False): """Obtain the reconstruction error for the input test_data. Parameters ---------- test_data : H2OFrame The dataset upon which the reconstruction error is computed. per_feature : bool Whether to return the square reconstruction error per feature. Otherwise, return the mean square error. Returns ------- Return the reconstruction error. """ if test_data is None or test_data.nrow == 0: raise ValueError("Must specify test data") j = h2o.api("POST /3/Predictions/models/%s/frames/%s" % (self.model_id, test_data.frame_id), data={"reconstruction_error": True, "reconstruction_error_per_feature": per_feature}) return h2o.get_frame(j["model_metrics"][0]["predictions"]["frame_id"]["name"])