Comments

You must log in or register to comment.

Classic-Rise4742 t1_itb7q7v wrote

My guess is that you didn’t remove the nsfw filter

12

_Yeet_xoxo t1_itb9484 wrote

If you get it to “predict” the next image it will give the mean image. This is because the previous image contains no information about the next image.

For image generation GAN modes and auto encoder models are the basic way to generate fake images.

After that I’m not sure how to extend it to a video context though.

5

thhvancouver OP t1_itba1on wrote

I’m just making a single picture now (got to be some picture after learning from 3.5gb of examples)

If I were to make a video, I suppose I could just try to get the same model to regenerate each frame of a sample video?

1

kolmiw t1_itba72s wrote

Well, if you get completely black images, then there is something fundamentally wrong. But even if it would work, you couldn’t expect so much from it regardless of the implementation, because it seems like you are trying to teach it to predict a transition pattern (even worse if its randomised). It also makes me wonder what your loss function was.

Either ways, as u/_Yeet_xoxo pointed out, you might want to give a try to gans

4

eyeswideshhh t1_itbaz4q wrote

Turn all image into latent space run pca on these latant variable and look if there is predictable pattern , if there is then decode it.

1

god_is_my_father t1_itbdyu3 wrote

There is a fundamental problem. Try having it predict an image after zero examples. This should give you a noisy image from the randomized seed. Then try after 100 examples, 1000, 10,000, etc. My guess is your input images are incorrect so it’s learning to predict all 0s or black. Is the accuracy super high?

1