com.clarifai.grpc.api.LossCurveEntryOrBuilder 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 LossCurveEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.LossCurveEntry)
com.google.protobuf.MessageOrBuilder {
/**
*
* current epoch
*
*
* uint32 epoch = 1;
* @return The epoch.
*/
int getEpoch();
/**
*
* current global step
*
*
* uint32 global_step = 2;
* @return The globalStep.
*/
int getGlobalStep();
/**
*
* current cost
* FIXME(rigel): this should be loss instead of cost.
*
*
* float cost = 3;
* @return The cost.
*/
float getCost();
}