All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clarifai.grpc.api.ThresholdRangeOrBuilder Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/resources.proto

package com.clarifai.grpc.api;

public interface ThresholdRangeOrBuilder extends
    // @@protoc_insertion_point(interface_extends:clarifai.api.ThresholdRange)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * The range used to filter over concept values.
   * e.g. GREATER_THAN_OR_EQUAL_TO 0.7 -> is_lower_inclusive = true, lower = 0.7, is_upper_inclusive = true, upper = 1.0
   * e.g. (0.3, 0.75] -> is_lower_inclusive = false, lower = 0.3, is_upper_inclusive = true, upper = 0.75
   * 
* * bool is_lower_inclusive = 1; * @return The isLowerInclusive. */ boolean getIsLowerInclusive(); /** * bool is_upper_inclusive = 2; * @return The isUpperInclusive. */ boolean getIsUpperInclusive(); /** * float lower = 3; * @return The lower. */ float getLower(); /** * float upper = 4; * @return The upper. */ float getUpper(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy