Class: Google::Apis::LanguageV1beta2::XpsTablesClassificationMetricsCurveMetrics
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1beta2::XpsTablesClassificationMetricsCurveMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/language_v1beta2/classes.rb,
lib/google/apis/language_v1beta2/representations.rb,
lib/google/apis/language_v1beta2/representations.rb
Overview
Metrics curve data point for a single value.
Instance Attribute Summary collapse
-
#auc_pr ⇒ Float
The area under the precision-recall curve.
-
#auc_roc ⇒ Float
The area under receiver operating characteristic curve.
-
#confidence_metrics_entries ⇒ Array<Google::Apis::LanguageV1beta2::XpsTablesConfidenceMetricsEntry>
Metrics that have confidence thresholds.
-
#log_loss ⇒ Float
The Log loss metric.
-
#position_threshold ⇒ Fixnum
The position threshold value used to compute the metrics.
-
#value ⇒ String
The CATEGORY row value (for ARRAY unnested) the curve metrics are for.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsTablesClassificationMetricsCurveMetrics
constructor
A new instance of XpsTablesClassificationMetricsCurveMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsTablesClassificationMetricsCurveMetrics
Returns a new instance of XpsTablesClassificationMetricsCurveMetrics.
3895 3896 3897 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3895 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auc_pr ⇒ Float
The area under the precision-recall curve.
Corresponds to the JSON property aucPr
3867 3868 3869 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3867 def auc_pr @auc_pr end |
#auc_roc ⇒ Float
The area under receiver operating characteristic curve.
Corresponds to the JSON property aucRoc
3872 3873 3874 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3872 def auc_roc @auc_roc end |
#confidence_metrics_entries ⇒ Array<Google::Apis::LanguageV1beta2::XpsTablesConfidenceMetricsEntry>
Metrics that have confidence thresholds. Precision-recall curve and ROC curve
can be derived from them.
Corresponds to the JSON property confidenceMetricsEntries
3878 3879 3880 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3878 def confidence_metrics_entries @confidence_metrics_entries end |
#log_loss ⇒ Float
The Log loss metric.
Corresponds to the JSON property logLoss
3883 3884 3885 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3883 def log_loss @log_loss end |
#position_threshold ⇒ Fixnum
The position threshold value used to compute the metrics.
Corresponds to the JSON property positionThreshold
3888 3889 3890 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3888 def position_threshold @position_threshold end |
#value ⇒ String
The CATEGORY row value (for ARRAY unnested) the curve metrics are for.
Corresponds to the JSON property value
3893 3894 3895 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3893 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3900 3901 3902 3903 3904 3905 3906 3907 |
# File 'lib/google/apis/language_v1beta2/classes.rb', line 3900 def update!(**args) @auc_pr = args[:auc_pr] if args.key?(:auc_pr) @auc_roc = args[:auc_roc] if args.key?(:auc_roc) @confidence_metrics_entries = args[:confidence_metrics_entries] if args.key?(:confidence_metrics_entries) @log_loss = args[:log_loss] if args.key?(:log_loss) @position_threshold = args[:position_threshold] if args.key?(:position_threshold) @value = args[:value] if args.key?(:value) end |