您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
59 行
1.8 KiB
59 行
1.8 KiB
using MLAgents.Sensors;
|
|
|
|
namespace MLAgentsExamples
|
|
{
|
|
/// <summary>
|
|
/// A simple sensor that provides a number default implementations.
|
|
/// </summary>
|
|
public abstract class SensorBase : ISensor
|
|
{
|
|
/// <summary>
|
|
/// Write the observations to the output buffer. This size of the buffer will be product
|
|
/// of the sizes returned by <see cref="GetObservationShape"/>.
|
|
/// </summary>
|
|
/// <param name="output"></param>
|
|
public abstract void WriteObservation(float[] output);
|
|
|
|
/// <inheritdoc/>
|
|
public abstract int[] GetObservationShape();
|
|
|
|
/// <inheritdoc/>
|
|
public abstract string GetName();
|
|
|
|
/// <summary>
|
|
/// Default implementation of Write interface. This creates a temporary array,
|
|
/// calls WriteObservation, and then writes the results to the WriteAdapter.
|
|
/// </summary>
|
|
/// <param name="adapter"></param>
|
|
/// <returns>The number of elements written.</returns>
|
|
public virtual int Write(WriteAdapter adapter)
|
|
{
|
|
// TODO reuse buffer for similar agents, don't call GetObservationShape()
|
|
var numFloats = this.ObservationSize();
|
|
float[] buffer = new float[numFloats];
|
|
WriteObservation(buffer);
|
|
|
|
adapter.AddRange(buffer);
|
|
|
|
return numFloats;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Update() {}
|
|
|
|
/// <inheritdoc/>
|
|
public void Reset() { }
|
|
|
|
/// <inheritdoc/>
|
|
public virtual byte[] GetCompressedObservation()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public virtual SensorCompressionType GetCompressionType()
|
|
{
|
|
return SensorCompressionType.None;
|
|
}
|
|
}
|
|
}
|