Marco Pedersoli

25 posts

Marco Pedersoli banner
Marco Pedersoli

Marco Pedersoli

@marcopeddy

Canada Katılım Mayıs 2011
121 Takip Edilen27 Takipçiler
Petar Veličković
Petar Veličković@PetarV_93·
can llms reliably roll the dice? 🎲 we shed new light on stochasticity limitations of llms, discussing some ways in which things can improve: tools, prngs, and 'just giving a random number to the model™' great work from @gu_xiangming while being a student researcher with us 🚀
Petar Veličković tweet media
English
7
22
134
18.6K
Marco Pedersoli
Marco Pedersoli@marcopeddy·
@francoisfleuret I fully agree. And the space of not understandable reality it's probably much larger, but we cannot see it
English
0
0
0
2.8K
Mihir Prabhudesai
Mihir Prabhudesai@mihirp98·
🚨 The era of infinite internet data is ending, So we ask: 👉 What’s the right generative modelling objective when data—not compute—is the bottleneck? TL;DR: ▶️Compute-constrained? Train Autoregressive models ▶️Data-constrained? Train Diffusion models Get ready for 🤿 1/n
Mihir Prabhudesai tweet media
English
126
192
1.2K
247.2K
Heitor Rapela
Heitor Rapela@HeitorRapela·
Finally, I was able to finish #ICCV reviews (@ICCVConference ) 😎 Now, towards the end of my Ph.D. I am much more confident about the quality of the reviews and feedback. I hope that the community can benefit from the comments.
English
1
0
13
1.6K
Heitor Rapela
Heitor Rapela@HeitorRapela·
Today we presented our project: The Role of Language in Knowledge Distillation from VLM, in the VLM course at @Mila_Quebec We had interesting finds on prompt learning, data aug, and rank loss for robust OOD distill. #AI #VLMs #ML #CV #KnowledgeDistillation
Heitor Rapela tweet media
English
1
0
3
208
Marco Pedersoli retweetledi
Gradio
Gradio@Gradio·
StarVector is a multimodal vision-language model for generating SVG (Scalable Vector Graphics) Performs image2SVG and text2SVG generation. 🤗 Gradio app is live! The video demonstrates how image generation is treated similarly to code generation task by StarVector MVLM! 🤩
English
2
27
141
8.5K
Marco Pedersoli retweetledi
AK
AK@_akhaliq·
StarVector is out on Hugging Face StarVector is a foundation model for generating Scalable Vector Graphics (SVG) code from images and text. It utilizes a Vision-Language Modeling architecture to understand both visual and textual inputs, enabling high-quality vectorization and text-guided SVG creation.
English
55
492
3.3K
254.3K
Marco Pedersoli retweetledi
Joan Rodriguez
Joan Rodriguez@joanrod_ai·
I’m excited to announce that 💫StarVector has been accepted at CVPR 2025! Over a year in the making, StarVector opens a new paradigm for Scalable Vector Graphics (SVG) generation by harnessing multimodal LLMs to generate SVG code that aesthetically mirrors input images and text. With this milestone, we’re also releasing StarVector on Hugging Face! 🥳🚀
English
12
57
177
16.3K
Marco Pedersoli retweetledi
Joan Rodriguez
Joan Rodriguez@joanrod_ai·
🎉 Excited to introduce BigDocs! An open, transparent multimodal dataset designed for: 📄 Documents 🌐 Web content 🖥️ GUI understanding 👨‍💻 Code generation from images We’re also launching BigDocs-Bench, featuring 10 tasks to test models on: ➡️ Document, Web, GUI Visual reasoning ➡️ Converting images into JSON, Markdown, LaTeX, SVG, and more! 📜 Paper: arxiv.org/pdf/2412.04626 huggingface.co/papers/2412.04… 🌍 Website bigdocs.github.io
Joan Rodriguez tweet media
English
2
41
95
23K
Jack Morris
Jack Morris@jxmnop·
people should be doing multiple LLM forward passes with the same weights feels like you could get a lot more for same model size. and this is all differentiable, so training this way is trivial surely diffusion models aren't the only way to successfully reuse representations?
Jack Morris tweet media
English
31
11
385
44.8K
Max Welling
Max Welling@wellingmax·
It seems Global Warming is already fact. Indeed we should spend serious €€ to minimize & mitigate consequences. Instead we will wait until chaos ensues and then we will vote right wing power hungry opportunists with simple solutions to power. And we all know what happens next.
Frank Noe@FrankNoeBerlin

Brilliant

