| 2351 | |
| 2352 | |
| 2353 | class BatchDataExt(NamedTuple): |
| 2354 | # バッチ分割が必要なデータ |
| 2355 | width: int |
| 2356 | height: int |
| 2357 | steps: int |
| 2358 | scale: float |
| 2359 | negative_scale: float |
| 2360 | strength: float |
| 2361 | network_muls: Tuple[float] |
| 2362 | num_sub_prompts: int |
| 2363 | |
| 2364 | |
| 2365 | class BatchData(NamedTuple): |
no outgoing calls
no test coverage detected