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

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

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

package com.clarifai.grpc.api;

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

  /**
   * 
   * Supported dimensions
   * Example: [-1,4] is a 2-dimensional array with the first dimension of variablesize, but second dimension with a static size: [[1,2,3,4],[4,5,6,7],...]
   * 
* * repeated int32 dims = 1; * @return A list containing the dims. */ java.util.List getDimsList(); /** *
   * Supported dimensions
   * Example: [-1,4] is a 2-dimensional array with the first dimension of variablesize, but second dimension with a static size: [[1,2,3,4],[4,5,6,7],...]
   * 
* * repeated int32 dims = 1; * @return The count of dims. */ int getDimsCount(); /** *
   * Supported dimensions
   * Example: [-1,4] is a 2-dimensional array with the first dimension of variablesize, but second dimension with a static size: [[1,2,3,4],[4,5,6,7],...]
   * 
* * repeated int32 dims = 1; * @param index The index of the element to return. * @return The dims at the given index. */ int getDims(int index); /** *
   * Max dimension size, applicable to layers that can have flexible sizes.
   * 
* * repeated int32 max_dims = 2; * @return A list containing the maxDims. */ java.util.List getMaxDimsList(); /** *
   * Max dimension size, applicable to layers that can have flexible sizes.
   * 
* * repeated int32 max_dims = 2; * @return The count of maxDims. */ int getMaxDimsCount(); /** *
   * Max dimension size, applicable to layers that can have flexible sizes.
   * 
* * repeated int32 max_dims = 2; * @param index The index of the element to return. * @return The maxDims at the given index. */ int getMaxDims(int index); /** *
   * The triton data type
   * 
* * .clarifai.api.DataType data_type = 3; * @return The enum numeric value on the wire for dataType. */ int getDataTypeValue(); /** *
   * The triton data type
   * 
* * .clarifai.api.DataType data_type = 3; * @return The dataType. */ com.clarifai.grpc.api.DataType getDataType(); /** *
   * Description about the dimensions
   * 
* * string description = 4; * @return The description. */ java.lang.String getDescription(); /** *
   * Description about the dimensions
   * 
* * string description = 4; * @return The bytes for description. */ com.google.protobuf.ByteString getDescriptionBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy