(input_images, n_new_frames, temperature=1.0, top_p=1.0)
| 204 | |
| 205 | @staticmethod |
| 206 | def generate_once(input_images, n_new_frames, temperature=1.0, top_p=1.0): |
| 207 | return _current_process_backend.generate_once(input_images, n_new_frames, temperature, top_p) |
| 208 | |
| 209 | @staticmethod |
| 210 | def compute_perplexity_once(input_images, target_images): |
nothing calls this directly
no test coverage detected