beam_constraints
mindnlp.transformers.generation.beam_constraints
¶
Beam constraints
mindnlp.transformers.generation.beam_constraints.Constraint
¶
Bases: ABC
Abstract base class for all constraints that can be applied during generation. It must define how the constraint can be satisfied.
All classes that inherit Constraint must follow the requirement that
completed = False
while not completed:
_, completed = constraint.update(constraint.advance())
will always terminate (halt).
Source code in mindnlp\transformers\generation\beam_constraints.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 | |
mindnlp.transformers.generation.beam_constraints.Constraint.advance()
abstractmethod
¶
When called, returns the token that would take this constraint one step closer to being fulfilled.
Return
token_ids(torch.tensor): Must be a tensor of a list of indexable tokens, not some integer.
Source code in mindnlp\transformers\generation\beam_constraints.py
65 66 67 68 69 70 71 72 73 74 75 | |
mindnlp.transformers.generation.beam_constraints.Constraint.copy(stateful=False)
abstractmethod
¶
Creates a new instance of this constraint.
| PARAMETER | DESCRIPTION |
|---|---|
stateful(`bool`)
|
Whether to not only copy the constraint for new instance, but also its state.
|
Return
constraint(Constraint): The same constraint as the one being called from.
Source code in mindnlp\transformers\generation\beam_constraints.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 | |
mindnlp.transformers.generation.beam_constraints.Constraint.does_advance(token_id)
abstractmethod
¶
Reads in a token and returns whether it creates progress.
Source code in mindnlp\transformers\generation\beam_constraints.py
77 78 79 80 81 82 83 84 | |
mindnlp.transformers.generation.beam_constraints.Constraint.remaining()
abstractmethod
¶
Returns the number of remaining steps of advance() in order to complete this constraint.
Source code in mindnlp\transformers\generation\beam_constraints.py
121 122 123 124 125 126 127 128 | |
mindnlp.transformers.generation.beam_constraints.Constraint.reset()
abstractmethod
¶
Resets the state of this constraint to its initialization. We would call this in cases where the fulfillment of a constraint is abrupted by an unwanted token.
Source code in mindnlp\transformers\generation\beam_constraints.py
111 112 113 114 115 116 117 118 119 | |
mindnlp.transformers.generation.beam_constraints.Constraint.test()
¶
Tests whether this constraint has been properly defined.
Source code in mindnlp\transformers\generation\beam_constraints.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
mindnlp.transformers.generation.beam_constraints.Constraint.update(token_id)
abstractmethod
¶
Reads in a token and returns booleans that indicate the progress made by it. This function will update the
state of this object unlikes does_advance(self, token_id: int).
This isn't to test whether a certain token will advance the progress; it's to update its state as if it has been generated. This becomes important if token_id != desired token (refer to else statement in PhrasalConstraint)
| PARAMETER | DESCRIPTION |
|---|---|
token_id(`int`)
|
The id of a newly generated token in the beam search.
|
Source code in mindnlp\transformers\generation\beam_constraints.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |
mindnlp.transformers.generation.beam_constraints.ConstraintListState
¶
A class for beam scorers to track its progress through a list of constraints.
| PARAMETER | DESCRIPTION |
|---|---|
constraints
|
A list of [
TYPE:
|
Source code in mindnlp\transformers\generation\beam_constraints.py
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 | |
mindnlp.transformers.generation.beam_constraints.ConstraintListState.advance()
¶
The list of tokens to generate such that we can make progress. By "list" we don't mean the list of token that will fully fulfill a constraint.
Given constraints c_i = {t_ij | j == # of tokens}, If we're not in the middle of progressing through a
specific constraint c_i, we return:
[t_k1 for k in indices of unfulfilled constraints]
If we are in the middle of a constraint, then we return:
[t_ij], where i is the index of the inprogress constraint, j is the next step for the constraint.
Though we don't care which constraint is fulfilled first, if we are in the progress of fulfilling a constraint, that's the only one we'll return.
Source code in mindnlp\transformers\generation\beam_constraints.py
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | |
mindnlp.transformers.generation.beam_constraints.ConstraintListState.reset(token_ids)
¶
Source code in mindnlp\transformers\generation\beam_constraints.py
435 436 437 438 439 440 441 442 443 444 445 446 447 448 | |
mindnlp.transformers.generation.beam_constraints.DisjunctiveConstraint
¶
Bases: Constraint
A special [Constraint] that is fulfilled by fulfilling just one of several constraints.
| PARAMETER | DESCRIPTION |
|---|---|
nested_token_ids
|
A list of words, where each word is a list of ids. This constraint is fulfilled by generating just one from the list of words.
TYPE:
|
Source code in mindnlp\transformers\generation\beam_constraints.py
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | |
mindnlp.transformers.generation.beam_constraints.DisjunctiveTrie
¶
Source code in mindnlp\transformers\generation\beam_constraints.py
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | |
mindnlp.transformers.generation.beam_constraints.DisjunctiveTrie.__init__(nested_token_ids, no_subsets=True)
¶
A helper class that builds a trie with the words represented in nested_token_ids.
Source code in mindnlp\transformers\generation\beam_constraints.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | |
mindnlp.transformers.generation.beam_constraints.DisjunctiveTrie.has_subsets(trie, nested_token_ids)
¶
Returns whether # of leaves == # of words. Otherwise some word is a subset of another.
Source code in mindnlp\transformers\generation\beam_constraints.py
270 271 272 273 274 275 | |
mindnlp.transformers.generation.beam_constraints.DisjunctiveTrie.next_tokens(current_seq)
¶
The next possible tokens that will progress the trie, given the current sequence of tokens in current_seq.
Source code in mindnlp\transformers\generation\beam_constraints.py
245 246 247 248 249 250 251 252 253 254 255 256 | |
mindnlp.transformers.generation.beam_constraints.PhrasalConstraint
¶
Bases: Constraint
[Constraint] enforcing that an ordered sequence of tokens is included in the output.
| PARAMETER | DESCRIPTION |
|---|---|
token_ids
|
The id of the token that must be generated by the output.
TYPE:
|
Source code in mindnlp\transformers\generation\beam_constraints.py
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 | |