Sha256: 076dc60416dc88db77d260224806712854ba63d5caff70ed5f42ff50bc8412c9
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
require 'big_ml/base' module BigML class Evaluation < Base EVALUATION_PROPERTIES = [ :category, :code, :combiner, :created, :credits, :dataset, :dataset_status, :description, :dev, :ensemble, :fields_map, :locale, :max_rows, :missing_strategy, :model, :model_status, :model_type, :name, :number_of_models, :ordering, :out_of_bag, :private, :range, :replacement, :resource, :result, :rows, :sample_rate, :shared, :shared_hash, :sharing_key, :size, :status, :subscription, :tags, :threshold, :type, :updated ] attr_reader *EVALUATION_PROPERTIES class << self def create(model_or_ensemble, dataset, options = {}) arguments = { dataset: dataset } if model_or_ensemble.start_with? 'model' arguments[:model] = model_or_ensemble elsif model_or_ensemble.start_with? 'ensemble' arguments[:ensemble] = model_or_ensemble else raise ArgumentError, "Expected model or ensemble, got #{model_or_ensemble}" end response = client.post("/#{resource_name}", {}, arguments.merge(options)) self.new(response) if response.success? end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
big_ml-0.1.3 | lib/big_ml/evaluation.rb |