- VariableActionBootstrapExplorer<T extends VariableActionContext> - Class in com.mwt.explorers
-
The Bootstrap explorer randomizes over the actions chosen by a set of default policies.
- VariableActionBootstrapExplorer(List<Policy<T>>) - Constructor for class com.mwt.explorers.VariableActionBootstrapExplorer
-
- VariableActionContext - Interface in com.mwt.contexts
-
Represents a context interface with variable number of actions which is
enforced if exploration algorithm is initialized in variable number of actions mode.
- VariableActionEpsilonGreedyExplorer<T extends VariableActionContext> - Class in com.mwt.explorers
-
The epsilon greedy exploration algorithm.
- VariableActionEpsilonGreedyExplorer(Policy<T>, float) - Constructor for class com.mwt.explorers.VariableActionEpsilonGreedyExplorer
-
The constructor
- VariableActionGenericExplorer<T extends VariableActionContext> - Class in com.mwt.explorers
-
GenericExplorer provides complete flexibility.
- VariableActionGenericExplorer(Scorer<T>) - Constructor for class com.mwt.explorers.VariableActionGenericExplorer
-
Constructor
- VariableActionSoftmaxExplorer<T extends VariableActionContext> - Class in com.mwt.explorers
-
In some cases, different actions have a different scores, and you would prefer to
choose actions with large scores.
- VariableActionSoftmaxExplorer(Scorer<T>, float) - Constructor for class com.mwt.explorers.VariableActionSoftmaxExplorer
-
Constructor
- VariableActionTauFirstExplorer<T extends VariableActionContext> - Class in com.mwt.explorers
-
The tau-first explorer collects exactly tau uniform random exploration events, and then
uses the default policy thereafter.
- VariableActionTauFirstExplorer(Policy<T>, int) - Constructor for class com.mwt.explorers.VariableActionTauFirstExplorer
-
The constructor