Learnings from 4 months of Image-Video VAE experiments
11–19 of 19 posts
Re: Learnings from 4 months of Image-Video VAE experiments
#12its cool to see the iterative improvements to your model laid out, but for everything that workedm i imagine there were at least a million other things you also tried but didnt work out. whats your process of trying these different techniques/architectures? do you just wait for one experiment to finish and visually inspect the results everytime. seems hard since these take a while to train. how do you shorten the fee…
Re: Learnings from 4 months of Image-Video VAE experiments
#13> Looking back, we should have just filtered out these samples from the dataset and moved on.
I hadn't even considered to look and see if poor data quality was resulting in an inability to recreate. This is a good gotchya to look out for. Appreciate the deep dive here!
Re: Learnings from 4 months of Image-Video VAE experiments
#14Re: Learnings from 4 months of Image-Video VAE experiments
#15Re: Learnings from 4 months of Image-Video VAE experiments
#16Hi HN, I’m one of the two authors of the post and the Linum v2 text-to-video model ( https://news.ycombinator.com/item?id=46721488 ). We're releasing our Image-Video VAE (open weights) and a deep dive on how we built it. Happy to answer questions about the work!
Not blaming you, but asking as I don’t usually have access to professionals working with video training.
Re: Learnings from 4 months of Image-Video VAE experiments
#17Hi HN, I’m one of the two authors of the post and the Linum v2 text-to-video model ( https://news.ycombinator.com/item?id=46721488 ). We're releasing our Image-Video VAE (open weights) and a deep dive on how we built it. Happy to answer questions about the work!
Great work! I have been wondering what would it take to train with higher image bit depth (10 or 12b) and/or using camera footage only, not already heavily processed images? The usefulness of video generation in most professional use cases is limited because models are too end to end and completely contaminated with stock footage. Maybe quantities of training material needed is simply not there? Not blaming you, but…
Re: Learnings from 4 months of Image-Video VAE experiments
#18Re: Learnings from 4 months of Image-Video VAE experiments
#19I've done some work in this area and here are my two cents:
1. Convolution-based architectures are terrible: I've trained Convolution based architectures and they were almost never scalable. Lately I've switched to transformer based AE and they are soo much better! We even managed to get Chinchilla-style scaling laws out of Transformer AE.
2. VAEs are terrible for downstream tasks: We've tried training Video diffusion models out of MAE and VAE (same architecture) and the MAE is hands down better.
3. This whole field is not science. There is no rigorous way of defining what a "good latent" really is. End-to-end methods (such as PixNerd) are the future, since they eliminate the need to hand-design and optimize the interface between separate components. That being said I've never seen a neural-field based video model and I've done some limited experiments on it with underwhelming results