File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,10 @@ export MetaSampler
5555Wraps a NamedTuple containing multiple samplers. When sampled, returns a named tuple with a
5656batch from each sampler.
5757Used internally for algorithms that sample multiple times per epoch.
58+ Note that a single "sampling" with a MetaSampler only increases the Trajectory controler
59+ count by 1, not by the number of internal samplers. This should be taken into account when
60+ initializing an agent.
61+
5862
5963# Example
6064```
@@ -80,6 +84,9 @@ export MultiBatchSampler
8084
8185Wraps a sampler. When sampled, will sample n batches using sampler. Useful in combination
8286with MetaSampler to allow different sampling rates between samplers.
87+ Note that a single "sampling" with a MultiBatchSampler only increases the Trajectory
88+ controler count by 1, not by `n`. This should be taken into account when
89+ initializing an agent.
8390
8491# Example
8592```
You can’t perform that action at this time.
0 commit comments