Enum Match3ObservationType
Type of observations to generate.
Namespace: Unity.MLAgents.Integrations.Match3
Syntax
public enum Match3ObservationType : int
Fields
Name | Description | Value |
---|---|---|
Vector | Generate a one-hot encoding of the cell type for each cell on the board. If there are special types, these will also be one-hot encoded. |
0 |
UncompressedVisual | Generate a one-hot encoding of the cell type for each cell on the board, but arranged as a Rows x Columns visual observation. If there are special types, these will also be one-hot encoded. |
1 |
CompressedVisual | Generate a one-hot encoding of the cell type for each cell on the board, but arranged as a Rows x Columns visual observation. If there are special types, these will also be one-hot encoded. During training, these will be sent as a concatenated series of PNG images, with 3 channels per image. |
2 |