您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
598 B
25 行
598 B
using System;
|
|
using MLAgents.InferenceBrain;
|
|
using UnityEngine;
|
|
|
|
namespace MLAgents.Sensor
|
|
{
|
|
public struct CompressedObservation
|
|
{
|
|
/// <summary>
|
|
/// The compressed data.
|
|
/// </summary>
|
|
public byte[] Data;
|
|
|
|
/// <summary>
|
|
/// The format of the compressed data
|
|
/// </summary>
|
|
public CompressionType CompressionType;
|
|
|
|
/// <summary>
|
|
/// The uncompressed dimensions of the data.
|
|
/// E.g. for RGB visual observations, this will be {Width, Height, 3}
|
|
/// </summary>
|
|
public int[] Shape;
|
|
}
|
|
}
|