Inference
// Sample from the distribution to select an action
const action = agent.selectAction(state);
// Get the probability distribution over actions
const probabilities = agent.getProbabilities(state);// Sample from the distribution to select an action
Dictionary<string, bool> action = Agent.SelectAction(state);
// Sample from the distribution to select an action
Dictionary<string, Matrix> probabilities = Agent.GetProbabilities(state);Last updated