Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// 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();
/**
*