(self, mllm, proj, image_paths=None, video_paths=None, audio_paths=None, text=None)
| 133 | DESCRIPTION = "mllm encode" |
| 134 | |
| 135 | def encode(self, mllm, proj, image_paths=None, video_paths=None, audio_paths=None, text=None): |
| 136 | # print(f"encode mllm: {mllm}") |
| 137 | conditioning = mllm.encode(proj, image_paths, video_paths, audio_paths, text) |
| 138 | return (conditioning,) |
| 139 | |
| 140 | |
| 141 | class ProjLoader: |
nothing calls this directly
no outgoing calls
no test coverage detected