惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
博客园_首页
The GitHub Blog
The GitHub Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
D
Docker
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
小众软件
小众软件
I
InfoQ
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor GitHub - GenAI-Gurus/awesome-eu-ai-act: Curated tools, official sources, OSS, templates, and guides for EU AI Act compliance. Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge
Is SVG the final frontier?
2026-04-11 · via Hacker News - Newest: "AI"

Vectorizing images is the process of taking a bunch of pixels and converting them to a shape-based representation. This has the benefit of being able to scale infinitely as we're able to render a shape at arbitrary sizes. In the context of websites it can also offer the benefit of smaller file sizes and animatable graphics.

Approximating pixels into textual representation of shapes (that are often stored as SVGs) seems like a natural task for LLMs. They are masters of token generation and are increasingly capable of performing more and more complex tasks. They are able to manipulate entire codebases while keeping internal consistency and code styling, updating unit tests as they go and implementing new features. But generating vector graphics has proven to be quite the challenge for them.

Some people, mostly jokingly, have taken it as far as claiming SVG generation is the final frontier for AI. It most likely isn't, but it's also just not (currently) very good at it. Simon Willison illustrates this with his canonical Pelicans on bicycles. Despite gaining popularity and being public on the internet for a while, AI hasn't meaningfully improved at drawing pelicans. There's some progress for sure, but you're not likely to use it in your website or your next logo. This is in stark contrast to almost every other benchmark out there that LLMs have been saturating faster than we can create them.

Where we have seen incredible progress is in raster pixel-based image generation. Major advances came with the rise of Diffusion models. In what seems like almost a polar opposite, diffusion models denoise a latent or pixel representation over many steps. We start out with noise and gradually adjust the pixels until an image emerges. Popularized with models like Stable Diffusion and FLUX, these models are now part of very capable systems like Google's Nano Banana, enabling the generation of a wide variety of images while accurately following the user's prompt and supporting edits to just the relevant areas.

With the great success of these pixel based image generation models, vector based generation has taken a back seat. That's not to say that there aren't interesting directions being explored. One approach, LLM4SVG for example aims to teach LLMs about SVGs by explicitly encoding them as semantic tokens. StarVector and OmniSVG attempt to harness the power of VLM (Vision Language Model) to support SVG natively with different nuances.

Ultimately though, these remain as research projects and haven't broadly found their way to production. Either due to extremely slow processing time or low quality results, usually both. For users looking to create vector graphics from prompts, the best results are currently achieved by using the best image models available coupled with the best image vectorizers in a two-step process. This is why we decided to focus on this problem space now.

In a sense, modern image models have made vectorization even more valuable. In the future, some vectorization techniques may be absorbed into foundation models themselves, and with enough progress, models may eventually become much better at native vector-graphics understanding and generation. But for now, for users who want to bring the power of AI to vector graphics, the most practical path remains a two-step one.