English
2
3
63
15.2K
Yann LeCun
Yann LeCun@ylecun·
This leaves out a bunch of prior innovations that *clearly* inspired the transformer authors. Chief among them is the whole idea of attention, which was popularized by "Neural Machine Translation by Jointly Learning to Align and Translate" by @DBahdanau, @kchonyc, and Yoshua Bengio posted in September 2014. This is the paper that started the attention craze: arxiv.org/abs/1409.0473 Self-attention is a clever trick which uses similarities between all pairs of inputs. This makes the network care about relationships between inputs, independently of their order (permutations equivariance). That's the real contribution of the 2017 transformer paper. But what really boosted the craze was the application of Self-Supervised Learning to transformers, triggered by the 2018 BERT paper, also from Google: arxiv.org/abs/1810.04805
English
18
66
637
232K
AK
AK@_akhaliq·
Adding NVMe SSDs to Enable and Accelerate 100B Model Fine-tuning on a Single GPU Recent advances in large language models have brought immense value to the world, with their superior capabilities stemming from the massive number of parameters they utilize. However, even the GPUs with the highest memory capacities, currently peaking at 80GB, are far from sufficient to accommodate these vast parameters and their associated optimizer states when conducting stochastic gradient descent-based optimization. One approach to hosting such huge models is to aggregate device memory from many GPUs. However, this approach introduces prohibitive costs for most academic researchers, who always have a limited budget for many high-end GPU servers. In this paper, we focus on huge model fine-tuning on a single, even low-end, GPU in a commodity server, which is accessible to most AI researchers. In such a scenario, the state-of-the-art work ZeRO-Infinity suffers from two severe issues when running in a commodity server: 1) low GPU utilization due to inefficient swapping, and 2) limited trainable model size due to CPU memory capacity. The underlying reason is that ZeRO-Infinity is optimized for running on high-end GPU servers. To this end, we present Fuyou, a low-cost training framework that enables efficient 100B huge model fine-tuning on a low-end server with a low-end GPU and limited CPU memory capacity. The key idea is to add the SSD-CPU communication as an optimization dimension and thus carefully co-optimize computation and data swapping from a systematic approach to maximize GPU utilization. The experimental results show that 1) Fuyou is able to fine-tune 175B GPT-3 on a consumer GPU RTX 4090 with high GPU utilization, while ZeRO-Infinity fails to fine-tune; and 2) when training a small GPT-3 13B model, Fuyou achieves 156 TFLOPS on an RTX 4090 GPU while ZeRO-Infinity only achieves 45 TFLOPS.
AK tweet media
English
7
86
437
42.9K
AK
AK@_akhaliq·
Microsoft presents The Era of 1-bit LLMs All Large Language Models are in 1.58 Bits Recent research, such as BitNet, is paving the way for a new era of 1-bit Large Language Models (LLMs). In this work, we introduce a 1-bit LLM variant, namely BitNet b1.58, in which every single parameter (or weight) of the LLM is ternary {-1, 0, 1}. It matches the full-precision (i.e., FP16 or BF16) Transformer LLM with the same model size and training tokens in terms of both perplexity and end-task performance, while being significantly more cost-effective in terms of latency, memory, throughput, and energy consumption. More profoundly, the 1.58-bit LLM defines a new scaling law and recipe for training new generations of LLMs that are both high-performance and cost-effective. Furthermore, it enables a new computation paradigm and opens the door for designing specific hardware optimized for 1-bit LLMs.
AK tweet media
English
43
576
2.4K
433.9K
AK
AK@_akhaliq·
Tencent presents More Agents Is All You Need paper page: huggingface.co/papers/2402.05… find that, simply via a sampling-and-voting method, the performance of large language models (LLMs) scales with the number of agents instantiated. Also, this method is orthogonal to existing complicated methods to further enhance LLMs, while the degree of enhancement is correlated to the task difficulty. We conduct comprehensive experiments on a wide range of LLM benchmarks to verify the presence of our finding, and to study the properties that can facilitate its occurrence.
AK tweet media
English
12
102
467
94.5K
Marco Pedersoli retweetledi
Joan Rodriguez
Joan Rodriguez@joanrod_ai·
Thanks @_akhaliq for sharing our work! We introduce StarVector💫 a Large Language and Vision Model for generating SVG code, a new alternative to image vectorization! arxiv.org/abs/2312.11556 w/ @shubhamag1992, @ILaradji, @prlz77, @dvazquezcv, @chrisjpal and @marcopeddy 🧵👇
AK@_akhaliq

StarVector: Generating Scalable Vector Graphics Code from Images paper page: huggingface.co/papers/2312.11… Scalable Vector Graphics (SVGs) have become integral in modern image rendering applications due to their infinite scalability in resolution, versatile usability, and editing capabilities. SVGs are particularly popular in the fields of web development and graphic design. Existing approaches for SVG modeling using deep learning often struggle with generating complex SVGs and are restricted to simpler ones that require extensive processing and simplification. This paper introduces StarVector, a multimodal SVG generation model that effectively integrates Code Generation Large Language Models (CodeLLMs) and vision models. Our approach utilizes a CLIP image encoder to extract visual representations from pixel-based images, which are then transformed into visual tokens via an adapter module. These visual tokens are pre-pended to the SVG token embeddings, and the sequence is modeled by the StarCoder model using next-token prediction, effectively learning to align the visual and code tokens. This enables StarVector to generate unrestricted SVGs that accurately represent pixel images. To evaluate StarVector's performance, we present SVG-Bench, a comprehensive benchmark for evaluating SVG methods across multiple datasets and relevant metrics. Within this benchmark, we introduce novel datasets including SVG-Stack, a large-scale dataset of real-world SVG examples, and use it to pre-train StarVector as a large foundation model for SVGs. Our results demonstrate significant enhancements in visual quality and complexity handling over current methods, marking a notable advancement in SVG generation technology.

English
6
29
94
18.5K
Bojan Tunguz
Bojan Tunguz@tunguz·
This is crazy.
Bojan Tunguz tweet media
English
91
71
652
280.1K