Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
IObjective.cs
Go to the documentation of this file.
2 
3 namespace droid.Runtime.Interfaces {
7  public interface IObjective : IRegisterable {
11  float SolvedThreshold { get; set; }
12 
17  float Evaluate();
18 
22  void EnvironmentReset();
23 
27  int EpisodeLength { get; set; }
28 
32  Space1 SignalSpace { get; set; }
33  }
34 }