loss
LossOp
¶
Bases: TensorOp
Abstract base LossOp class.
A base class for loss operations. It can be used directly to perform value pass-through (see the adversarial training showcase for an example of when this is useful).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
inputs |
Union[None, str, Iterable[str]]
|
A tuple or list like: [ |
None
|
outputs |
Union[None, str, Iterable[str]]
|
String key under which to store the computed loss. |
None
|
mode |
Union[None, str, Iterable[str]]
|
What mode(s) to execute this Op in. For example, "train", "eval", "test", or "infer". To execute regardless of mode, pass None. To execute in all modes except for a particular one, you can pass an argument like "!infer" or "!train". |
'!infer'
|
ds_id |
Union[None, str, Iterable[str]]
|
What dataset id(s) to execute this Op in. To execute regardless of ds_id, pass None. To execute in all ds_ids except for a particular one, you can pass an argument like "!ds1". |
None
|
average_loss |
bool
|
Whether to average the element-wise loss after the Loss Op. |
True
|