this post was submitted on 31 Oct 2023
1 points (100.0% liked)

Machine Learning

1 readers
1 users here now

Community Rules:

founded 2 years ago
MODERATORS
 

There's a lot of image generators that'll allow you to generate multiple images based on the input data. Is there something that'll generate an image that's an average of the trained model instead?

Didn't plan on using machine learning for this project but realized it might be an interesting path to explore.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] nikgeo25@alien.top 1 points 2 years ago (1 children)

If the model has the following format:

Encoder, diffusion in latent space, decoder

you can average the embedding right before the decoder. Just make sure your averaging is of a representation that can be meaningfully averaged. E.g. averaging images would result in garbage, but their corresponding embeddings might provide something useful.

[โ€“] max_b_jo@alien.top 1 points 2 years ago

Yup, it's pretty possible that the generated image will result in pure garbage. But it's worth exploring and might be a nice visualization!