We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef6183 commit ae241a9Copy full SHA for ae241a9
examples/multimodal_video.py
@@ -31,10 +31,11 @@
31
greedy = True
32
33
model_directory = "/mnt/str/models/qwen2-vl-7b-instruct-exl2/6.0bpw"
34
+images_mask = os.path.join(os.path.dirname(os.path.abspath(__file__)), "media/test_video_*.png")
35
36
frames = [
37
{"file": f}
- for f in sorted(glob.glob("media/test_video_*.png"))
38
+ for f in sorted(glob.glob(images_mask))
39
]
40
41
instruction = "Describe this video."
0 commit comments