com.clarifai.grpc.api.ModelLayerInfoOrBuilder 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 ModelLayerInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.ModelLayerInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* The api.Data field this layer will be parsed into
*
*
* string data_field_name = 1;
* @return The dataFieldName.
*/
java.lang.String getDataFieldName();
/**
*
* The api.Data field this layer will be parsed into
*
*
* string data_field_name = 1;
* @return The bytes for dataFieldName.
*/
com.google.protobuf.ByteString
getDataFieldNameBytes();
/**
*
* Description of the expected shape. Can support multiple support layer shapes.
*
*
* repeated .clarifai.api.LayerShape shapes = 2;
*/
java.util.List
getShapesList();
/**
*
* Description of the expected shape. Can support multiple support layer shapes.
*
*
* repeated .clarifai.api.LayerShape shapes = 2;
*/
com.clarifai.grpc.api.LayerShape getShapes(int index);
/**
*
* Description of the expected shape. Can support multiple support layer shapes.
*
*
* repeated .clarifai.api.LayerShape shapes = 2;
*/
int getShapesCount();
/**
*
* Description of the expected shape. Can support multiple support layer shapes.
*
*
* repeated .clarifai.api.LayerShape shapes = 2;
*/
java.util.List extends com.clarifai.grpc.api.LayerShapeOrBuilder>
getShapesOrBuilderList();
/**
*
* Description of the expected shape. Can support multiple support layer shapes.
*
*
* repeated .clarifai.api.LayerShape shapes = 2;
*/
com.clarifai.grpc.api.LayerShapeOrBuilder getShapesOrBuilder(
int index);
/**
*
* Brief description about the layer if needed
*
*
* string description = 3;
* @return The description.
*/
java.lang.String getDescription();
/**
*
* Brief description about the layer if needed
*
*
* string description = 3;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
/**
*
* Whether this layer should have a label_filename specified and provided
*
*
* bool requires_label_filename = 4;
* @return The requiresLabelFilename.
*/
boolean getRequiresLabelFilename();
}