Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. AI cracked the Navier–Stokes challenge. What does that mean for physics?(nature.com ↗)
    discuss
  2. Machine Gods – the official podcast of the singularity(machinegods.fm ↗)
    discuss
  3. Cannabis Supply Chain Database(cannabis-supply-chain.pages.dev ↗)
    discuss
  4. AI insiders issue new warnings – including former Anthropic engineer Jacob Coxon(slashdot.org ↗)
    discuss
  5. Plan Advice in PostgreSQL 19(tapoueh.org ↗)
    discuss
  6. Prepare your iPhone 18 Pro Max to ship(support.apple.com ↗)
    discuss
  7. Bring back old Opus in Claude Code(osr.im ↗)
    1comments
  8. Alibaba open-sources AI model that can detect cancer and nearly 150 conditions(scmp.com ↗)
    discuss
  9. Swiss Federal Council Adopts the 2026 Security Policy Strategy(admin.ch ↗)
    discuss
  10. Jump N Bump(jumpnbump.net ↗)
    discuss
  11. Show HN: Do your vitamins work?(supplementdex.com ↗)
    1comments
  12. I've cross-examined a lot of humans, but never a supercomputer. Check it out(chatgpt.com ↗)
    discuss
  13. Show HN: Wcagent let use your ChatGPT subscription for coding(wcagent.ai ↗)
    discuss
  14. Omarchy team started working on Qualcomm's Snapdragon platform support(omarchy.org ↗)
    discuss
  15. Wildlife corridor project is first Canadian finalist for Earthshot Prize(cbc.ca ↗)
    1comments
  16. TypeSafe AI's Jev Is Not an LLM – and That May Be the Point(forkast.news ↗)
    discuss
  17. AI-based learning is a joke(qlain.online ↗)
    1comments
  18. What Is Synthetic Data Generation? A Simple Explainer(aptiv.com ↗)
    discuss
  19. The Working Class Face a 'Class Ceiling' in Elite Occupations(nytimes.com ↗)
    2comments
  20. Show HN: StopReg – Email API for detecting disposable email and signup abuse(stopreg.com ↗)
    discuss
  21. A New Risk for Mathematicians(twitter.com/shallit43 ↗)
    discuss
  22. Yongsan Electronics Market (Seoul)(wikipedia.org ↗)
    discuss
  23. Score Centering Stabilizes Off-Policy Reinforcement Learning(arxiv.org ↗)
    discuss
  24. The Other Way AI Impairs Our Thinking(theatlantic.com ↗)
    discuss
  25. Uber ordered to pay $40M over death of woman left on Southern California freeway(ktla.com ↗)
    discuss
  26. Unit Tests: Protecting Your Code from Being Poorly Handled by Others(yosefk.com ↗)
    discuss
  27. Analysis busts myths of Roman road network, offers insight into ancient world(cnn.com ↗)
    1comments
  28. U.S. Has Reached Security Deal on Greenland(nytimes.com ↗)
    1comments
  29. US gov website used AI search tool from China that FBI said copied Anthropic(reuters.com ↗)
    discuss
  30. Sony's First Computer(hackaday.com ↗)
    discuss

Show HN: Inkvec, Pareto frontier in-browser vectorizer (Open Source)

1 pointsby 56m agogithub.com
3 comments
56m agoHN ↗

Novel engineering contribution implementing several papers to improve the quality of raster-to-vector conversion.

From our internal testing, it's the open-source SoTA, surpassed only by vectorizer.ai.

It is built in Rust, has a wasm based version you can play with, and 2 models (one for SR, one for denoising) to help it work better with in-the-wild images.

https://huggingface.co/spaces/Logolabs/inkvec

54m agoHN ↗

Really nice work. Curious how much of the quality gain comes from the SR/denoising models vs the vectorization algorithm itself?

44m agoHN ↗

On PNGs, the benefit is smaller and mainly perceptual. dE00 actually decreases with the SR model but perceptual quality increases especially if the original raster was very low resolution.

On JPEGs or other lossy compression inputs, both models help significantly. They've been trained with slightly different objectives. The SR one uses standard SR loss (with extra weighting near borders), the denoiser is trained to enforce the axioms that the vectorizer uses so it's the one that's recommended for production.

I haven't tried running both at the same time, but it might be worth experimenting. Both are open weight so you can check yourself if curious.

https://huggingface.co/Logolabs/inkvec-denoiser-001 https://huggingface.co/Logolabs/inkvec-sr-001