| 2338 | |
| 2339 | |
| 2340 | class BatchDataBase(NamedTuple): |
| 2341 | # バッチ分割が必要ないデータ |
| 2342 | step: int |
| 2343 | prompt: str |
| 2344 | negative_prompt: str |
| 2345 | seed: int |
| 2346 | init_image: Any |
| 2347 | mask_image: Any |
| 2348 | clip_prompt: str |
| 2349 | guide_image: Any |
| 2350 | raw_prompt: str |
| 2351 | |
| 2352 | |
| 2353 | class BatchDataExt(NamedTuple): |
no outgoing calls
no test coverage detected