basic_batcher
optimus_dl.modules.data.transforms.basic_batcher
¶
BasicBatcher
¶
Bases: BaseTransform
Transform that aggregates sequences and dynamically pads them.
Unlike the flat batcher which packs tokens to minimize padding, this
batcher keeps documents separate and pads shorter documents with a
designated pad_token_id to match the longest document in the batch.
It yields a dictionary containing the batched items and a seq_lens
tensor recording the actual unpadded lengths of the batch.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cfg
|
BasicBatcherConfig
|
Batching configuration. |
required |
Source code in optimus_dl/modules/data/transforms/basic_batcher.py
BasicBatcherConfig
dataclass
¶
Bases: RegistryConfigStrict
Configuration for basic token batching with dynamic padding.
Attributes:
| Name | Type | Description |
|---|
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch_size
|
int | None
|
|
None
|
max_tokens
|
int | None
|
|
None
|
pad_token_id
|
int
|
|
'???'
|
field
|
str
|
|
'input_ids'
|
flatten
|
bool
|
|
False
|
Source code in optimus_dl/modules/data/transforms/basic_batcher.py
BasicBatcherNode
¶
Bases: BaseNode
Internal node for performing dynamic padding and batching.
Accumulates sequences from the source node up to the specified batch size or token limit, finds the maximum sequence length within that batch, and pads all sequences to match that length (or flattens them).
Source code in optimus_dl/modules/data/transforms/basic_batcher.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | |
get_state()
¶
Collect source state for checkpointing.
next()
¶
Yield the next complete batch of padded tokens and their original lengths.
Source code in optimus_dl/modules/data/transforms/basic_batcher.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | |
reset(initial_state=None)
¶
Restore source node state.