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
55
55
Wraps a NamedTuple containing multiple samplers. When sampled, returns a named tuple with a
56
56
batch from each sampler.
57
57
Used 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
+
58
62
59
63
# Example
60
64
```
@@ -80,6 +84,9 @@ export MultiBatchSampler
80
84
81
85
Wraps a sampler. When sampled, will sample n batches using sampler. Useful in combination
82
86
with 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.
83
90
84
91
# Example
85
92
```
You can’t perform that action at this time.
0 commit comments