SmartEngine  1.6.0
Public Member Functions | Public Attributes | List of all members
SmartEngine::LossCInfo Struct Reference

Data used to construct an ILoss instance More...

#include <Loss.h>

Inheritance diagram for SmartEngine::LossCInfo:
SmartEngine::GraphNodeCInfo

Public Member Functions

 LossCInfo ()
 

Public Attributes

IGraphNodenetworkOutput = nullptr
 The output of the network. This is the actual value in the loss calculation. Usually a NeuralNetwork or ConcatNode is passed in. More...
 
IGraphNodetargetValues = nullptr
 The output to compare against. This is the expected value in the loss calculation. Usually a BufferInput is passed in. More...
 
- Public Attributes inherited from SmartEngine::GraphNodeCInfo
const char * name = nullptr
 The name of this node. More...
 
IContextcontext = nullptr
 Context this node belongs to. Only graph nodes of the same context can be connected. More...
 

Detailed Description

Data used to construct an ILoss instance

Constructor & Destructor Documentation

◆ LossCInfo()

SmartEngine::LossCInfo::LossCInfo ( )

Member Data Documentation

◆ networkOutput

IGraphNode* SmartEngine::LossCInfo::networkOutput = nullptr

The output of the network. This is the actual value in the loss calculation. Usually a NeuralNetwork or ConcatNode is passed in.

◆ targetValues

IGraphNode* SmartEngine::LossCInfo::targetValues = nullptr

The output to compare against. This is the expected value in the loss calculation. Usually a BufferInput is passed in.