Class SequenceContext<T>
- Assembly
- AiDotNet.dll
Context window for sequence modeling in Decision Transformer. Maintains recent states, actions, and returns-to-go for transformer input.
public class SequenceContext<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
SequenceContext<T>
- Inherited Members
Properties
Actions
public List<Vector<T>> Actions { get; set; }
Property Value
- List<Vector<T>>
Length
public int Length { get; }
Property Value
ReturnsToGo
public List<T> ReturnsToGo { get; set; }
Property Value
- List<T>
States
public List<Vector<T>> States { get; set; }
Property Value
- List<Vector<T>>