Skip to content

Commit 8f41cbc

Browse files
Merge pull request #459 from Stability-AI/chunhanyao-sv4d2
SV4D 2.0 bug fix
2 parents 0ad7de9 + f87e52e commit 8f41cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/sampling/simple_video_sample_4d2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def sample(
186186
v0 = 0
187187
view_indices = np.arange(V) + 1
188188
t0_list = (
189-
range(0, n_frames, T)
189+
range(0, n_frames, T-1)
190190
if sv4d2_model == "sv4d2"
191191
else range(0, n_frames - T + 1, T - 1)
192192
)

0 commit comments

Comments
 (0)