Skip to content

Commit

Permalink
allow all 10k images for ffhq
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenst committed Jul 22, 2020
1 parent 56d34a3 commit 353fcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/programs/ffhq-generated.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const duration = 0.5
const repetitions = 1
const scaleX = 1.1
const scaleY = 1.1
let images = [...Array(100).keys()].map(x => String(x).padStart(4,"0"))
let images = [...Array(10000).keys()].map(x => String(x).padStart(4,"0"))

// First 5000 images only
// images = images.slice(0,5000)
Expand Down

0 comments on commit 353fcc0

Please sign in to comment.