Live data from Hacker News

Apple Releases Open Weights Video Model

starflow-v.github.io

21–30 of 178 posts

Re: Apple Releases Open Weights Video Model

#21
post #7

Earlier quoted context omitted.

> As a blind person, AI has changed my life. Something one doesn't see in news headlines. Happy to see this comment.

+1 and I would be curious to read and learn more about it.

If you want to see more on this topic, check out (google) the podcast I co-host called Accessibility and Gen. AI.

Re: Apple Releases Open Weights Video Model

#22
post #11
post #10

Looking at text to video examples ( https://starflow-v.github.io/#text-to-video ) I'm not impressed. Those gave me the feeling of the early Will Smith noodles videos. Did I miss anything?

These are ~2 years behind state of the art from the looks of it. Still cool that they're releasing anything that's open for researchers to play with, but it's nothing groundbreaking.

No, it is not as good as Veo, but better than Grok, I would say. Definitely better than what was available 2 years ago. And it is only a 7B research model!

Re: Apple Releases Open Weights Video Model

#24
post #7

Apple has a video understanding model too. I can't wait to find out what accessibility stuff they'll do with the models. As a blind person, AI has changed my life.

> As a blind person, AI has changed my life. Something one doesn't see in news headlines. Happy to see this comment.

> Something one doesn't see in news headlines.

I hope this wasn't a terrible pun

Re: Apple Releases Open Weights Video Model

#25
post #23

"VAE: WAN2.2-VAE" so it's just a Wan2.2 edit, compressed to 7B.

They used the VAE of WAN like many other models do. For image models you see a lot of them using the flux VAE. Which is perfectly fine, they are released as apache2 and save you time to focus on your transformers architecture...

Re: Apple Releases Open Weights Video Model

#26

Earlier quoted context omitted.

I guess that auto-generated audio descriptions for (almost?) any video you want is a very, very nice feature for a blind person.

My two cents, this seems like a case where it’s better to wait for the person’s response instead of guessing.

Fair enough. Anyway I wasn't trying to say what actually changed GP's life, I was just expressing my opinion on what video models could potentially bring as an improvement to a blind person.

Re: Apple Releases Open Weights Video Model

#27

Apple has a video understanding model too. I can't wait to find out what accessibility stuff they'll do with the models. As a blind person, AI has changed my life.

Can you share some ways AI has changed your life?

Not the gp, but currently reading a web novel with a card game where the author didn't include alt text in the card images. I contacted them about it and they started, but in the meantime ai was a big help. all kinds of other images on the internet as well when they are significant to understanding the surrounding text. better search experience when Google, DDG, and the like make finding answers difficult. I might use smart glasses for better outdoor orientation, though a good solution might take some time. phone camera plus ai is also situationally useful.

Re: Apple Releases Open Weights Video Model

#28
post #18
post #11

Earlier quoted context omitted.

These are ~2 years behind state of the art from the looks of it. Still cool that they're releasing anything that's open for researchers to play with, but it's nothing groundbreaking.

But 7b is rather small no? Are other open weight video models also this small? Can this run on a single consumer card?

Wan 2.2: "This generation was run on an RTX 3060 (12 GB VRAM) and took 900 seconds to complete at 840 × 420 resolution, producing 81 frames." https://www.nextdiffusion.ai/tutorials/how-to-run-wan22-imag...

Re: Apple Releases Open Weights Video Model

#29
post #23

"VAE: WAN2.2-VAE" so it's just a Wan2.2 edit, compressed to 7B.

This doesn't necessarily mean that it's Wan2.2. People often don't train their own VAEs and just reuse an existing one, because a VAE isn't really what's doing the image generation part.

A little bit more background for those who don't know what a VAE is (I'm simplifying here, so bear with me): it's essentially a model which turns raw RGB images into a something called a "latent space". You can think of it as a fancy "color" space, but on steroids.

There are two main reasons for this: one is to make the model which does the actual useful work more computationally efficient. VAEs usually downscale the spatial dimensions of the images they ingest, so your model now instead of having to process a 1024x1024 image needs to work on only a 256x256 image. (However they often do increase the number of channels to compensate, but I digress.)

The other reason is that, unlike raw RGB space, the latent space is actually a higher level representation of the image.

Training a VAE isn't the most interesting part of image models, and while it is tricky, it's done entirely in an unsupervised manner. You give the VAE an RGB image, have it convert it to latent space, then have it convert it back to RGB, you take a diff between the input RGB image and the output RGB image, and that's the signal you use when training them (in reality it's a little more complex, but, again, I'm simplifying here to make the explanation more clear). So it makes sense to reuse them, and concentrate on the actually interesting parts of an image generation model.

Post reply on HN