From 61a9d1f47f5fa6f7693f4220df87f164b885dc26 Mon Sep 17 00:00:00 2001 From: mdymczyk Date: Wed, 19 Oct 2016 22:48:09 +0900 Subject: [PATCH] [SW-226] ROC curve rendered for SVM plots in Sparkling Water --- src/ext/components/model-output.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ext/components/model-output.coffee b/src/ext/components/model-output.coffee index 6188d53ff..75e57c740 100644 --- a/src/ext/components/model-output.coffee +++ b/src/ext/components/model-output.coffee @@ -470,7 +470,7 @@ H2O.ModelOutput = (_, _go, _model, refresh) -> if confusionMatrix = output.cross_validation_metrics?.cm?.table renderMultinomialConfusionMatrix 'Cross Validation Metrics - Confusion Matrix', confusionMatrix - when 'gbm', 'drf' + when 'gbm', 'drf', 'svm' if table = _.inspect 'output - Scoring History', _model if table.schema['validation_logloss'] and table.schema['training_logloss'] renderPlot 'Scoring History - logloss', no, _.plot (g) ->