arxiv_id
stringlengths 9
10
| label
stringclasses 3
values | title
stringlengths 8
155
| authors
sequencelengths 1
1.35k
| published
stringclasses 845
values | abstract
stringlengths 343
1.92k
| doi
stringclasses 81
values | primary_category
stringclasses 45
values | categories
sequencelengths 1
7
|
---|---|---|---|---|---|---|---|---|
2004.08500 | AnswerAI | A Formal Hierarchy of RNN Architectures | [
"William Merrill",
"Gail Weiss",
"Yoav Goldberg",
"Roy Schwartz",
"Noah A. Smith",
"Eran Yahav"
] | 2020-04-18 | We develop a formal hierarchy of the expressive capacity of RNN
architectures. The hierarchy is based on two formal properties: space
complexity, which measures the RNN's memory, and rational recurrence, defined
as whether the recurrent update can be described by a weighted finite-state
machine. We place several RNN variants within this hierarchy. For example, we
prove the LSTM is not rational, which formally separates it from the related
QRNN (Bradbury et al., 2016). We also show how these models' expressive
capacity is expanded by stacking multiple layers or composing them with
different pooling functions. Our results build on the theory of "saturated"
RNNs (Merrill, 2019). While formally extending these findings to unsaturated
RNNs is left to future work, we hypothesize that the practical learnable
capacity of unsaturated RNNs obeys a similar hierarchy. Experimental findings
from training unsaturated networks on formal languages support this conjecture. | null | cs.CL | [
"cs.CL",
"cs.FL"
] |
2407.12854 | HF | Scaling Retrieval-Based Language Models with a Trillion-Token Datastore | [
"Rulin Shao",
"Jacqueline He",
"Akari Asai",
"Weijia Shi",
"Tim Dettmers",
"Sewon Min",
"Luke Zettlemoyer",
"Pang Wei Koh"
] | 2024-07-09 | Scaling laws with respect to the amount of training data and the number of
parameters allow us to predict the cost-benefit trade-offs of pretraining
language models (LMs) in different configurations. In this paper, we consider
another dimension of scaling: the amount of data available at inference time.
Specifically, we find that increasing the size of the datastore used by a
retrieval-based LM monotonically improves language modeling and several
downstream tasks without obvious saturation, such that a smaller model
augmented with a large datastore outperforms a larger LM-only model on
knowledge-intensive tasks. By plotting compute-optimal scaling curves with
varied datastore, model, and pretraining data sizes, we show that using larger
datastores can significantly improve model performance for the same training
compute budget. We carry out our study by constructing a 1.4 trillion-token
datastore named MassiveDS, which is the largest and the most diverse
open-sourced datastore for retrieval-based LMs to date, and designing an
efficient pipeline for studying datastore scaling in a computationally
accessible manner. Finally, we analyze the effect of improving the retriever,
datastore quality filtering, and other design choices on our observed scaling
trends. Overall, our results show that datastore size should be considered as
an integral part of LM efficiency and performance trade-offs. To facilitate
future research, we open-source our datastore and code at
https://github.com/RulinShao/retrieval-scaling. | null | cs.CL | [
"cs.CL",
"cs.AI",
"cs.IR",
"cs.LG"
] |
2309.16039 | Both | Effective Long-Context Scaling of Foundation Models | [
"Wenhan Xiong",
"Jingyu Liu",
"Igor Molybog",
"Hejia Zhang",
"Prajjwal Bhargava",
"Rui Hou",
"Louis Martin",
"Rashi Rungta",
"Karthik Abinav Sankararaman",
"Barlas Oguz",
"Madian Khabsa",
"Han Fang",
"Yashar Mehdad",
"Sharan Narang",
"Kshitiz Malik",
"Angela Fan",
"Shruti Bhosale",
"Sergey Edunov",
"Mike Lewis",
"Sinong Wang",
"Hao Ma"
] | 2023-09-27 | We present a series of long-context LLMs that support effective context
windows of up to 32,768 tokens. Our model series are built through continual
pretraining from Llama 2 with longer training sequences and on a dataset where
long texts are upsampled. We perform extensive evaluation on language modeling,
synthetic context probing tasks, and a wide range of research benchmarks. On
research benchmarks, our models achieve consistent improvements on most regular
tasks and significant improvements on long-context tasks over Llama 2. Notably,
with a cost-effective instruction tuning procedure that does not require
human-annotated long instruction data, the 70B variant can already surpass
gpt-3.5-turbo-16k's overall performance on a suite of long-context tasks.
Alongside these results, we provide an in-depth analysis on the individual
components of our method. We delve into Llama's position encodings and discuss
its limitation in modeling long dependencies. We also examine the impact of
various design choices in the pretraining process, including the data mix and
the training curriculum of sequence lengths -- our ablation experiments suggest
that having abundant long texts in the pretrain dataset is not the key to
achieving strong performance, and we empirically verify that long context
continual pretraining is more efficient and similarly effective compared to
pretraining from scratch with long sequences. | null | cs.CL | [
"cs.CL"
] |
2404.06109 | HF | Revising Densification in Gaussian Splatting | [
"Samuel Rota Bulò",
"Lorenzo Porzi",
"Peter Kontschieder"
] | 2024-04-09 | In this paper, we address the limitations of Adaptive Density Control (ADC)
in 3D Gaussian Splatting (3DGS), a scene representation method achieving
high-quality, photorealistic results for novel view synthesis. ADC has been
introduced for automatic 3D point primitive management, controlling
densification and pruning, however, with certain limitations in the
densification logic. Our main contribution is a more principled, pixel-error
driven formulation for density control in 3DGS, leveraging an auxiliary,
per-pixel error function as the criterion for densification. We further
introduce a mechanism to control the total number of primitives generated per
scene and correct a bias in the current opacity handling strategy of ADC during
cloning operations. Our approach leads to consistent quality improvements
across a variety of benchmark scenes, without sacrificing the method's
efficiency. | null | cs.CV | [
"cs.CV"
] |
2308.16582 | HF | Any-Size-Diffusion: Toward Efficient Text-Driven Synthesis for Any-Size HD Images | [
"Qingping Zheng",
"Yuanfan Guo",
"Jiankang Deng",
"Jianhua Han",
"Ying Li",
"Songcen Xu",
"Hang Xu"
] | 2023-08-31 | Stable diffusion, a generative model used in text-to-image synthesis,
frequently encounters resolution-induced composition problems when generating
images of varying sizes. This issue primarily stems from the model being
trained on pairs of single-scale images and their corresponding text
descriptions. Moreover, direct training on images of unlimited sizes is
unfeasible, as it would require an immense number of text-image pairs and
entail substantial computational expenses. To overcome these challenges, we
propose a two-stage pipeline named Any-Size-Diffusion (ASD), designed to
efficiently generate well-composed images of any size, while minimizing the
need for high-memory GPU resources. Specifically, the initial stage, dubbed Any
Ratio Adaptability Diffusion (ARAD), leverages a selected set of images with a
restricted range of ratios to optimize the text-conditional diffusion model,
thereby improving its ability to adjust composition to accommodate diverse
image sizes. To support the creation of images at any desired size, we further
introduce a technique called Fast Seamless Tiled Diffusion (FSTD) at the
subsequent stage. This method allows for the rapid enlargement of the ASD
output to any high-resolution size, avoiding seaming artifacts or memory
overloads. Experimental results on the LAION-COCO and MM-CelebA-HQ benchmarks
demonstrate that ASD can produce well-structured images of arbitrary sizes,
cutting down the inference time by 2x compared to the traditional tiled
algorithm. | null | cs.CV | [
"cs.CV"
] |
2406.04604 | Both | Learning Task Decomposition to Assist Humans in Competitive Programming | [
"Jiaxin Wen",
"Ruiqi Zhong",
"Pei Ke",
"Zhihong Shao",
"Hongning Wang",
"Minlie Huang"
] | 2024-06-07 | When using language models (LMs) to solve complex problems, humans might
struggle to understand the LM-generated solutions and repair the flawed ones.
To assist humans in repairing them, we propose to automatically decompose
complex solutions into multiple simpler pieces that correspond to specific
subtasks. We introduce a novel objective for learning task decomposition,
termed assistive value (AssistV), which measures the feasibility and speed for
humans to repair the decomposed solution. We collect a dataset of human repair
experiences on different decomposed solutions. Utilizing the collected data as
in-context examples, we then learn to critique, refine, and rank decomposed
solutions to improve AssistV. We validate our method under competitive
programming problems: under 177 hours of human study, our method enables
non-experts to solve 33.3\% more problems, speeds them up by 3.3x, and empowers
them to match unassisted experts. | null | cs.CL | [
"cs.CL",
"cs.PL"
] |
2104.08691 | AnswerAI | The Power of Scale for Parameter-Efficient Prompt Tuning | [
"Brian Lester",
"Rami Al-Rfou",
"Noah Constant"
] | 2021-04-18 | In this work, we explore "prompt tuning", a simple yet effective mechanism
for learning "soft prompts" to condition frozen language models to perform
specific downstream tasks. Unlike the discrete text prompts used by GPT-3, soft
prompts are learned through backpropagation and can be tuned to incorporate
signal from any number of labeled examples. Our end-to-end learned approach
outperforms GPT-3's "few-shot" learning by a large margin. More remarkably,
through ablations on model size using T5, we show that prompt tuning becomes
more competitive with scale: as models exceed billions of parameters, our
method "closes the gap" and matches the strong performance of model tuning
(where all model weights are tuned). This finding is especially relevant in
that large models are costly to share and serve, and the ability to reuse one
frozen model for multiple downstream tasks can ease this burden. Our method can
be seen as a simplification of the recently proposed "prefix tuning" of Li and
Liang (2021), and we provide a comparison to this and other similar approaches.
Finally, we show that conditioning a frozen model with soft prompts confers
benefits in robustness to domain transfer, as compared to full model tuning. | null | cs.CL | [
"cs.CL"
] |
2109.00993 | AnswerAI | LegaLMFiT: Efficient Short Legal Text Classification with LSTM Language Model Pre-Training | [
"Benjamin Clavié",
"Akshita Gheewala",
"Paul Briton",
"Marc Alphonsus",
"Rym Laabiyad",
"Francesco Piccoli"
] | 2021-09-02 | Large Transformer-based language models such as BERT have led to broad
performance improvements on many NLP tasks. Domain-specific variants of these
models have demonstrated excellent performance on a variety of specialised
tasks. In legal NLP, BERT-based models have led to new state-of-the-art results
on multiple tasks. The exploration of these models has demonstrated the
importance of capturing the specificity of the legal language and its
vocabulary. However, such approaches suffer from high computational costs,
leading to a higher ecological impact and lower accessibility. Our findings,
focusing on English language legal text, show that lightweight LSTM-based
Language Models are able to capture enough information from a small legal text
pretraining corpus and achieve excellent performance on short legal text
classification tasks. This is achieved with a significantly reduced
computational overhead compared to BERT-based models. However, our method also
shows degraded performance on a more complex task, multi-label classification
of longer documents, highlighting the limitations of this lightweight approach. | null | cs.CL | [
"cs.CL"
] |
2305.18703 | AnswerAI | Domain Specialization as the Key to Make Large Language Models Disruptive: A Comprehensive Survey | [
"Chen Ling",
"Xujiang Zhao",
"Jiaying Lu",
"Chengyuan Deng",
"Can Zheng",
"Junxiang Wang",
"Tanmoy Chowdhury",
"Yun Li",
"Hejie Cui",
"Xuchao Zhang",
"Tianjiao Zhao",
"Amit Panalkar",
"Dhagash Mehta",
"Stefano Pasquali",
"Wei Cheng",
"Haoyu Wang",
"Yanchi Liu",
"Zhengzhang Chen",
"Haifeng Chen",
"Chris White",
"Quanquan Gu",
"Jian Pei",
"Carl Yang",
"Liang Zhao"
] | 2023-05-30 | Large language models (LLMs) have significantly advanced the field of natural
language processing (NLP), providing a highly useful, task-agnostic foundation
for a wide range of applications. However, directly applying LLMs to solve
sophisticated problems in specific domains meets many hurdles, caused by the
heterogeneity of domain data, the sophistication of domain knowledge, the
uniqueness of domain objectives, and the diversity of the constraints (e.g.,
various social norms, cultural conformity, religious beliefs, and ethical
standards in the domain applications). Domain specification techniques are key
to make large language models disruptive in many applications. Specifically, to
solve these hurdles, there has been a notable increase in research and
practices conducted in recent years on the domain specialization of LLMs. This
emerging field of study, with its substantial potential for impact,
necessitates a comprehensive and systematic review to better summarize and
guide ongoing work in this area. In this article, we present a comprehensive
survey on domain specification techniques for large language models, an
emerging direction critical for large language model applications. First, we
propose a systematic taxonomy that categorizes the LLM domain-specialization
techniques based on the accessibility to LLMs and summarizes the framework for
all the subcategories as well as their relations and differences to each other.
Second, we present an extensive taxonomy of critical application domains that
can benefit dramatically from specialized LLMs, discussing their practical
significance and open challenges. Last, we offer our insights into the current
research status and future trends in this area. | null | cs.CL | [
"cs.CL",
"cs.AI"
] |
2310.13730 | HF | Localizing and Editing Knowledge in Text-to-Image Generative Models | [
"Samyadeep Basu",
"Nanxuan Zhao",
"Vlad Morariu",
"Soheil Feizi",
"Varun Manjunatha"
] | 2023-10-20 | Text-to-Image Diffusion Models such as Stable-Diffusion and Imagen have
achieved unprecedented quality of photorealism with state-of-the-art FID scores
on MS-COCO and other generation benchmarks. Given a caption, image generation
requires fine-grained knowledge about attributes such as object structure,
style, and viewpoint amongst others. Where does this information reside in
text-to-image generative models? In our paper, we tackle this question and
understand how knowledge corresponding to distinct visual attributes is stored
in large-scale text-to-image diffusion models. We adapt Causal Mediation
Analysis for text-to-image models and trace knowledge about distinct visual
attributes to various (causal) components in the (i) UNet and (ii) text-encoder
of the diffusion model. In particular, we show that unlike generative
large-language models, knowledge about different attributes is not localized in
isolated components, but is instead distributed amongst a set of components in
the conditional UNet. These sets of components are often distinct for different
visual attributes. Remarkably, we find that the CLIP text-encoder in public
text-to-image models such as Stable-Diffusion contains only one causal state
across different visual attributes, and this is the first self-attention layer
corresponding to the last subject token of the attribute in the caption. This
is in stark contrast to the causal states in other language models which are
often the mid-MLP layers. Based on this observation of only one causal state in
the text-encoder, we introduce a fast, data-free model editing method
Diff-QuickFix which can effectively edit concepts in text-to-image models.
DiffQuickFix can edit (ablate) concepts in under a second with a closed-form
update, providing a significant 1000x speedup and comparable editing
performance to existing fine-tuning based editing methods. | null | cs.CV | [
"cs.CV"
] |
2403.13248 | HF | Mora: Enabling Generalist Video Generation via A Multi-Agent Framework | [
"Zhengqing Yuan",
"Ruoxi Chen",
"Zhaoxu Li",
"Haolong Jia",
"Lifang He",
"Chi Wang",
"Lichao Sun"
] | 2024-03-20 | Sora is the first large-scale generalist video generation model that garnered
significant attention across society. Since its launch by OpenAI in February
2024, no other video generation models have paralleled {Sora}'s performance or
its capacity to support a broad spectrum of video generation tasks.
Additionally, there are only a few fully published video generation models,
with the majority being closed-source. To address this gap, this paper proposes
a new multi-agent framework Mora, which incorporates several advanced visual AI
agents to replicate generalist video generation demonstrated by Sora. In
particular, Mora can utilize multiple visual agents and successfully mimic
Sora's video generation capabilities in various tasks, such as (1)
text-to-video generation, (2) text-conditional image-to-video generation, (3)
extend generated videos, (4) video-to-video editing, (5) connect videos and (6)
simulate digital worlds. Our extensive experimental results show that Mora
achieves performance that is proximate to that of Sora in various tasks.
However, there exists an obvious performance gap between our work and Sora when
assessed holistically. In summary, we hope this project can guide the future
trajectory of video generation through collaborative AI agents. | null | cs.CV | [
"cs.CV"
] |
2406.14213 | HF | Complexity of Symbolic Representation in Working Memory of Transformer Correlates with the Complexity of a Task | [
"Alsu Sagirova",
"Mikhail Burtsev"
] | 2024-06-20 | Even though Transformers are extensively used for Natural Language Processing
tasks, especially for machine translation, they lack an explicit memory to
store key concepts of processed texts. This paper explores the properties of
the content of symbolic working memory added to the Transformer model decoder.
Such working memory enhances the quality of model predictions in machine
translation task and works as a neural-symbolic representation of information
that is important for the model to make correct translations. The study of
memory content revealed that translated text keywords are stored in the working
memory, pointing to the relevance of memory content to the processed text.
Also, the diversity of tokens and parts of speech stored in memory correlates
with the complexity of the corpora for machine translation task. | 10.1016/j.cogsys.2022.05.002 | cs.CL | [
"cs.CL"
] |
2409.06595 | HF | GroUSE: A Benchmark to Evaluate Evaluators in Grounded Question Answering | [
"Sacha Muller",
"António Loison",
"Bilel Omrani",
"Gautier Viaud"
] | 2024-09-10 | Retrieval-Augmented Generation (RAG) has emerged as a common paradigm to use
Large Language Models (LLMs) alongside private and up-to-date knowledge bases.
In this work, we address the challenges of using LLM-as-a-Judge when evaluating
grounded answers generated by RAG systems. To assess the calibration and
discrimination capabilities of judge models, we identify 7 generator failure
modes and introduce GroUSE (Grounded QA Unitary Scoring of Evaluators), a
meta-evaluation benchmark of 144 unit tests. This benchmark reveals that
existing automated RAG evaluation frameworks often overlook important failure
modes, even when using GPT-4 as a judge.
To improve on the current design of automated RAG evaluation frameworks, we
propose a novel pipeline and find that while closed models perform well on
GroUSE, state-of-the-art open-source judges do not generalize to our proposed
criteria, despite strong correlation with GPT-4's judgement. Our findings
suggest that correlation with GPT-4 is an incomplete proxy for the practical
performance of judge models and should be supplemented with evaluations on unit
tests for precise failure mode detection.
We further show that finetuning Llama-3 on GPT-4's reasoning traces
significantly boosts its evaluation capabilities, improving upon both
correlation with GPT-4's evaluations and calibration on reference situations. | null | cs.CL | [
"cs.CL",
"I.2.7"
] |
2408.09739 | HF | TraDiffusion: Trajectory-Based Training-Free Image Generation | [
"Mingrui Wu",
"Oucheng Huang",
"Jiayi Ji",
"Jiale Li",
"Xinyue Cai",
"Huafeng Kuang",
"Jianzhuang Liu",
"Xiaoshuai Sun",
"Rongrong Ji"
] | 2024-08-19 | In this work, we propose a training-free, trajectory-based controllable T2I
approach, termed TraDiffusion. This novel method allows users to effortlessly
guide image generation via mouse trajectories. To achieve precise control, we
design a distance awareness energy function to effectively guide latent
variables, ensuring that the focus of generation is within the areas defined by
the trajectory. The energy function encompasses a control function to draw the
generation closer to the specified trajectory and a movement function to
diminish activity in areas distant from the trajectory. Through extensive
experiments and qualitative assessments on the COCO dataset, the results reveal
that TraDiffusion facilitates simpler, more natural image control. Moreover, it
showcases the ability to manipulate salient regions, attributes, and
relationships within the generated images, alongside visual input based on
arbitrary or enhanced trajectories. | null | cs.CV | [
"cs.CV"
] |
2408.04631 | HF | Puppet-Master: Scaling Interactive Video Generation as a Motion Prior for Part-Level Dynamics | [
"Ruining Li",
"Chuanxia Zheng",
"Christian Rupprecht",
"Andrea Vedaldi"
] | 2024-08-08 | We present Puppet-Master, an interactive video generative model that can
serve as a motion prior for part-level dynamics. At test time, given a single
image and a sparse set of motion trajectories (i.e., drags), Puppet-Master can
synthesize a video depicting realistic part-level motion faithful to the given
drag interactions. This is achieved by fine-tuning a large-scale pre-trained
video diffusion model, for which we propose a new conditioning architecture to
inject the dragging control effectively. More importantly, we introduce the
all-to-first attention mechanism, a drop-in replacement for the widely adopted
spatial attention modules, which significantly improves generation quality by
addressing the appearance and background issues in existing models. Unlike
other motion-conditioned video generators that are trained on in-the-wild
videos and mostly move an entire object, Puppet-Master is learned from
Objaverse-Animation-HQ, a new dataset of curated part-level motion clips. We
propose a strategy to automatically filter out sub-optimal animations and
augment the synthetic renderings with meaningful motion trajectories.
Puppet-Master generalizes well to real images across various categories and
outperforms existing methods in a zero-shot manner on a real-world benchmark.
See our project page for more results: vgg-puppetmaster.github.io. | null | cs.CV | [
"cs.CV",
"cs.AI"
] |
2407.03418 | HF | HEMM: Holistic Evaluation of Multimodal Foundation Models | [
"Paul Pu Liang",
"Akshay Goindani",
"Talha Chafekar",
"Leena Mathur",
"Haofei Yu",
"Ruslan Salakhutdinov",
"Louis-Philippe Morency"
] | 2024-07-03 | Multimodal foundation models that can holistically process text alongside
images, video, audio, and other sensory modalities are increasingly used in a
variety of real-world applications. However, it is challenging to characterize
and study progress in multimodal foundation models, given the range of possible
modeling decisions, tasks, and domains. In this paper, we introduce Holistic
Evaluation of Multimodal Models (HEMM) to systematically evaluate the
capabilities of multimodal foundation models across a set of 3 dimensions:
basic skills, information flow, and real-world use cases. Basic multimodal
skills are internal abilities required to solve problems, such as learning
interactions across modalities, fine-grained alignment, multi-step reasoning,
and the ability to handle external knowledge. Information flow studies how
multimodal content changes during a task through querying, translation,
editing, and fusion. Use cases span domain-specific challenges introduced in
real-world multimedia, affective computing, natural sciences, healthcare, and
human-computer interaction applications. Through comprehensive experiments
across the 30 tasks in HEMM, we (1) identify key dataset dimensions (e.g.,
basic skills, information flows, and use cases) that pose challenges to today's
models, and (2) distill performance trends regarding how different modeling
dimensions (e.g., scale, pre-training data, multimodal alignment, pre-training,
and instruction tuning objectives) influence performance. Our conclusions
regarding challenging multimodal interactions, use cases, and tasks requiring
reasoning and external knowledge, the benefits of data and model scale, and the
impacts of instruction tuning yield actionable insights for future work in
multimodal foundation models. | null | cs.LG | [
"cs.LG",
"cs.AI",
"cs.CL",
"cs.CV"
] |
2407.05530 | HF | This&That: Language-Gesture Controlled Video Generation for Robot Planning | [
"Boyang Wang",
"Nikhil Sridhar",
"Chao Feng",
"Mark Van der Merwe",
"Adam Fishman",
"Nima Fazeli",
"Jeong Joon Park"
] | 2024-07-08 | We propose a robot learning method for communicating, planning, and executing
a wide range of tasks, dubbed This&That. We achieve robot planning for general
tasks by leveraging the power of video generative models trained on
internet-scale data containing rich physical and semantic context. In this
work, we tackle three fundamental challenges in video-based planning: 1)
unambiguous task communication with simple human instructions, 2) controllable
video generation that respects user intents, and 3) translating visual planning
into robot actions. We propose language-gesture conditioning to generate
videos, which is both simpler and clearer than existing language-only methods,
especially in complex and uncertain environments. We then suggest a behavioral
cloning design that seamlessly incorporates the video plans. This&That
demonstrates state-of-the-art effectiveness in addressing the above three
challenges, and justifies the use of video generation as an intermediate
representation for generalizable task planning and execution. Project website:
https://cfeng16.github.io/this-and-that/. | null | cs.RO | [
"cs.RO",
"cs.AI",
"cs.CV"
] |
2403.14714 | HF | Compiler generated feedback for Large Language Models | [
"Dejan Grubisic",
"Chris Cummins",
"Volker Seeker",
"Hugh Leather"
] | 2024-03-18 | We introduce a novel paradigm in compiler optimization powered by Large
Language Models with compiler feedback to optimize the code size of LLVM
assembly. The model takes unoptimized LLVM IR as input and produces optimized
IR, the best optimization passes, and instruction counts of both unoptimized
and optimized IRs. Then we compile the input with generated optimization passes
and evaluate if the predicted instruction count is correct, generated IR is
compilable, and corresponds to compiled code. We provide this feedback back to
LLM and give it another chance to optimize code. This approach adds an extra
0.53% improvement over -Oz to the original model. Even though, adding more
information with feedback seems intuitive, simple sampling techniques achieve
much higher performance given 10 or more samples. | null | cs.PL | [
"cs.PL",
"cs.LG"
] |
2403.07918 | HF | On the Societal Impact of Open Foundation Models | [
"Sayash Kapoor",
"Rishi Bommasani",
"Kevin Klyman",
"Shayne Longpre",
"Ashwin Ramaswami",
"Peter Cihon",
"Aspen Hopkins",
"Kevin Bankston",
"Stella Biderman",
"Miranda Bogen",
"Rumman Chowdhury",
"Alex Engler",
"Peter Henderson",
"Yacine Jernite",
"Seth Lazar",
"Stefano Maffulli",
"Alondra Nelson",
"Joelle Pineau",
"Aviya Skowron",
"Dawn Song",
"Victor Storchan",
"Daniel Zhang",
"Daniel E. Ho",
"Percy Liang",
"Arvind Narayanan"
] | 2024-02-27 | Foundation models are powerful technologies: how they are released publicly
directly shapes their societal impact. In this position paper, we focus on open
foundation models, defined here as those with broadly available model weights
(e.g. Llama 2, Stable Diffusion XL). We identify five distinctive properties
(e.g. greater customizability, poor monitoring) of open foundation models that
lead to both their benefits and risks. Open foundation models present
significant benefits, with some caveats, that span innovation, competition, the
distribution of decision-making power, and transparency. To understand their
risks of misuse, we design a risk assessment framework for analyzing their
marginal risk. Across several misuse vectors (e.g. cyberattacks, bioweapons),
we find that current research is insufficient to effectively characterize the
marginal risk of open foundation models relative to pre-existing technologies.
The framework helps explain why the marginal risk is low in some cases,
clarifies disagreements about misuse risks by revealing that past work has
focused on different subsets of the framework with different assumptions, and
articulates a way forward for more constructive debate. Overall, our work helps
support a more grounded assessment of the societal impact of open foundation
models by outlining what research is needed to empirically validate their
theoretical benefits and risks. | null | cs.CY | [
"cs.CY",
"cs.AI",
"cs.LG"
] |
2408.06941 | HF | OpenResearcher: Unleashing AI for Accelerated Scientific Research | [
"Yuxiang Zheng",
"Shichao Sun",
"Lin Qiu",
"Dongyu Ru",
"Cheng Jiayang",
"Xuefeng Li",
"Jifan Lin",
"Binjie Wang",
"Yun Luo",
"Renjie Pan",
"Yang Xu",
"Qingkai Min",
"Zizhao Zhang",
"Yiwen Wang",
"Wenjie Li",
"Pengfei Liu"
] | 2024-08-13 | The rapid growth of scientific literature imposes significant challenges for
researchers endeavoring to stay updated with the latest advancements in their
fields and delve into new areas. We introduce OpenResearcher, an innovative
platform that leverages Artificial Intelligence (AI) techniques to accelerate
the research process by answering diverse questions from researchers.
OpenResearcher is built based on Retrieval-Augmented Generation (RAG) to
integrate Large Language Models (LLMs) with up-to-date, domain-specific
knowledge. Moreover, we develop various tools for OpenResearcher to understand
researchers' queries, search from the scientific literature, filter retrieved
information, provide accurate and comprehensive answers, and self-refine these
answers. OpenResearcher can flexibly use these tools to balance efficiency and
effectiveness. As a result, OpenResearcher enables researchers to save time and
increase their potential to discover new insights and drive scientific
breakthroughs. Demo, video, and code are available at:
https://github.com/GAIR-NLP/OpenResearcher. | null | cs.IR | [
"cs.IR"
] |
2306.00966 | HF | The Hidden Language of Diffusion Models | [
"Hila Chefer",
"Oran Lang",
"Mor Geva",
"Volodymyr Polosukhin",
"Assaf Shocher",
"Michal Irani",
"Inbar Mosseri",
"Lior Wolf"
] | 2023-06-01 | Text-to-image diffusion models have demonstrated an unparalleled ability to
generate high-quality, diverse images from a textual prompt. However, the
internal representations learned by these models remain an enigma. In this
work, we present Conceptor, a novel method to interpret the internal
representation of a textual concept by a diffusion model. This interpretation
is obtained by decomposing the concept into a small set of human-interpretable
textual elements. Applied over the state-of-the-art Stable Diffusion model,
Conceptor reveals non-trivial structures in the representations of concepts.
For example, we find surprising visual connections between concepts, that
transcend their textual semantics. We additionally discover concepts that rely
on mixtures of exemplars, biases, renowned artistic styles, or a simultaneous
fusion of multiple meanings of the concept. Through a large battery of
experiments, we demonstrate Conceptor's ability to provide meaningful, robust,
and faithful decompositions for a wide variety of abstract, concrete, and
complex textual concepts, while allowing to naturally connect each
decomposition element to its corresponding visual impact on the generated
images. Our code will be available at: https://hila-chefer.github.io/Conceptor/ | null | cs.CV | [
"cs.CV"
] |
2305.11854 | HF | Multimodal Web Navigation with Instruction-Finetuned Foundation Models | [
"Hiroki Furuta",
"Kuang-Huei Lee",
"Ofir Nachum",
"Yutaka Matsuo",
"Aleksandra Faust",
"Shixiang Shane Gu",
"Izzeddin Gur"
] | 2023-05-19 | The progress of autonomous web navigation has been hindered by the dependence
on billions of exploratory interactions via online reinforcement learning, and
domain-specific model designs that make it difficult to leverage generalization
from rich out-of-domain data. In this work, we study data-driven offline
training for web agents with vision-language foundation models. We propose an
instruction-following multimodal agent, WebGUM, that observes both webpage
screenshots and HTML pages and outputs web navigation actions, such as click
and type. WebGUM is trained by jointly finetuning an instruction-finetuned
language model and a vision encoder with temporal and local perception on a
large corpus of demonstrations. We empirically demonstrate this recipe improves
the agent's ability of grounded multimodal perception, HTML comprehension, and
multi-step reasoning, outperforming prior works by a significant margin. On the
MiniWoB, we improve over the previous best offline methods by more than 45.8%,
even outperforming online-finetuned SoTA, humans, and GPT-4-based agent. On the
WebShop benchmark, our 3-billion-parameter model achieves superior performance
to the existing SoTA, PaLM-540B. Furthermore, WebGUM exhibits strong positive
transfer to the real-world planning tasks on the Mind2Web. We also collect 347K
high-quality demonstrations using our trained models, 38 times larger than
prior work, and make them available to promote future research in this
direction. | null | cs.LG | [
"cs.LG",
"cs.AI",
"stat.ML"
] |
2311.01906 | AnswerAI | Simplifying Transformer Blocks | [
"Bobby He",
"Thomas Hofmann"
] | 2023-11-03 | A simple design recipe for deep Transformers is to compose identical building
blocks. But standard transformer blocks are far from simple, interweaving
attention and MLP sub-blocks with skip connections & normalisation layers in
precise arrangements. This complexity leads to brittle architectures, where
seemingly minor changes can significantly reduce training speed, or render
models untrainable.
In this work, we ask to what extent the standard transformer block can be
simplified? Combining signal propagation theory and empirical observations, we
motivate modifications that allow many block components to be removed with no
loss of training speed, including skip connections, projection or value
parameters, sequential sub-blocks and normalisation layers. In experiments on
both autoregressive decoder-only and BERT encoder-only models, our simplified
transformers emulate the per-update training speed and performance of standard
transformers, while enjoying 15% faster training throughput, and using 15%
fewer parameters. | null | cs.LG | [
"cs.LG"
] |
2404.04237 | AnswerAI | Cleared for Takeoff? Compositional & Conditional Reasoning may be the Achilles Heel to (Flight-Booking) Language Agents | [
"Harsh Kohli",
"Huan Sun"
] | 2024-04-05 | The rapid progress of large language models (LLMs) has seen them excel and
frequently surpass human performance on standard benchmarks. This has enabled
many downstream applications, such as LLM agents, to rely on their
sophisticated reasoning to navigate complex task requirements. However, LLMs
are known to unexpectedly falter in simple tasks and under seemingly
straightforward circumstances - underscoring the need for better and more
diverse evaluation setups to measure their true capabilities. To this end, we
choose to study compositional and conditional reasoning, two cornerstones of
human cognition, and introduce GroundCocoa - a lexically diverse benchmark
connecting these reasoning skills to the real-world problem of flight booking.
Our task involves aligning detailed user preferences with available flight
options presented in a multiple-choice format. Results indicate a significant
disparity in performance among current state-of-the-art LLMs with even the best
performing model, GPT-4 Turbo, not exceeding 67% accuracy despite advanced
prompting techniques. | null | cs.CL | [
"cs.CL"
] |
2310.13332 | HF | Democratizing Reasoning Ability: Tailored Learning from Large Language Model | [
"Zhaoyang Wang",
"Shaohan Huang",
"Yuxuan Liu",
"Jiahai Wang",
"Minghui Song",
"Zihan Zhang",
"Haizhen Huang",
"Furu Wei",
"Weiwei Deng",
"Feng Sun",
"Qi Zhang"
] | 2023-10-20 | Large language models (LLMs) exhibit impressive emergent abilities in natural
language processing, but their democratization is hindered due to huge
computation requirements and closed-source nature. Recent research on advancing
open-source smaller LMs by distilling knowledge from black-box LLMs has
obtained promising results in the instruction-following ability. However, the
reasoning ability which is more challenging to foster, is relatively rarely
explored. In this paper, we propose a tailored learning approach to distill
such reasoning ability to smaller LMs to facilitate the democratization of the
exclusive reasoning ability. In contrast to merely employing LLM as a data
annotator, we exploit the potential of LLM as a reasoning teacher by building
an interactive multi-round learning paradigm. This paradigm enables the student
to expose its deficiencies to the black-box teacher who then can provide
customized training data in return. Further, to exploit the reasoning potential
of the smaller LM, we propose self-reflection learning to motivate the student
to learn from self-made mistakes. The learning from self-reflection and LLM are
all tailored to the student's learning status, thanks to the seamless
integration with the multi-round learning paradigm. Comprehensive experiments
and analysis on mathematical and commonsense reasoning tasks demonstrate the
effectiveness of our method. The code will be available at
https://github.com/Raibows/Learn-to-Reason. | null | cs.CL | [
"cs.CL",
"cs.AI"
] |
2406.11069 | HF | WildVision: Evaluating Vision-Language Models in the Wild with Human Preferences | [
"Yujie Lu",
"Dongfu Jiang",
"Wenhu Chen",
"William Yang Wang",
"Yejin Choi",
"Bill Yuchen Lin"
] | 2024-06-16 | Recent breakthroughs in vision-language models (VLMs) emphasize the necessity
of benchmarking human preferences in real-world multimodal interactions. To
address this gap, we launched WildVision-Arena (WV-Arena), an online platform
that collects human preferences to evaluate VLMs. We curated WV-Bench by
selecting 500 high-quality samples from 8,000 user submissions in WV-Arena.
WV-Bench uses GPT-4 as the judge to compare each VLM with Claude-3-Sonnet,
achieving a Spearman correlation of 0.94 with the WV-Arena Elo. This
significantly outperforms other benchmarks like MMVet, MMMU, and MMStar.
Our comprehensive analysis of 20K real-world interactions reveals important
insights into the failure cases of top-performing VLMs. For example, we find
that although GPT-4V surpasses many other models like Reka-Flash, Opus, and
Yi-VL-Plus in simple visual recognition and reasoning tasks, it still faces
challenges with subtle contextual cues, spatial reasoning, visual imagination,
and expert domain knowledge. Additionally, current VLMs exhibit issues with
hallucinations and safety when intentionally provoked. We are releasing our
chat and feedback data to further advance research in the field of VLMs. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.CL"
] |
2312.08723 | HF | StemGen: A music generation model that listens | [
"Julian D. Parker",
"Janne Spijkervet",
"Katerina Kosta",
"Furkan Yesiler",
"Boris Kuznetsov",
"Ju-Chiang Wang",
"Matt Avent",
"Jitong Chen",
"Duc Le"
] | 2023-12-14 | End-to-end generation of musical audio using deep learning techniques has
seen an explosion of activity recently. However, most models concentrate on
generating fully mixed music in response to abstract conditioning information.
In this work, we present an alternative paradigm for producing music generation
models that can listen and respond to musical context. We describe how such a
model can be constructed using a non-autoregressive, transformer-based model
architecture and present a number of novel architectural and sampling
improvements. We train the described architecture on both an open-source and a
proprietary dataset. We evaluate the produced models using standard quality
metrics and a new approach based on music information retrieval descriptors.
The resulting model reaches the audio quality of state-of-the-art
text-conditioned models, as well as exhibiting strong musical coherence with
its context. | null | cs.SD | [
"cs.SD",
"cs.LG",
"eess.AS"
] |
2306.11987 | Both | Training Transformers with 4-bit Integers | [
"Haocheng Xi",
"Changhao Li",
"Jianfei Chen",
"Jun Zhu"
] | 2023-06-21 | Quantizing the activation, weight, and gradient to 4-bit is promising to
accelerate neural network training. However, existing 4-bit training methods
require custom numerical formats which are not supported by contemporary
hardware. In this work, we propose a training method for transformers with all
matrix multiplications implemented with the INT4 arithmetic. Training with an
ultra-low INT4 precision is challenging. To achieve this, we carefully analyze
the specific structures of activation and gradients in transformers to propose
dedicated quantizers for them. For forward propagation, we identify the
challenge of outliers and propose a Hadamard quantizer to suppress the
outliers. For backpropagation, we leverage the structural sparsity of gradients
by proposing bit splitting and leverage score sampling techniques to quantize
gradients accurately. Our algorithm achieves competitive accuracy on a wide
range of tasks including natural language understanding, machine translation,
and image classification. Unlike previous 4-bit training methods, our algorithm
can be implemented on the current generation of GPUs. Our prototypical linear
operator implementation is up to 2.2 times faster than the FP16 counterparts
and speeds up the training by up to 35.1%. | null | cs.LG | [
"cs.LG",
"cs.NE"
] |
2309.08520 | HF | Scaling Laws for Sparsely-Connected Foundation Models | [
"Elias Frantar",
"Carlos Riquelme",
"Neil Houlsby",
"Dan Alistarh",
"Utku Evci"
] | 2023-09-15 | We explore the impact of parameter sparsity on the scaling behavior of
Transformers trained on massive datasets (i.e., "foundation models"), in both
vision and language domains. In this setting, we identify the first scaling law
describing the relationship between weight sparsity, number of non-zero
parameters, and amount of training data, which we validate empirically across
model and data scales; on ViT/JFT-4B and T5/C4. These results allow us to
characterize the "optimal sparsity", the sparsity level which yields the best
performance for a given effective model size and training budget. For a fixed
number of non-zero parameters, we identify that the optimal sparsity increases
with the amount of data used for training. We also extend our study to
different sparsity structures (such as the hardware-friendly n:m pattern) and
strategies (such as starting from a pretrained dense model). Our findings shed
light on the power and limitations of weight sparsity across various parameter
and computational settings, offering both theoretical understanding and
practical implications for leveraging sparsity towards computational efficiency
improvements. | null | cs.LG | [
"cs.LG"
] |
2404.19702 | HF | GS-LRM: Large Reconstruction Model for 3D Gaussian Splatting | [
"Kai Zhang",
"Sai Bi",
"Hao Tan",
"Yuanbo Xiangli",
"Nanxuan Zhao",
"Kalyan Sunkavalli",
"Zexiang Xu"
] | 2024-04-30 | We propose GS-LRM, a scalable large reconstruction model that can predict
high-quality 3D Gaussian primitives from 2-4 posed sparse images in 0.23
seconds on single A100 GPU. Our model features a very simple transformer-based
architecture; we patchify input posed images, pass the concatenated multi-view
image tokens through a sequence of transformer blocks, and decode final
per-pixel Gaussian parameters directly from these tokens for differentiable
rendering. In contrast to previous LRMs that can only reconstruct objects, by
predicting per-pixel Gaussians, GS-LRM naturally handles scenes with large
variations in scale and complexity. We show that our model can work on both
object and scene captures by training it on Objaverse and RealEstate10K
respectively. In both scenarios, the models outperform state-of-the-art
baselines by a wide margin. We also demonstrate applications of our model in
downstream 3D generation tasks. Our project webpage is available at:
https://sai-bi.github.io/project/gs-lrm/ . | null | cs.CV | [
"cs.CV"
] |
2402.15509 | HF | Seamless Human Motion Composition with Blended Positional Encodings | [
"German Barquero",
"Sergio Escalera",
"Cristina Palmero"
] | 2024-02-23 | Conditional human motion generation is an important topic with many
applications in virtual reality, gaming, and robotics. While prior works have
focused on generating motion guided by text, music, or scenes, these typically
result in isolated motions confined to short durations. Instead, we address the
generation of long, continuous sequences guided by a series of varying textual
descriptions. In this context, we introduce FlowMDM, the first diffusion-based
model that generates seamless Human Motion Compositions (HMC) without any
postprocessing or redundant denoising steps. For this, we introduce the Blended
Positional Encodings, a technique that leverages both absolute and relative
positional encodings in the denoising chain. More specifically, global motion
coherence is recovered at the absolute stage, whereas smooth and realistic
transitions are built at the relative stage. As a result, we achieve
state-of-the-art results in terms of accuracy, realism, and smoothness on the
Babel and HumanML3D datasets. FlowMDM excels when trained with only a single
description per motion sequence thanks to its Pose-Centric Cross-ATtention,
which makes it robust against varying text descriptions at inference time.
Finally, to address the limitations of existing HMC metrics, we propose two new
metrics: the Peak Jerk and the Area Under the Jerk, to detect abrupt
transitions. | null | cs.CV | [
"cs.CV"
] |
2302.08399 | AnswerAI | Large Language Models Fail on Trivial Alterations to Theory-of-Mind Tasks | [
"Tomer Ullman"
] | 2023-02-16 | Intuitive psychology is a pillar of common-sense reasoning. The replication
of this reasoning in machine intelligence is an important stepping-stone on the
way to human-like artificial intelligence. Several recent tasks and benchmarks
for examining this reasoning in Large-Large Models have focused in particular
on belief attribution in Theory-of-Mind tasks. These tasks have shown both
successes and failures. We consider in particular a recent purported success
case, and show that small variations that maintain the principles of ToM turn
the results on their head. We argue that in general, the zero-hypothesis for
model evaluation in intuitive psychology should be skeptical, and that outlying
failure cases should outweigh average success rates. We also consider what
possible future successes on Theory-of-Mind tasks by more powerful LLMs would
mean for ToM tasks with people. | null | cs.AI | [
"cs.AI",
"cs.CL",
"I.2.7"
] |
2408.02085 | HF | Unleashing the Power of Data Tsunami: A Comprehensive Survey on Data Assessment and Selection for Instruction Tuning of Language Models | [
"Yulei Qin",
"Yuncheng Yang",
"Pengcheng Guo",
"Gang Li",
"Hang Shao",
"Yuchen Shi",
"Zihan Xu",
"Yun Gu",
"Ke Li",
"Xing Sun"
] | 2024-08-04 | Instruction tuning plays a critical role in aligning large language models
(LLMs) with human preference. Despite the vast amount of open instruction
datasets, naively training a LLM on all existing instructions may not be
optimal and practical. To pinpoint the most beneficial datapoints, data
assessment and selection methods have been proposed in the fields of natural
language processing (NLP) and deep learning. However, under the context of
instruction tuning, there still exists a gap in knowledge on what kind of data
evaluation metrics can be employed and how they can be integrated into the
selection mechanism. To bridge this gap, we present a comprehensive review on
existing literature of data assessment and selection especially for instruction
tuning of LLMs. We systematically categorize all applicable methods into
quality-based, diversity-based, and importance-based ones where a unified,
fine-grained taxonomy is structured. For each category, representative methods
are elaborated to describe the landscape of relevant research. In addition,
comparison between latest methods is conducted on their officially reported
results to provide in-depth discussions on their limitations. Finally, we
summarize the open challenges and propose the promosing avenues for future
studies. All related contents are available at
https://github.com/yuleiqin/fantastic-data-engineering. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.CL",
"eess.SP"
] |
2404.15574 | AnswerAI | Retrieval Head Mechanistically Explains Long-Context Factuality | [
"Wenhao Wu",
"Yizhong Wang",
"Guangxuan Xiao",
"Hao Peng",
"Yao Fu"
] | 2024-04-24 | Despite the recent progress in long-context language models, it remains
elusive how transformer-based models exhibit the capability to retrieve
relevant information from arbitrary locations within the long context. This
paper aims to address this question. Our systematic investigation across a wide
spectrum of models reveals that a special type of attention heads are largely
responsible for retrieving information, which we dub retrieval heads. We
identify intriguing properties of retrieval heads:(1) universal: all the
explored models with long-context capability have a set of retrieval heads; (2)
sparse: only a small portion (less than 5\%) of the attention heads are
retrieval. (3) intrinsic: retrieval heads already exist in models pretrained
with short context. When extending the context length by continual pretraining,
it is still the same set of heads that perform information retrieval. (4)
dynamically activated: take Llama-2 7B for example, 12 retrieval heads always
attend to the required information no matter how the context is changed. The
rest of the retrieval heads are activated in different contexts. (5) causal:
completely pruning retrieval heads leads to failure in retrieving relevant
information and results in hallucination, while pruning random non-retrieval
heads does not affect the model's retrieval ability. We further show that
retrieval heads strongly influence chain-of-thought (CoT) reasoning, where the
model needs to frequently refer back the question and previously-generated
context. Conversely, tasks where the model directly generates the answer using
its intrinsic knowledge are less impacted by masking out retrieval heads. These
observations collectively explain which internal part of the model seeks
information from the input tokens. We believe our insights will foster future
research on reducing hallucination, improving reasoning, and compressing the KV
cache. | null | cs.CL | [
"cs.CL"
] |
2309.00615 | HF | Point-Bind & Point-LLM: Aligning Point Cloud with Multi-modality for 3D Understanding, Generation, and Instruction Following | [
"Ziyu Guo",
"Renrui Zhang",
"Xiangyang Zhu",
"Yiwen Tang",
"Xianzheng Ma",
"Jiaming Han",
"Kexin Chen",
"Peng Gao",
"Xianzhi Li",
"Hongsheng Li",
"Pheng-Ann Heng"
] | 2023-09-01 | We introduce Point-Bind, a 3D multi-modality model aligning point clouds with
2D image, language, audio, and video. Guided by ImageBind, we construct a joint
embedding space between 3D and multi-modalities, enabling many promising
applications, e.g., any-to-3D generation, 3D embedding arithmetic, and 3D
open-world understanding. On top of this, we further present Point-LLM, the
first 3D large language model (LLM) following 3D multi-modal instructions. By
parameter-efficient fine-tuning techniques, Point-LLM injects the semantics of
Point-Bind into pre-trained LLMs, e.g., LLaMA, which requires no 3D instruction
data, but exhibits superior 3D and multi-modal question-answering capacity. We
hope our work may cast a light on the community for extending 3D point clouds
to multi-modality applications. Code is available at
https://github.com/ZiyuGuo99/Point-Bind_Point-LLM. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.CL",
"cs.LG",
"cs.MM"
] |
2401.16212 | AnswerAI | Better Call GPT, Comparing Large Language Models Against Lawyers | [
"Lauren Martin",
"Nick Whitehouse",
"Stephanie Yiu",
"Lizzie Catterson",
"Rivindu Perera"
] | 2024-01-24 | This paper presents a groundbreaking comparison between Large Language Models
and traditional legal contract reviewers, Junior Lawyers and Legal Process
Outsourcers. We dissect whether LLMs can outperform humans in accuracy, speed,
and cost efficiency during contract review. Our empirical analysis benchmarks
LLMs against a ground truth set by Senior Lawyers, uncovering that advanced
models match or exceed human accuracy in determining legal issues. In speed,
LLMs complete reviews in mere seconds, eclipsing the hours required by their
human counterparts. Cost wise, LLMs operate at a fraction of the price,
offering a staggering 99.97 percent reduction in cost over traditional methods.
These results are not just statistics, they signal a seismic shift in legal
practice. LLMs stand poised to disrupt the legal industry, enhancing
accessibility and efficiency of legal services. Our research asserts that the
era of LLM dominance in legal contract review is upon us, challenging the
status quo and calling for a reimagined future of legal workflows. | null | cs.CY | [
"cs.CY",
"cs.CL"
] |
2305.09975 | HF | Smart Word Suggestions for Writing Assistance | [
"Chenshuo Wang",
"Shaoguang Mao",
"Tao Ge",
"Wenshan Wu",
"Xun Wang",
"Yan Xia",
"Jonathan Tien",
"Dongyan Zhao"
] | 2023-05-17 | Enhancing word usage is a desired feature for writing assistance. To further
advance research in this area, this paper introduces "Smart Word Suggestions"
(SWS) task and benchmark. Unlike other works, SWS emphasizes end-to-end
evaluation and presents a more realistic writing assistance scenario. This task
involves identifying words or phrases that require improvement and providing
substitution suggestions. The benchmark includes human-labeled data for
testing, a large distantly supervised dataset for training, and the framework
for evaluation. The test data includes 1,000 sentences written by English
learners, accompanied by over 16,000 substitution suggestions annotated by 10
native speakers. The training dataset comprises over 3.7 million sentences and
12.7 million suggestions generated through rules. Our experiments with seven
baselines demonstrate that SWS is a challenging task. Based on experimental
analysis, we suggest potential directions for future research on SWS. The
dataset and related codes is available at
https://github.com/microsoft/SmartWordSuggestions. | null | cs.CL | [
"cs.CL"
] |
2402.10009 | HF | Zero-Shot Unsupervised and Text-Based Audio Editing Using DDPM Inversion | [
"Hila Manor",
"Tomer Michaeli"
] | 2024-02-15 | Editing signals using large pre-trained models, in a zero-shot manner, has
recently seen rapid advancements in the image domain. However, this wave has
yet to reach the audio domain. In this paper, we explore two zero-shot editing
techniques for audio signals, which use DDPM inversion with pre-trained
diffusion models. The first, which we coin ZEro-shot Text-based Audio (ZETA)
editing, is adopted from the image domain. The second, named ZEro-shot
UnSupervized (ZEUS) editing, is a novel approach for discovering semantically
meaningful editing directions without supervision. When applied to music
signals, this method exposes a range of musically interesting modifications,
from controlling the participation of specific instruments to improvisations on
the melody. Samples and code can be found in
https://hilamanor.github.io/AudioEditing/ . | null | cs.SD | [
"cs.SD",
"cs.LG",
"eess.AS"
] |
2309.00775 | HF | Contrastive Feature Masking Open-Vocabulary Vision Transformer | [
"Dahun Kim",
"Anelia Angelova",
"Weicheng Kuo"
] | 2023-09-02 | We present Contrastive Feature Masking Vision Transformer (CFM-ViT) - an
image-text pretraining methodology that achieves simultaneous learning of
image- and region-level representation for open-vocabulary object detection
(OVD). Our approach combines the masked autoencoder (MAE) objective into the
contrastive learning objective to improve the representation for localization
tasks. Unlike standard MAE, we perform reconstruction in the joint image-text
embedding space, rather than the pixel space as is customary with the classical
MAE method, which causes the model to better learn region-level semantics.
Moreover, we introduce Positional Embedding Dropout (PED) to address scale
variation between image-text pretraining and detection finetuning by randomly
dropping out the positional embeddings during pretraining. PED improves
detection performance and enables the use of a frozen ViT backbone as a region
classifier, preventing the forgetting of open-vocabulary knowledge during
detection finetuning. On LVIS open-vocabulary detection benchmark, CFM-ViT
achieves a state-of-the-art 33.9 AP$r$, surpassing the best approach by 7.6
points and achieves better zero-shot detection transfer. Finally, CFM-ViT
acquires strong image-level representation, outperforming the state of the art
on 8 out of 12 metrics on zero-shot image-text retrieval benchmarks. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.LG"
] |
2306.07536 | Both | TART: A plug-and-play Transformer module for task-agnostic reasoning | [
"Kush Bhatia",
"Avanika Narayan",
"Christopher De Sa",
"Christopher Ré"
] | 2023-06-13 | Large language models (LLMs) exhibit in-context learning abilities which
enable the same model to perform several tasks without any task-specific
training. In contrast, traditional adaptation approaches, such as fine-tuning,
modify the underlying models for each specific task. In-context learning,
however, consistently underperforms task-specific tuning approaches even when
presented with the same examples. While most existing approaches (e.g., prompt
engineering) focus on the LLM's learned representations to patch this
performance gap, our analysis actually reveal that LLM representations contain
sufficient information to make good predictions. As such, we focus on the LLM's
reasoning abilities and demonstrate that this performance gap exists due to
their inability to perform simple probabilistic reasoning tasks. This raises an
intriguing question: Are LLMs actually capable of learning how to reason in a
task-agnostic manner? We answer this in the affirmative and propose TART which
generically improves an LLM's reasoning abilities using a synthetically trained
Transformer-based reasoning module. TART trains this reasoning module in a
task-agnostic manner using only synthetic logistic regression tasks and
composes it with an arbitrary real-world pre-trained model without any
additional training. With a single inference module, TART improves performance
across different model families (GPT-Neo, Pythia, BLOOM), model sizes (100M -
6B), tasks (14 NLP binary classification tasks), and even across different
modalities (audio and vision). Additionally, on the RAFT Benchmark, TART
improves GPT-Neo (125M)'s performance such that it outperforms BLOOM (176B),
and is within 4% of GPT-3 (175B). Our code and models are available at
https://github.com/HazyResearch/TART . | null | cs.LG | [
"cs.LG",
"cs.AI",
"cs.CL"
] |
2401.16861 | HF | Repositioning the Subject within Image | [
"Yikai Wang",
"Chenjie Cao",
"Ke Fan",
"Qiaole Dong",
"Yifan Li",
"Xiangyang Xue",
"Yanwei Fu"
] | 2024-01-30 | Current image manipulation primarily centers on static manipulation, such as
replacing specific regions within an image or altering its overall style. In
this paper, we introduce an innovative dynamic manipulation task, subject
repositioning. This task involves relocating a user-specified subject to a
desired position while preserving the image's fidelity. Our research reveals
that the fundamental sub-tasks of subject repositioning, which include filling
the void left by the repositioned subject, reconstructing obscured portions of
the subject and blending the subject to be consistent with surrounding areas,
can be effectively reformulated as a unified, prompt-guided inpainting task.
Consequently, we can employ a single diffusion generative model to address
these sub-tasks using various task prompts learned through our proposed task
inversion technique. Additionally, we integrate pre-processing and
post-processing techniques to further enhance the quality of subject
repositioning. These elements together form our SEgment-gEnerate-and-bLEnd
(SEELE) framework. To assess SEELE's effectiveness in subject repositioning, we
assemble a real-world subject repositioning dataset called ReS. Results of
SEELE on ReS demonstrate its efficacy. | null | cs.CV | [
"cs.CV"
] |
2404.09173 | Both | TransformerFAM: Feedback attention is working memory | [
"Dongseong Hwang",
"Weiran Wang",
"Zhuoyuan Huo",
"Khe Chai Sim",
"Pedro Moreno Mengibar"
] | 2024-04-14 | While Transformers have revolutionized deep learning, their quadratic
attention complexity hinders their ability to process infinitely long inputs.
We propose Feedback Attention Memory (FAM), a novel Transformer architecture
that leverages a feedback loop to enable the network to attend to its own
latent representations. This design fosters the emergence of working memory
within the Transformer, allowing it to process indefinitely long sequences.
TransformerFAM requires no additional weights, enabling seamless integration
with pre-trained models. Our experiments show that TransformerFAM significantly
improves Transformer performance on long-context tasks across various model
sizes (1B, 8B, and 24B). These results showcase the potential to empower Large
Language Models (LLMs) to process sequences of unlimited length. | null | cs.LG | [
"cs.LG",
"cs.AI",
"cs.CL"
] |
2407.16312 | HF | MOMAland: A Set of Benchmarks for Multi-Objective Multi-Agent Reinforcement Learning | [
"Florian Felten",
"Umut Ucak",
"Hicham Azmani",
"Gao Peng",
"Willem Röpke",
"Hendrik Baier",
"Patrick Mannion",
"Diederik M. Roijers",
"Jordan K. Terry",
"El-Ghazali Talbi",
"Grégoire Danoy",
"Ann Nowé",
"Roxana Rădulescu"
] | 2024-07-23 | Many challenging tasks such as managing traffic systems, electricity grids,
or supply chains involve complex decision-making processes that must balance
multiple conflicting objectives and coordinate the actions of various
independent decision-makers (DMs). One perspective for formalising and
addressing such tasks is multi-objective multi-agent reinforcement learning
(MOMARL). MOMARL broadens reinforcement learning (RL) to problems with multiple
agents each needing to consider multiple objectives in their learning process.
In reinforcement learning research, benchmarks are crucial in facilitating
progress, evaluation, and reproducibility. The significance of benchmarks is
underscored by the existence of numerous benchmark frameworks developed for
various RL paradigms, including single-agent RL (e.g., Gymnasium), multi-agent
RL (e.g., PettingZoo), and single-agent multi-objective RL (e.g.,
MO-Gymnasium). To support the advancement of the MOMARL field, we introduce
MOMAland, the first collection of standardised environments for multi-objective
multi-agent reinforcement learning. MOMAland addresses the need for
comprehensive benchmarking in this emerging field, offering over 10 diverse
environments that vary in the number of agents, state representations, reward
structures, and utility considerations. To provide strong baselines for future
research, MOMAland also includes algorithms capable of learning policies in
such settings. | null | cs.MA | [
"cs.MA",
"cs.AI",
"cs.GT"
] |
2406.11801 | HF | Safety Arithmetic: A Framework for Test-time Safety Alignment of Language Models by Steering Parameters and Activations | [
"Rima Hazra",
"Sayan Layek",
"Somnath Banerjee",
"Soujanya Poria"
] | 2024-06-17 | Ensuring the safe alignment of large language models (LLMs) with human values
is critical as they become integral to applications like translation and
question answering. Current alignment methods struggle with dynamic user
intentions and complex objectives, making models vulnerable to generating
harmful content. We propose Safety Arithmetic, a training-free framework
enhancing LLM safety across different scenarios: Base models, Supervised
fine-tuned models (SFT), and Edited models. Safety Arithmetic involves Harm
Direction Removal to avoid harmful content and Safety Alignment to promote safe
responses. Additionally, we present NoIntentEdit, a dataset highlighting edit
instances that could compromise model safety if used unintentionally. Our
experiments show that Safety Arithmetic significantly improves safety measures,
reduces over-safety, and maintains model utility, outperforming existing
methods in ensuring safe content generation. | null | cs.CL | [
"cs.CL"
] |
2406.16793 | HF | Adam-mini: Use Fewer Learning Rates To Gain More | [
"Yushun Zhang",
"Congliang Chen",
"Ziniu Li",
"Tian Ding",
"Chenwei Wu",
"Yinyu Ye",
"Zhi-Quan Luo",
"Ruoyu Sun"
] | 2024-06-24 | We propose Adam-mini, an optimizer that achieves on-par or better performance
than AdamW with 45% to 50% less memory footprint. Adam-mini reduces memory by
cutting down the learning rate resources in Adam (i.e., $1/\sqrt{v}$). We find
that $\geq$ 90% of these learning rates in $v$ could be harmlessly removed if
we (1) carefully partition the parameters into blocks following our proposed
principle on Hessian structure; (2) assign a single but good learning rate to
each parameter block. We further find that, for each of these parameter blocks,
there exists a single high-quality learning rate that can outperform Adam,
provided that sufficient resources are available to search it out. We then
provide one cost-effective way to find good learning rates and propose
Adam-mini. Empirically, we verify that Adam-mini performs on par or better than
AdamW on various language models sized from 125M to 7B for pre-training,
supervised fine-tuning, and RLHF. The reduced memory footprint of Adam-mini
also alleviates communication overheads among GPUs and CPUs, thereby increasing
throughput. For instance, Adam-mini achieves 49.6% higher throughput than AdamW
when pre-training Llama2-7B on $2\times$ A800-80GB GPUs, which saves 33%
wall-clock time for pre-training. | null | cs.LG | [
"cs.LG",
"cs.AI"
] |
2406.13527 | HF | 4K4DGen: Panoramic 4D Generation at 4K Resolution | [
"Renjie Li",
"Panwang Pan",
"Bangbang Yang",
"Dejia Xu",
"Shijie Zhou",
"Xuanyang Zhang",
"Zeming Li",
"Achuta Kadambi",
"Zhangyang Wang",
"Zhiwen Fan"
] | 2024-06-19 | The blooming of virtual reality and augmented reality (VR/AR) technologies
has driven an increasing demand for the creation of high-quality, immersive,
and dynamic environments. However, existing generative techniques either focus
solely on dynamic objects or perform outpainting from a single perspective
image, failing to meet the needs of VR/AR applications. In this work, we tackle
the challenging task of elevating a single panorama to an immersive 4D
experience. For the first time, we demonstrate the capability to generate
omnidirectional dynamic scenes with 360-degree views at 4K resolution, thereby
providing an immersive user experience. Our method introduces a pipeline that
facilitates natural scene animations and optimizes a set of 4D Gaussians using
efficient splatting techniques for real-time exploration. To overcome the lack
of scene-scale annotated 4D data and models, especially in panoramic formats,
we propose a novel Panoramic Denoiser that adapts generic 2D diffusion priors
to animate consistently in 360-degree images, transforming them into panoramic
videos with dynamic scenes at targeted regions. Subsequently, we elevate the
panoramic video into a 4D immersive environment while preserving spatial and
temporal consistency. By transferring prior knowledge from 2D models in the
perspective domain to the panoramic domain and the 4D lifting with spatial
appearance and geometry regularization, we achieve high-quality Panorama-to-4D
generation at a resolution of (4096 $\times$ 2048) for the first time. See the
project website at https://4k4dgen.github.io. | null | cs.CV | [
"cs.CV"
] |
2306.02561 | Both | LLM-Blender: Ensembling Large Language Models with Pairwise Ranking and Generative Fusion | [
"Dongfu Jiang",
"Xiang Ren",
"Bill Yuchen Lin"
] | 2023-06-05 | We present LLM-Blender, an ensembling framework designed to attain
consistently superior performance by leveraging the diverse strengths of
multiple open-source large language models (LLMs). Our framework consists of
two modules: PairRanker and GenFuser, addressing the observation that optimal
LLMs for different examples can significantly vary. PairRanker employs a
specialized pairwise comparison method to distinguish subtle differences
between candidate outputs. It jointly encodes the input text and a pair of
candidates, using cross-attention encoders to determine the superior one. Our
results demonstrate that PairRanker exhibits the highest correlation with
ChatGPT-based ranking. Then, GenFuser aims to merge the top-ranked candidates,
generating an improved output by capitalizing on their strengths and mitigating
their weaknesses. To facilitate large-scale evaluation, we introduce a
benchmark dataset, MixInstruct, which is a mixture of multiple instruction
datasets featuring oracle pairwise comparisons. Our LLM-Blender significantly
outperform individual LLMs and baseline methods across various metrics,
establishing a substantial performance gap. | null | cs.CL | [
"cs.CL",
"cs.AI",
"cs.LG"
] |
2404.05726 | HF | MA-LMM: Memory-Augmented Large Multimodal Model for Long-Term Video Understanding | [
"Bo He",
"Hengduo Li",
"Young Kyun Jang",
"Menglin Jia",
"Xuefei Cao",
"Ashish Shah",
"Abhinav Shrivastava",
"Ser-Nam Lim"
] | 2024-04-08 | With the success of large language models (LLMs), integrating the vision
model into LLMs to build vision-language foundation models has gained much more
interest recently. However, existing LLM-based large multimodal models (e.g.,
Video-LLaMA, VideoChat) can only take in a limited number of frames for short
video understanding. In this study, we mainly focus on designing an efficient
and effective model for long-term video understanding. Instead of trying to
process more frames simultaneously like most existing work, we propose to
process videos in an online manner and store past video information in a memory
bank. This allows our model to reference historical video content for long-term
analysis without exceeding LLMs' context length constraints or GPU memory
limits. Our memory bank can be seamlessly integrated into current multimodal
LLMs in an off-the-shelf manner. We conduct extensive experiments on various
video understanding tasks, such as long-video understanding, video question
answering, and video captioning, and our model can achieve state-of-the-art
performances across multiple datasets. Code available at
https://boheumd.github.io/MA-LMM/. | null | cs.CV | [
"cs.CV"
] |
2310.05707 | AnswerAI | Guiding Language Model Reasoning with Planning Tokens | [
"Xinyi Wang",
"Lucas Caccia",
"Oleksiy Ostapenko",
"Xingdi Yuan",
"William Yang Wang",
"Alessandro Sordoni"
] | 2023-10-09 | Large language models (LLMs) have recently attracted considerable interest
for their ability to perform complex reasoning tasks, such as chain-of-thought
(CoT) reasoning. However, most of the existing approaches to enhance this
ability rely heavily on data-driven methods, while neglecting the structural
aspects of the model's reasoning capacity. To encourage a more structural
generation of CoT steps, we propose a hierarchical generation scheme: we let
the LM generate a planning token at the start of each reasoning step,
intuitively serving as a high-level plan of the current step, and add their
embeddings to the model parameters. Our approach requires a negligible increase
in trainable parameters (0.001%) and can be applied through either full
fine-tuning or a more parameter-efficient scheme. We demonstrate our method's
effectiveness by applying it to three different LLMs, showing notable accuracy
improvements across three math word problem datasets and one multihop QA
dataset with respect to standard fine-tuning baselines. | null | cs.CL | [
"cs.CL",
"cs.AI",
"cs.LG"
] |
2305.02678 | HF | Real-Time Neural Appearance Models | [
"Tizian Zeltner",
"Fabrice Rousselle",
"Andrea Weidlich",
"Petrik Clarberg",
"Jan Novák",
"Benedikt Bitterli",
"Alex Evans",
"Tomáš Davidovič",
"Simon Kallweit",
"Aaron Lefohn"
] | 2023-05-04 | We present a complete system for real-time rendering of scenes with complex
appearance previously reserved for offline use. This is achieved with a
combination of algorithmic and system level innovations.
Our appearance model utilizes learned hierarchical textures that are
interpreted using neural decoders, which produce reflectance values and
importance-sampled directions. To best utilize the modeling capacity of the
decoders, we equip the decoders with two graphics priors. The first prior --
transformation of directions into learned shading frames -- facilitates
accurate reconstruction of mesoscale effects. The second prior -- a microfacet
sampling distribution -- allows the neural decoder to perform importance
sampling efficiently. The resulting appearance model supports anisotropic
sampling and level-of-detail rendering, and allows baking deeply layered
material graphs into a compact unified neural representation.
By exposing hardware accelerated tensor operations to ray tracing shaders, we
show that it is possible to inline and execute the neural decoders efficiently
inside a real-time path tracer. We analyze scalability with increasing number
of neural materials and propose to improve performance using code optimized for
coherent and divergent execution. Our neural material shaders can be over an
order of magnitude faster than non-neural layered materials. This opens up the
door for using film-quality visuals in real-time applications such as games and
live previews. | 10.1145/3659577 | cs.GR | [
"cs.GR"
] |
2402.14327 | HF | Subobject-level Image Tokenization | [
"Delong Chen",
"Samuel Cahyawijaya",
"Jianfeng Liu",
"Baoyuan Wang",
"Pascale Fung"
] | 2024-02-22 | Transformer-based vision models typically tokenize images into fixed-size
square patches as input units, which lacks the adaptability to image content
and overlooks the inherent pixel grouping structure. Inspired by the subword
tokenization widely adopted in language models, we propose an image tokenizer
at a subobject level, where the subobjects are represented by semantically
meaningful image segments obtained by segmentation models (e.g., segment
anything models). To implement a learning system based on subobject
tokenization, we first introduced a Direct Segment Anything Model (DirectSAM)
that efficiently produces comprehensive segmentation of subobjects, then embed
subobjects into compact latent vectors and fed them into a large language model
for vision language learning. Empirical results demonstrated that our
subobject-level tokenization significantly facilitates efficient learning of
translating images into object and attribute descriptions compared to the
traditional patch-level tokenization. Codes and models are open-sourced at
https://github.com/ChenDelong1999/subobjects. | null | cs.CV | [
"cs.CV",
"cs.CL"
] |
2402.06852 | HF | ChemLLM: A Chemical Large Language Model | [
"Di Zhang",
"Wei Liu",
"Qian Tan",
"Jingdan Chen",
"Hang Yan",
"Yuliang Yan",
"Jiatong Li",
"Weiran Huang",
"Xiangyu Yue",
"Wanli Ouyang",
"Dongzhan Zhou",
"Shufei Zhang",
"Mao Su",
"Han-Sen Zhong",
"Yuqiang Li"
] | 2024-02-10 | Large language models (LLMs) have made impressive progress in chemistry
applications. However, the community lacks an LLM specifically designed for
chemistry. The main challenges are two-fold: firstly, most chemical data and
scientific knowledge are stored in structured databases, which limits the
model's ability to sustain coherent dialogue when used directly. Secondly,
there is an absence of objective and fair benchmark that encompass most
chemistry tasks. Here, we introduce ChemLLM, a comprehensive framework that
features the first LLM dedicated to chemistry. It also includes ChemData, a
dataset specifically designed for instruction tuning, and ChemBench, a robust
benchmark covering nine essential chemistry tasks. ChemLLM is adept at
performing various tasks across chemical disciplines with fluid dialogue
interaction. Notably, ChemLLM achieves results comparable to GPT-4 on the core
chemical tasks and demonstrates competitive performance with LLMs of similar
size in general scenarios. ChemLLM paves a new path for exploration in chemical
studies, and our method of incorporating structured chemical knowledge into
dialogue systems sets a new standard for developing LLMs in various scientific
fields. Codes, Datasets, and Model weights are publicly accessible at
https://hf.co/AI4Chem | null | cs.AI | [
"cs.AI",
"cs.CL"
] |
2305.15077 | AnswerAI | Contrastive Learning of Sentence Embeddings from Scratch | [
"Junlei Zhang",
"Zhenzhong Lan",
"Junxian He"
] | 2023-05-24 | Contrastive learning has been the dominant approach to train state-of-the-art
sentence embeddings. Previous studies have typically learned sentence
embeddings either through the use of human-annotated natural language inference
(NLI) data or via large-scale unlabeled sentences in an unsupervised manner.
However, even in the case of unlabeled data, their acquisition presents
challenges in certain domains due to various reasons. To address these issues,
we present SynCSE, a contrastive learning framework that trains sentence
embeddings with synthesized data. Specifically, we explore utilizing large
language models to synthesize the required data samples for contrastive
learning, including (1) producing positive and negative annotations given
unlabeled sentences (SynCSE-partial), and (2) generating sentences along with
their corresponding annotations from scratch (SynCSE-scratch). Experimental
results on sentence similarity and reranking tasks indicate that both
SynCSE-partial and SynCSE-scratch greatly outperform unsupervised baselines,
and SynCSE-partial even achieves comparable performance to the supervised
models in most settings. | null | cs.CL | [
"cs.CL"
] |
2409.11136 | HF | Promptriever: Instruction-Trained Retrievers Can Be Prompted Like Language Models | [
"Orion Weller",
"Benjamin Van Durme",
"Dawn Lawrie",
"Ashwin Paranjape",
"Yuhao Zhang",
"Jack Hessel"
] | 2024-09-17 | Instruction-tuned language models (LM) are able to respond to imperative
commands, providing a more natural user interface compared to their base
counterparts. In this work, we present Promptriever, the first retrieval model
able to be prompted like an LM. To train Promptriever, we curate and release a
new instance-level instruction training set from MS MARCO, spanning nearly 500k
instances. Promptriever not only achieves strong performance on standard
retrieval tasks, but also follows instructions. We observe: (1) large gains
(reaching SoTA) on following detailed relevance instructions (+14.3 p-MRR /
+3.1 nDCG on FollowIR), (2) significantly increased robustness to lexical
choices/phrasing in the query+instruction (+12.9 Robustness@10 on InstructIR),
and (3) the ability to perform hyperparameter search via prompting to reliably
improve retrieval performance (+1.4 average increase on BEIR). Promptriever
demonstrates that retrieval models can be controlled with prompts on a
per-query basis, setting the stage for future work aligning LM prompting
techniques with information retrieval. | null | cs.IR | [
"cs.IR",
"cs.CL",
"cs.LG"
] |
2311.10702 | Both | Camels in a Changing Climate: Enhancing LM Adaptation with Tulu 2 | [
"Hamish Ivison",
"Yizhong Wang",
"Valentina Pyatkin",
"Nathan Lambert",
"Matthew Peters",
"Pradeep Dasigi",
"Joel Jang",
"David Wadden",
"Noah A. Smith",
"Iz Beltagy",
"Hannaneh Hajishirzi"
] | 2023-11-17 | Since the release of T\"ULU [Wang et al., 2023b], open resources for
instruction tuning have developed quickly, from better base models to new
finetuning techniques. We test and incorporate a number of these advances into
T\"ULU, resulting in T\"ULU 2, a suite of improved T\"ULU models for advancing
the understanding and best practices of adapting pretrained language models to
downstream tasks and user preferences. Concretely, we release: (1)
T\"ULU-V2-mix, an improved collection of high-quality instruction datasets; (2)
T\"ULU 2, LLAMA-2 models finetuned on the V2 mixture; (3) T\"ULU 2+DPO, T\"ULU
2 models trained with direct preference optimization (DPO), including the
largest DPO-trained model to date (T\"ULU 2+DPO 70B); (4) CODE T\"ULU 2, CODE
LLAMA models finetuned on our V2 mix that outperform CODE LLAMA and its
instruction-tuned variant, CODE LLAMA-Instruct. Our evaluation from multiple
perspectives shows that the T\"ULU 2 suite achieves state-of-the-art
performance among open models and matches or exceeds the performance of
GPT-3.5-turbo-0301 on several benchmarks. We release all the checkpoints, data,
training and evaluation code to facilitate future open efforts on adapting
large language models. | null | cs.CL | [
"cs.CL"
] |
2307.02421 | HF | DragonDiffusion: Enabling Drag-style Manipulation on Diffusion Models | [
"Chong Mou",
"Xintao Wang",
"Jiechong Song",
"Ying Shan",
"Jian Zhang"
] | 2023-07-05 | Despite the ability of existing large-scale text-to-image (T2I) models to
generate high-quality images from detailed textual descriptions, they often
lack the ability to precisely edit the generated or real images. In this paper,
we propose a novel image editing method, DragonDiffusion, enabling Drag-style
manipulation on Diffusion models. Specifically, we construct classifier
guidance based on the strong correspondence of intermediate features in the
diffusion model. It can transform the editing signals into gradients via
feature correspondence loss to modify the intermediate representation of the
diffusion model. Based on this guidance strategy, we also build a multi-scale
guidance to consider both semantic and geometric alignment. Moreover, a
cross-branch self-attention is added to maintain the consistency between the
original image and the editing result. Our method, through an efficient design,
achieves various editing modes for the generated or real images, such as object
moving, object resizing, object appearance replacement, and content dragging.
It is worth noting that all editing and content preservation signals come from
the image itself, and the model does not require fine-tuning or additional
modules. Our source code will be available at
https://github.com/MC-E/DragonDiffusion. | null | cs.CV | [
"cs.CV"
] |
2404.16771 | HF | ConsistentID: Portrait Generation with Multimodal Fine-Grained Identity Preserving | [
"Jiehui Huang",
"Xiao Dong",
"Wenhui Song",
"Hanhui Li",
"Jun Zhou",
"Yuhao Cheng",
"Shutao Liao",
"Long Chen",
"Yiqiang Yan",
"Shengcai Liao",
"Xiaodan Liang"
] | 2024-04-25 | Diffusion-based technologies have made significant strides, particularly in
personalized and customized facialgeneration. However, existing methods face
challenges in achieving high-fidelity and detailed identity (ID)consistency,
primarily due to insufficient fine-grained control over facial areas and the
lack of a comprehensive strategy for ID preservation by fully considering
intricate facial details and the overall face. To address these limitations, we
introduce ConsistentID, an innovative method crafted for
diverseidentity-preserving portrait generation under fine-grained multimodal
facial prompts, utilizing only a single reference image. ConsistentID comprises
two key components: a multimodal facial prompt generator that combines facial
features, corresponding facial descriptions and the overall facial context to
enhance precision in facial details, and an ID-preservation network optimized
through the facial attention localization strategy, aimed at preserving ID
consistency in facial regions. Together, these components significantly enhance
the accuracy of ID preservation by introducing fine-grained multimodal ID
information from facial regions. To facilitate training of ConsistentID, we
present a fine-grained portrait dataset, FGID, with over 500,000 facial images,
offering greater diversity and comprehensiveness than existing public facial
datasets. % such as LAION-Face, CelebA, FFHQ, and SFHQ. Experimental results
substantiate that our ConsistentID achieves exceptional precision and diversity
in personalized facial generation, surpassing existing methods in the MyStyle
dataset. Furthermore, while ConsistentID introduces more multimodal ID
information, it maintains a fast inference speed during generation. | null | cs.CV | [
"cs.CV",
"cs.AI"
] |
2305.03695 | HF | Vera: A General-Purpose Plausibility Estimation Model for Commonsense Statements | [
"Jiacheng Liu",
"Wenya Wang",
"Dianzhuo Wang",
"Noah A. Smith",
"Yejin Choi",
"Hannaneh Hajishirzi"
] | 2023-05-05 | Despite the much discussed capabilities of today's language models, they are
still prone to silly and unexpected commonsense failures. We consider a
retrospective verification approach that reflects on the correctness of LM
outputs, and introduce Vera, a general-purpose model that estimates the
plausibility of declarative statements based on commonsense knowledge. Trained
on ~7M commonsense statements created from 19 QA datasets and two large-scale
knowledge bases, and with a combination of three training objectives, Vera is a
versatile model that effectively separates correct from incorrect statements
across diverse commonsense domains. When applied to solving commonsense
problems in the verification format, Vera substantially outperforms existing
models that can be repurposed for commonsense verification, and it further
exhibits generalization capabilities to unseen tasks and provides
well-calibrated outputs. We find that Vera excels at filtering LM-generated
commonsense knowledge and is useful in detecting erroneous commonsense
statements generated by models like ChatGPT in real-world settings. | null | cs.CL | [
"cs.CL",
"cs.AI"
] |
2407.07523 | HF | SHERL: Synthesizing High Accuracy and Efficient Memory for Resource-Limited Transfer Learning | [
"Haiwen Diao",
"Bo Wan",
"Xu Jia",
"Yunzhi Zhuge",
"Ying Zhang",
"Huchuan Lu",
"Long Chen"
] | 2024-07-10 | Parameter-efficient transfer learning (PETL) has emerged as a flourishing
research field for adapting large pre-trained models to downstream tasks,
greatly reducing trainable parameters while grappling with memory challenges
during fine-tuning. To address it, memory-efficient series (METL) avoid
backpropagating gradients through the large backbone. However, they compromise
by exclusively relying on frozen intermediate outputs and limiting the
exhaustive exploration of prior knowledge from pre-trained models. Moreover,
the dependency and redundancy between cross-layer features are frequently
overlooked, thereby submerging more discriminative representations and causing
an inherent performance gap (vs. conventional PETL methods). Hence, we propose
an innovative METL strategy called SHERL for resource-limited scenarios to
decouple the entire adaptation into two successive and complementary processes.
In the early route, intermediate outputs are consolidated via an
anti-redundancy operation, enhancing their compatibility for subsequent
interactions; thereby in the late route, utilizing minimal late pre-trained
layers could alleviate the peak demand on memory overhead and regulate these
fairly flexible features into more adaptive and powerful representations for
new domains. Extensive ablations on vision-and-language and language-only tasks
show that SHERL combines the strengths of both parameter and memory-efficient
techniques, performing on-par or better across diverse architectures with lower
memory during fine-tuning. Our code is publicly available at:
https://github.com/Paranioar/SHERL. | null | cs.CV | [
"cs.CV",
"cs.MM"
] |
2406.14546 | AnswerAI | Connecting the Dots: LLMs can Infer and Verbalize Latent Structure from Disparate Training Data | [
"Johannes Treutlein",
"Dami Choi",
"Jan Betley",
"Cem Anil",
"Samuel Marks",
"Roger Baker Grosse",
"Owain Evans"
] | 2024-06-20 | One way to address safety risks from large language models (LLMs) is to
censor dangerous knowledge from their training data. While this removes the
explicit information, implicit information can remain scattered across various
training documents. Could an LLM infer the censored knowledge by piecing
together these implicit hints? As a step towards answering this question, we
study inductive out-of-context reasoning (OOCR), a type of generalization in
which LLMs infer latent information from evidence distributed across training
documents and apply it to downstream tasks without in-context learning. Using a
suite of five tasks, we demonstrate that frontier LLMs can perform inductive
OOCR. In one experiment we finetune an LLM on a corpus consisting only of
distances between an unknown city and other known cities. Remarkably, without
in-context examples or Chain of Thought, the LLM can verbalize that the unknown
city is Paris and use this fact to answer downstream questions. Further
experiments show that LLMs trained only on individual coin flip outcomes can
verbalize whether the coin is biased, and those trained only on pairs
$(x,f(x))$ can articulate a definition of $f$ and compute inverses. While OOCR
succeeds in a range of cases, we also show that it is unreliable, particularly
for smaller LLMs learning complex structures. Overall, the ability of LLMs to
"connect the dots" without explicit in-context learning poses a potential
obstacle to monitoring and controlling the knowledge acquired by LLMs. | null | cs.CL | [
"cs.CL",
"cs.AI",
"cs.LG"
] |
2307.10936 | HF | PASTA: Pretrained Action-State Transformer Agents | [
"Raphael Boige",
"Yannis Flet-Berliac",
"Arthur Flajolet",
"Guillaume Richard",
"Thomas Pierrot"
] | 2023-07-20 | Self-supervised learning has brought about a revolutionary paradigm shift in
various computing domains, including NLP, vision, and biology. Recent
approaches involve pre-training transformer models on vast amounts of unlabeled
data, serving as a starting point for efficiently solving downstream tasks. In
reinforcement learning, researchers have recently adapted these approaches,
developing models pre-trained on expert trajectories. This advancement enables
the models to tackle a broad spectrum of tasks, ranging from robotics to
recommendation systems. However, existing methods mostly rely on intricate
pre-training objectives tailored to specific downstream applications. This
paper conducts a comprehensive investigation of models, referred to as
pre-trained action-state transformer agents (PASTA). Our study covers a unified
methodology and covers an extensive set of general downstream tasks including
behavioral cloning, offline RL, sensor failure robustness, and dynamics change
adaptation. Our objective is to systematically compare various design choices
and offer valuable insights that will aid practitioners in developing robust
models. Key highlights of our study include tokenization at the component level
for actions and states, the use of fundamental pre-training objectives such as
next token prediction or masked language modeling, simultaneous training of
models across multiple domains, and the application of various fine-tuning
strategies. In this study, the developed models contain fewer than 7 million
parameters allowing a broad community to use these models and reproduce our
experiments. We hope that this study will encourage further research into the
use of transformers with first principle design choices to represent RL
trajectories and contribute to robust policy learning. | null | cs.AI | [
"cs.AI",
"cs.LG"
] |
2307.14535 | HF | Scaling Up and Distilling Down: Language-Guided Robot Skill Acquisition | [
"Huy Ha",
"Pete Florence",
"Shuran Song"
] | 2023-07-26 | We present a framework for robot skill acquisition, which 1) efficiently
scale up data generation of language-labelled robot data and 2) effectively
distills this data down into a robust multi-task language-conditioned
visuo-motor policy. For (1), we use a large language model (LLM) to guide
high-level planning, and sampling-based robot planners (e.g. motion or grasp
samplers) for generating diverse and rich manipulation trajectories. To
robustify this data-collection process, the LLM also infers a code-snippet for
the success condition of each task, simultaneously enabling the data-collection
process to detect failure and retry as well as the automatic labeling of
trajectories with success/failure. For (2), we extend the diffusion policy
single-task behavior-cloning approach to multi-task settings with language
conditioning. Finally, we propose a new multi-task benchmark with 18 tasks
across five domains to test long-horizon behavior, common-sense reasoning,
tool-use, and intuitive physics. We find that our distilled policy successfully
learned the robust retrying behavior in its data collection procedure, while
improving absolute success rates by 33.2% on average across five domains. Code,
data, and additional qualitative results are available on
https://www.cs.columbia.edu/~huy/scalingup/. | null | cs.RO | [
"cs.RO",
"I.2.9"
] |
2405.18719 | AnswerAI | Contextual Position Encoding: Learning to Count What's Important | [
"Olga Golovneva",
"Tianlu Wang",
"Jason Weston",
"Sainbayar Sukhbaatar"
] | 2024-05-29 | The attention mechanism is a critical component of Large Language Models
(LLMs) that allows tokens in a sequence to interact with each other, but is
order-invariant. Incorporating position encoding (PE) makes it possible to
address by position, such as attending to the i-th token. However, current PE
methods use token counts to derive position, and thus cannot generalize to
higher levels of abstraction, such as attending to the i-th sentence. In this
paper, we propose a new position encoding method, Contextual Position Encoding
(CoPE), that allows positions to be conditioned on context by incrementing
position only on certain tokens determined by the model. This allows more
general position addressing such as attending to the $i$-th particular word,
noun, or sentence. We show that CoPE can solve the selective copy, counting and
Flip-Flop tasks where popular position embeddings fail, and improves perplexity
on language modeling and coding tasks. | null | cs.CL | [
"cs.CL",
"cs.AI"
] |
2307.05462 | HF | Efficient 3D Articulated Human Generation with Layered Surface Volumes | [
"Yinghao Xu",
"Wang Yifan",
"Alexander W. Bergman",
"Menglei Chai",
"Bolei Zhou",
"Gordon Wetzstein"
] | 2023-07-11 | Access to high-quality and diverse 3D articulated digital human assets is
crucial in various applications, ranging from virtual reality to social
platforms. Generative approaches, such as 3D generative adversarial networks
(GANs), are rapidly replacing laborious manual content creation tools. However,
existing 3D GAN frameworks typically rely on scene representations that
leverage either template meshes, which are fast but offer limited quality, or
volumes, which offer high capacity but are slow to render, thereby limiting the
3D fidelity in GAN settings. In this work, we introduce layered surface volumes
(LSVs) as a new 3D object representation for articulated digital humans. LSVs
represent a human body using multiple textured mesh layers around a
conventional template. These layers are rendered using alpha compositing with
fast differentiable rasterization, and they can be interpreted as a volumetric
representation that allocates its capacity to a manifold of finite thickness
around the template. Unlike conventional single-layer templates that struggle
with representing fine off-surface details like hair or accessories, our
surface volumes naturally capture such details. LSVs can be articulated, and
they exhibit exceptional efficiency in GAN settings, where a 2D generator
learns to synthesize the RGBA textures for the individual layers. Trained on
unstructured, single-view 2D image datasets, our LSV-GAN generates high-quality
and view-consistent 3D articulated digital humans without the need for
view-inconsistent 2D upsampling networks. | null | cs.CV | [
"cs.CV"
] |
2307.04787 | HF | Collaborative Score Distillation for Consistent Visual Synthesis | [
"Subin Kim",
"Kyungmin Lee",
"June Suk Choi",
"Jongheon Jeong",
"Kihyuk Sohn",
"Jinwoo Shin"
] | 2023-07-04 | Generative priors of large-scale text-to-image diffusion models enable a wide
range of new generation and editing applications on diverse visual modalities.
However, when adapting these priors to complex visual modalities, often
represented as multiple images (e.g., video), achieving consistency across a
set of images is challenging. In this paper, we address this challenge with a
novel method, Collaborative Score Distillation (CSD). CSD is based on the Stein
Variational Gradient Descent (SVGD). Specifically, we propose to consider
multiple samples as "particles" in the SVGD update and combine their score
functions to distill generative priors over a set of images synchronously.
Thus, CSD facilitates seamless integration of information across 2D images,
leading to a consistent visual synthesis across multiple samples. We show the
effectiveness of CSD in a variety of tasks, encompassing the visual editing of
panorama images, videos, and 3D scenes. Our results underline the competency of
CSD as a versatile method for enhancing inter-sample consistency, thereby
broadening the applicability of text-to-image diffusion models. | null | cs.CV | [
"cs.CV",
"cs.LG"
] |
2307.02499 | HF | mPLUG-DocOwl: Modularized Multimodal Large Language Model for Document Understanding | [
"Jiabo Ye",
"Anwen Hu",
"Haiyang Xu",
"Qinghao Ye",
"Ming Yan",
"Yuhao Dan",
"Chenlin Zhao",
"Guohai Xu",
"Chenliang Li",
"Junfeng Tian",
"Qian Qi",
"Ji Zhang",
"Fei Huang"
] | 2023-07-04 | Document understanding refers to automatically extract, analyze and
comprehend information from various types of digital documents, such as a web
page. Existing Multi-model Large Language Models (MLLMs), including mPLUG-Owl,
have demonstrated promising zero-shot capabilities in shallow OCR-free text
recognition, indicating their potential for OCR-free document understanding.
Nevertheless, without in-domain training, these models tend to ignore
fine-grained OCR features, such as sophisticated tables or large blocks of
text, which are essential for OCR-free document understanding. In this paper,
we propose mPLUG-DocOwl based on mPLUG-Owl for OCR-free document understanding.
Specifically, we first construct a instruction tuning dataset featuring a wide
range of visual-text understanding tasks. Then, we strengthen the OCR-free
document understanding ability by jointly train the model on language-only,
general vision-and-language, and document instruction tuning dataset with our
unified instruction tuning strategy. We also build an OCR-free document
instruction understanding evaluation set LLMDoc to better compare models'
capabilities on instruct compliance and document understanding. Experimental
results show that our model outperforms existing multi-modal models,
demonstrating its strong ability of document understanding. Besides, without
specific fine-tuning, mPLUG-DocOwl generalizes well on various downstream
tasks. Our code, models, training data and evaluation set are available at
https://github.com/X-PLUG/mPLUG-DocOwl. | null | cs.CL | [
"cs.CL",
"cs.AI"
] |
2308.04445 | AnswerAI | Getting from Generative AI to Trustworthy AI: What LLMs might learn from Cyc | [
"Doug Lenat",
"Gary Marcus"
] | 2023-07-31 | Generative AI, the most popular current approach to AI, consists of large
language models (LLMs) that are trained to produce outputs that are plausible,
but not necessarily correct. Although their abilities are often uncanny, they
are lacking in aspects of reasoning, leading LLMs to be less than completely
trustworthy. Furthermore, their results tend to be both unpredictable and
uninterpretable.
We lay out 16 desiderata for future AI, and discuss an alternative approach
to AI which could theoretically address many of the limitations associated with
current approaches: AI educated with curated pieces of explicit knowledge and
rules of thumb, enabling an inference engine to automatically deduce the
logical entailments of all that knowledge. Even long arguments produced this
way can be both trustworthy and interpretable, since the full step-by-step line
of reasoning is always available, and for each step the provenance of the
knowledge used can be documented and audited. There is however a catch: if the
logical language is expressive enough to fully represent the meaning of
anything we can say in English, then the inference engine runs much too slowly.
That's why symbolic AI systems typically settle for some fast but much less
expressive logic, such as knowledge graphs. We describe how one AI system, Cyc,
has developed ways to overcome that tradeoff and is able to reason in higher
order logic in real time.
We suggest that any trustworthy general AI will need to hybridize the
approaches, the LLM approach and more formal approach, and lay out a path to
realizing that dream. | null | cs.LG | [
"cs.LG",
"cs.AI",
"I.2.0"
] |
2312.06742 | HF | Honeybee: Locality-enhanced Projector for Multimodal LLM | [
"Junbum Cha",
"Wooyoung Kang",
"Jonghwan Mun",
"Byungseok Roh"
] | 2023-12-11 | In Multimodal Large Language Models (MLLMs), a visual projector plays a
crucial role in bridging pre-trained vision encoders with LLMs, enabling
profound visual understanding while harnessing the LLMs' robust capabilities.
Despite the importance of the visual projector, it has been relatively less
explored. In this study, we first identify two essential projector properties:
(i) flexibility in managing the number of visual tokens, crucial for MLLMs'
overall efficiency, and (ii) preservation of local context from visual
features, vital for spatial understanding. Based on these findings, we propose
a novel projector design that is both flexible and locality-enhanced,
effectively satisfying the two desirable properties. Additionally, we present
comprehensive strategies to effectively utilize multiple and multifaceted
instruction datasets. Through extensive experiments, we examine the impact of
individual design choices. Finally, our proposed MLLM, Honeybee, remarkably
outperforms previous state-of-the-art methods across various benchmarks,
including MME, MMBench, SEED-Bench, and LLaVA-Bench, achieving significantly
higher efficiency. Code and models are available at
https://github.com/kakaobrain/honeybee. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.CL",
"cs.LG"
] |
2309.03409 | Both | Large Language Models as Optimizers | [
"Chengrun Yang",
"Xuezhi Wang",
"Yifeng Lu",
"Hanxiao Liu",
"Quoc V. Le",
"Denny Zhou",
"Xinyun Chen"
] | 2023-09-07 | Optimization is ubiquitous. While derivative-based algorithms have been
powerful tools for various problems, the absence of gradient imposes challenges
on many real-world applications. In this work, we propose Optimization by
PROmpting (OPRO), a simple and effective approach to leverage large language
models (LLMs) as optimizers, where the optimization task is described in
natural language. In each optimization step, the LLM generates new solutions
from the prompt that contains previously generated solutions with their values,
then the new solutions are evaluated and added to the prompt for the next
optimization step. We first showcase OPRO on linear regression and traveling
salesman problems, then move on to our main application in prompt optimization,
where the goal is to find instructions that maximize the task accuracy. With a
variety of LLMs, we demonstrate that the best prompts optimized by OPRO
outperform human-designed prompts by up to 8% on GSM8K, and by up to 50% on
Big-Bench Hard tasks. Code at https://github.com/google-deepmind/opro. | null | cs.LG | [
"cs.LG",
"cs.AI",
"cs.CL"
] |
2409.07012 | HF | Towards Predicting Temporal Changes in a Patient's Chest X-ray Images based on Electronic Health Records | [
"Daeun Kyung",
"Junu Kim",
"Tackeun Kim",
"Edward Choi"
] | 2024-09-11 | Chest X-ray imaging (CXR) is an important diagnostic tool used in hospitals
to assess patient conditions and monitor changes over time. Generative models,
specifically diffusion-based models, have shown promise in generating realistic
synthetic X-rays. However, these models mainly focus on conditional generation
using single-time-point data, i.e., typically CXRs taken at a specific time
with their corresponding reports, limiting their clinical utility, particularly
for capturing temporal changes. To address this limitation, we propose a novel
framework, EHRXDiff, which predicts future CXR images by integrating previous
CXRs with subsequent medical events, e.g., prescriptions, lab measures, etc.
Our framework dynamically tracks and predicts disease progression based on a
latent diffusion model, conditioned on the previous CXR image and a history of
medical events. We comprehensively evaluate the performance of our framework
across three key aspects, including clinical consistency, demographic
consistency, and visual realism. We demonstrate that our framework generates
high-quality, realistic future images that capture potential temporal changes,
suggesting its potential for further development as a clinical simulation tool.
This could offer valuable insights for patient monitoring and treatment
planning in the medical field. | null | eess.IV | [
"eess.IV",
"cs.AI",
"cs.CV"
] |
2408.13423 | HF | Training-free Long Video Generation with Chain of Diffusion Model Experts | [
"Wenhao Li",
"Yichao Cao",
"Xiu Su",
"Xi Lin",
"Shan You",
"Mingkai Zheng",
"Yi Chen",
"Chang Xu"
] | 2024-08-24 | Video generation models hold substantial potential in areas such as
filmmaking. However, current video diffusion models need high computational
costs and produce suboptimal results due to high complexity of video generation
task. In this paper, we propose \textbf{ConFiner}, an efficient high-quality
video generation framework that decouples video generation into easier
subtasks: structure \textbf{con}trol and spatial-temporal re\textbf{fine}ment.
It can generate high-quality videos with chain of off-the-shelf diffusion model
experts, each expert responsible for a decoupled subtask. During the
refinement, we introduce coordinated denoising, which can merge multiple
diffusion experts' capabilities into a single sampling. Furthermore, we design
ConFiner-Long framework, which can generate long coherent video with three
constraint strategies on ConFiner. Experimental results indicate that with only
10\% of the inference cost, our ConFiner surpasses representative models like
Lavie and Modelscope across all objective and subjective metrics. And
ConFiner-Long can generate high-quality and coherent videos with up to 600
frames. | null | cs.CV | [
"cs.CV"
] |
2211.15089 | AnswerAI | Continuous diffusion for categorical data | [
"Sander Dieleman",
"Laurent Sartran",
"Arman Roshannai",
"Nikolay Savinov",
"Yaroslav Ganin",
"Pierre H. Richemond",
"Arnaud Doucet",
"Robin Strudel",
"Chris Dyer",
"Conor Durkan",
"Curtis Hawthorne",
"Rémi Leblond",
"Will Grathwohl",
"Jonas Adler"
] | 2022-11-28 | Diffusion models have quickly become the go-to paradigm for generative
modelling of perceptual signals (such as images and sound) through iterative
refinement. Their success hinges on the fact that the underlying physical
phenomena are continuous. For inherently discrete and categorical data such as
language, various diffusion-inspired alternatives have been proposed. However,
the continuous nature of diffusion models conveys many benefits, and in this
work we endeavour to preserve it. We propose CDCD, a framework for modelling
categorical data with diffusion models that are continuous both in time and
input space. We demonstrate its efficacy on several language modelling tasks. | null | cs.CL | [
"cs.CL",
"cs.LG"
] |
2401.10491 | AnswerAI | Knowledge Fusion of Large Language Models | [
"Fanqi Wan",
"Xinting Huang",
"Deng Cai",
"Xiaojun Quan",
"Wei Bi",
"Shuming Shi"
] | 2024-01-19 | While training large language models (LLMs) from scratch can generate models
with distinct functionalities and strengths, it comes at significant costs and
may result in redundant capabilities. Alternatively, a cost-effective and
compelling approach is to merge existing pre-trained LLMs into a more potent
model. However, due to the varying architectures of these LLMs, directly
blending their weights is impractical. In this paper, we introduce the notion
of knowledge fusion for LLMs, aimed at combining the capabilities of existing
LLMs and transferring them into a single LLM. By leveraging the generative
distributions of source LLMs, we externalize their collective knowledge and
unique strengths, thereby potentially elevating the capabilities of the target
model beyond those of any individual source LLM. We validate our approach using
three popular LLMs with different architectures--Llama-2, MPT, and
OpenLLaMA--across various benchmarks and tasks. Our findings confirm that the
fusion of LLMs can improve the performance of the target model across a range
of capabilities such as reasoning, commonsense, and code generation. Our code,
model weights, and data are public at
\url{https://github.com/fanqiwan/FuseLLM}. | null | cs.CL | [
"cs.CL"
] |
2205.14334 | AnswerAI | Teaching Models to Express Their Uncertainty in Words | [
"Stephanie Lin",
"Jacob Hilton",
"Owain Evans"
] | 2022-05-28 | We show that a GPT-3 model can learn to express uncertainty about its own
answers in natural language -- without use of model logits. When given a
question, the model generates both an answer and a level of confidence (e.g.
"90% confidence" or "high confidence"). These levels map to probabilities that
are well calibrated. The model also remains moderately calibrated under
distribution shift, and is sensitive to uncertainty in its own answers, rather
than imitating human examples. To our knowledge, this is the first time a model
has been shown to express calibrated uncertainty about its own answers in
natural language. For testing calibration, we introduce the CalibratedMath
suite of tasks. We compare the calibration of uncertainty expressed in words
("verbalized probability") to uncertainty extracted from model logits. Both
kinds of uncertainty are capable of generalizing calibration under distribution
shift. We also provide evidence that GPT-3's ability to generalize calibration
depends on pre-trained latent representations that correlate with epistemic
uncertainty over its answers. | null | cs.CL | [
"cs.CL",
"cs.AI",
"cs.LG"
] |
1901.09335 | AnswerAI | Augment your batch: better training with larger batches | [
"Elad Hoffer",
"Tal Ben-Nun",
"Itay Hubara",
"Niv Giladi",
"Torsten Hoefler",
"Daniel Soudry"
] | 2019-01-27 | Large-batch SGD is important for scaling training of deep neural networks.
However, without fine-tuning hyperparameter schedules, the generalization of
the model may be hampered. We propose to use batch augmentation: replicating
instances of samples within the same batch with different data augmentations.
Batch augmentation acts as a regularizer and an accelerator, increasing both
generalization and performance scaling. We analyze the effect of batch
augmentation on gradient variance and show that it empirically improves
convergence for a wide variety of deep neural networks and datasets. Our
results show that batch augmentation reduces the number of necessary SGD
updates to achieve the same accuracy as the state-of-the-art. Overall, this
simple yet effective method enables faster training and better generalization
by allowing more computational resources to be used concurrently. | null | cs.LG | [
"cs.LG",
"stat.ML"
] |
2401.09419 | HF | GARField: Group Anything with Radiance Fields | [
"Chung Min Kim",
"Mingxuan Wu",
"Justin Kerr",
"Ken Goldberg",
"Matthew Tancik",
"Angjoo Kanazawa"
] | 2024-01-17 | Grouping is inherently ambiguous due to the multiple levels of granularity in
which one can decompose a scene -- should the wheels of an excavator be
considered separate or part of the whole? We present Group Anything with
Radiance Fields (GARField), an approach for decomposing 3D scenes into a
hierarchy of semantically meaningful groups from posed image inputs. To do this
we embrace group ambiguity through physical scale: by optimizing a
scale-conditioned 3D affinity feature field, a point in the world can belong to
different groups of different sizes. We optimize this field from a set of 2D
masks provided by Segment Anything (SAM) in a way that respects coarse-to-fine
hierarchy, using scale to consistently fuse conflicting masks from different
viewpoints. From this field we can derive a hierarchy of possible groupings via
automatic tree construction or user interaction. We evaluate GARField on a
variety of in-the-wild scenes and find it effectively extracts groups at many
levels: clusters of objects, objects, and various subparts. GARField inherently
represents multi-view consistent groupings and produces higher fidelity groups
than the input SAM masks. GARField's hierarchical grouping could have exciting
downstream applications such as 3D asset extraction or dynamic scene
understanding. See the project website at https://www.garfield.studio/ | null | cs.CV | [
"cs.CV",
"cs.GR"
] |
2406.06525 | Both | Autoregressive Model Beats Diffusion: Llama for Scalable Image Generation | [
"Peize Sun",
"Yi Jiang",
"Shoufa Chen",
"Shilong Zhang",
"Bingyue Peng",
"Ping Luo",
"Zehuan Yuan"
] | 2024-06-10 | We introduce LlamaGen, a new family of image generation models that apply
original ``next-token prediction'' paradigm of large language models to visual
generation domain. It is an affirmative answer to whether vanilla
autoregressive models, e.g., Llama, without inductive biases on visual signals
can achieve state-of-the-art image generation performance if scaling properly.
We reexamine design spaces of image tokenizers, scalability properties of image
generation models, and their training data quality. The outcome of this
exploration consists of: (1) An image tokenizer with downsample ratio of 16,
reconstruction quality of 0.94 rFID and codebook usage of 97% on ImageNet
benchmark. (2) A series of class-conditional image generation models ranging
from 111M to 3.1B parameters, achieving 2.18 FID on ImageNet 256x256
benchmarks, outperforming the popular diffusion models such as LDM, DiT. (3) A
text-conditional image generation model with 775M parameters, from two-stage
training on LAION-COCO and high aesthetics quality images, demonstrating
competitive performance of visual quality and text alignment. (4) We verify the
effectiveness of LLM serving frameworks in optimizing the inference speed of
image generation models and achieve 326% - 414% speedup. We release all models
and codes to facilitate open-source community of visual generation and
multimodal foundation models. | null | cs.CV | [
"cs.CV"
] |
1805.08522 | AnswerAI | Deep learning generalizes because the parameter-function map is biased towards simple functions | [
"Guillermo Valle-Pérez",
"Chico Q. Camargo",
"Ard A. Louis"
] | 2018-05-22 | Deep neural networks (DNNs) generalize remarkably well without explicit
regularization even in the strongly over-parametrized regime where classical
learning theory would instead predict that they would severely overfit. While
many proposals for some kind of implicit regularization have been made to
rationalise this success, there is no consensus for the fundamental reason why
DNNs do not strongly overfit. In this paper, we provide a new explanation. By
applying a very general probability-complexity bound recently derived from
algorithmic information theory (AIT), we argue that the parameter-function map
of many DNNs should be exponentially biased towards simple functions. We then
provide clear evidence for this strong simplicity bias in a model DNN for
Boolean functions, as well as in much larger fully connected and convolutional
networks applied to CIFAR10 and MNIST. As the target functions in many real
problems are expected to be highly structured, this intrinsic simplicity bias
helps explain why deep networks generalize well on real world problems. This
picture also facilitates a novel PAC-Bayes approach where the prior is taken
over the DNN input-output function space, rather than the more conventional
prior over parameter space. If we assume that the training algorithm samples
parameters close to uniformly within the zero-error region then the PAC-Bayes
theorem can be used to guarantee good expected generalization for target
functions producing high-likelihood training sets. By exploiting recently
discovered connections between DNNs and Gaussian processes to estimate the
marginal likelihood, we produce relatively tight generalization PAC-Bayes error
bounds which correlate well with the true error on realistic datasets such as
MNIST and CIFAR10 and for architectures including convolutional and fully
connected networks. | null | stat.ML | [
"stat.ML",
"cs.AI",
"cs.LG",
"cs.NE"
] |
2404.01300 | HF | NeRF-MAE: Masked AutoEncoders for Self-Supervised 3D Representation Learning for Neural Radiance Fields | [
"Muhammad Zubair Irshad",
"Sergey Zakharov",
"Vitor Guizilini",
"Adrien Gaidon",
"Zsolt Kira",
"Rares Ambrus"
] | 2024-04-01 | Neural fields excel in computer vision and robotics due to their ability to
understand the 3D visual world such as inferring semantics, geometry, and
dynamics. Given the capabilities of neural fields in densely representing a 3D
scene from 2D images, we ask the question: Can we scale their self-supervised
pretraining, specifically using masked autoencoders, to generate effective 3D
representations from posed RGB images. Owing to the astounding success of
extending transformers to novel data modalities, we employ standard 3D Vision
Transformers to suit the unique formulation of NeRFs. We leverage NeRF's
volumetric grid as a dense input to the transformer, contrasting it with other
3D representations such as pointclouds where the information density can be
uneven, and the representation is irregular. Due to the difficulty of applying
masked autoencoders to an implicit representation, such as NeRF, we opt for
extracting an explicit representation that canonicalizes scenes across domains
by employing the camera trajectory for sampling. Our goal is made possible by
masking random patches from NeRF's radiance and density grid and employing a
standard 3D Swin Transformer to reconstruct the masked patches. In doing so,
the model can learn the semantic and spatial structure of complete scenes. We
pretrain this representation at scale on our proposed curated posed-RGB data,
totaling over 1.8 million images. Once pretrained, the encoder is used for
effective 3D transfer learning. Our novel self-supervised pretraining for
NeRFs, NeRF-MAE, scales remarkably well and improves performance on various
challenging 3D tasks. Utilizing unlabeled posed 2D data for pretraining,
NeRF-MAE significantly outperforms self-supervised 3D pretraining and NeRF
scene understanding baselines on Front3D and ScanNet datasets with an absolute
performance improvement of over 20% AP50 and 8% AP25 for 3D object detection. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.LG"
] |
1911.07190 | AnswerAI | Loss Aware Post-training Quantization | [
"Yury Nahshan",
"Brian Chmiel",
"Chaim Baskin",
"Evgenii Zheltonozhskii",
"Ron Banner",
"Alex M. Bronstein",
"Avi Mendelson"
] | 2019-11-17 | Neural network quantization enables the deployment of large models on
resource-constrained devices. Current post-training quantization methods fall
short in terms of accuracy for INT4 (or lower) but provide reasonable accuracy
for INT8 (or above). In this work, we study the effect of quantization on the
structure of the loss landscape. Additionally, we show that the structure is
flat and separable for mild quantization, enabling straightforward
post-training quantization methods to achieve good results. We show that with
more aggressive quantization, the loss landscape becomes highly non-separable
with steep curvature, making the selection of quantization parameters more
challenging. Armed with this understanding, we design a method that quantizes
the layer parameters jointly, enabling significant accuracy improvement over
current post-training quantization methods. Reference implementation is
available at
https://github.com/ynahshan/nn-quantization-pytorch/tree/master/lapq | null | cs.LG | [
"cs.LG",
"cs.CV"
] |
2307.12169 | HF | Rail-only: A Low-Cost High-Performance Network for Training LLMs with Trillion Parameters | [
"Weiyang Wang",
"Manya Ghobadi",
"Kayvon Shakeri",
"Ying Zhang",
"Naader Hasani"
] | 2023-07-22 | This paper presents a low-cost network architecture for training large
language models (LLMs) at hyperscale. We study the optimal parallelization
strategy of LLMs and propose a novel datacenter network design tailored to
LLM's unique communication pattern. We show that LLM training generates sparse
communication patterns in the network and, therefore, does not require
any-to-any full-bisection network to complete efficiently. As a result, our
design eliminates the spine layer in traditional GPU clusters. We name this
design a Rail-only network and demonstrate that it achieves the same training
performance while reducing the network cost by 38% to 77% and network power
consumption by 37% to 75% compared to a conventional GPU datacenter. Our
architecture also supports Mixture-of-Expert (MoE) models with all-to-all
communication through forwarding, with only 8.2% to 11.2% completion time
overhead for all-to-all traffic. We study the failure robustness of Rail-only
networks and provide insights into the performance impact of different network
and training parameters. | null | cs.NI | [
"cs.NI",
"cs.AI",
"cs.LG"
] |
1901.08817 | AnswerAI | State-Regularized Recurrent Neural Networks | [
"Cheng Wang",
"Mathias Niepert"
] | 2019-01-25 | Recurrent neural networks are a widely used class of neural architectures.
They have, however, two shortcomings. First, it is difficult to understand what
exactly they learn. Second, they tend to work poorly on sequences requiring
long-term memorization, despite having this capacity in principle. We aim to
address both shortcomings with a class of recurrent networks that use a
stochastic state transition mechanism between cell applications. This
mechanism, which we term state-regularization, makes RNNs transition between a
finite set of learnable states. We evaluate state-regularized RNNs on (1)
regular languages for the purpose of automata extraction; (2) nonregular
languages such as balanced parentheses, palindromes, and the copy task where
external memory is required; and (3) real-word sequence learning tasks for
sentiment analysis, visual object recognition, and language modeling. We show
that state-regularization (a) simplifies the extraction of finite state
automata modeling an RNN's state transition dynamics; (b) forces RNNs to
operate more like automata with external memory and less like finite state
machines; (c) makes RNNs have better interpretability and explainability. | null | cs.LG | [
"cs.LG",
"stat.ML"
] |
2308.00951 | Both | From Sparse to Soft Mixtures of Experts | [
"Joan Puigcerver",
"Carlos Riquelme",
"Basil Mustafa",
"Neil Houlsby"
] | 2023-08-02 | Sparse mixture of expert architectures (MoEs) scale model capacity without
significant increases in training or inference costs. Despite their success,
MoEs suffer from a number of issues: training instability, token dropping,
inability to scale the number of experts, or ineffective finetuning. In this
work, we propose Soft MoE, a fully-differentiable sparse Transformer that
addresses these challenges, while maintaining the benefits of MoEs. Soft MoE
performs an implicit soft assignment by passing different weighted combinations
of all input tokens to each expert. As in other MoEs, experts in Soft MoE only
process a subset of the (combined) tokens, enabling larger model capacity (and
performance) at lower inference cost. In the context of visual recognition,
Soft MoE greatly outperforms dense Transformers (ViTs) and popular MoEs (Tokens
Choice and Experts Choice). Furthermore, Soft MoE scales well: Soft MoE Huge/14
with 128 experts in 16 MoE layers has over 40x more parameters than ViT
Huge/14, with only 2% increased inference time, and substantially better
quality. | null | cs.LG | [
"cs.LG",
"cs.AI",
"cs.CV"
] |
2401.00908 | Both | DocLLM: A layout-aware generative language model for multimodal document understanding | [
"Dongsheng Wang",
"Natraj Raman",
"Mathieu Sibue",
"Zhiqiang Ma",
"Petr Babkin",
"Simerjot Kaur",
"Yulong Pei",
"Armineh Nourbakhsh",
"Xiaomo Liu"
] | 2023-12-31 | Enterprise documents such as forms, invoices, receipts, reports, contracts,
and other similar records, often carry rich semantics at the intersection of
textual and spatial modalities. The visual cues offered by their complex
layouts play a crucial role in comprehending these documents effectively. In
this paper, we present DocLLM, a lightweight extension to traditional large
language models (LLMs) for reasoning over visual documents, taking into account
both textual semantics and spatial layout. Our model differs from existing
multimodal LLMs by avoiding expensive image encoders and focuses exclusively on
bounding box information to incorporate the spatial layout structure.
Specifically, the cross-alignment between text and spatial modalities is
captured by decomposing the attention mechanism in classical transformers to a
set of disentangled matrices. Furthermore, we devise a pre-training objective
that learns to infill text segments. This approach allows us to address
irregular layouts and heterogeneous content frequently encountered in visual
documents. The pre-trained model is fine-tuned using a large-scale instruction
dataset, covering four core document intelligence tasks. We demonstrate that
our solution outperforms SotA LLMs on 14 out of 16 datasets across all tasks,
and generalizes well to 4 out of 5 previously unseen datasets. | null | cs.CL | [
"cs.CL"
] |
2406.08478 | HF | What If We Recaption Billions of Web Images with LLaMA-3? | [
"Xianhang Li",
"Haoqin Tu",
"Mude Hui",
"Zeyu Wang",
"Bingchen Zhao",
"Junfei Xiao",
"Sucheng Ren",
"Jieru Mei",
"Qing Liu",
"Huangjie Zheng",
"Yuyin Zhou",
"Cihang Xie"
] | 2024-06-12 | Web-crawled image-text pairs are inherently noisy. Prior studies demonstrate
that semantically aligning and enriching textual descriptions of these pairs
can significantly enhance model training across various vision-language tasks,
particularly text-to-image generation. However, large-scale investigations in
this area remain predominantly closed-source. Our paper aims to bridge this
community effort, leveraging the powerful and \textit{open-sourced} LLaMA-3, a
GPT-4 level LLM. Our recaptioning pipeline is simple: first, we fine-tune a
LLaMA-3-8B powered LLaVA-1.5 and then employ it to recaption 1.3 billion images
from the DataComp-1B dataset. Our empirical results confirm that this enhanced
dataset, Recap-DataComp-1B, offers substantial benefits in training advanced
vision-language models. For discriminative models like CLIP, we observe
enhanced zero-shot performance in cross-modal retrieval tasks. For generative
models like text-to-image Diffusion Transformers, the generated images exhibit
a significant improvement in alignment with users' text instructions,
especially in following complex queries. Our project page is
https://www.haqtu.me/Recap-Datacomp-1B/ | null | cs.CV | [
"cs.CV",
"cs.CL"
] |
2406.19380 | HF | TabReD: A Benchmark of Tabular Machine Learning in-the-Wild | [
"Ivan Rubachev",
"Nikolay Kartashev",
"Yury Gorishniy",
"Artem Babenko"
] | 2024-06-27 | Benchmarks that closely reflect downstream application scenarios are
essential for the streamlined adoption of new research in tabular machine
learning (ML). In this work, we examine existing tabular benchmarks and find
two common characteristics of industry-grade tabular data that are
underrepresented in the datasets available to the academic community. First,
tabular data often changes over time in real-world deployment scenarios. This
impacts model performance and requires time-based train and test splits for
correct model evaluation. Yet, existing academic tabular datasets often lack
timestamp metadata to enable such evaluation. Second, a considerable portion of
datasets in production settings stem from extensive data acquisition and
feature engineering pipelines. For each specific dataset, this can have a
different impact on the absolute and relative number of predictive,
uninformative, and correlated features, which in turn can affect model
selection. To fill the aforementioned gaps in academic benchmarks, we introduce
TabReD -- a collection of eight industry-grade tabular datasets covering a wide
range of domains from finance to food delivery services. We assess a large
number of tabular ML models in the feature-rich, temporally-evolving data
setting facilitated by TabReD. We demonstrate that evaluation on time-based
data splits leads to different methods ranking, compared to evaluation on
random splits more common in academic benchmarks. Furthermore, on the TabReD
datasets, MLP-like architectures and GBDT show the best results, while more
sophisticated DL models are yet to prove their effectiveness. | null | cs.LG | [
"cs.LG"
] |
2308.03290 | HF | FLIQS: One-Shot Mixed-Precision Floating-Point and Integer Quantization Search | [
"Jordan Dotzel",
"Gang Wu",
"Andrew Li",
"Muhammad Umar",
"Yun Ni",
"Mohamed S. Abdelfattah",
"Zhiru Zhang",
"Liqun Cheng",
"Martin G. Dixon",
"Norman P. Jouppi",
"Quoc V. Le",
"Sheng Li"
] | 2023-08-07 | Quantization has become a mainstream compression technique for reducing model
size, computational requirements, and energy consumption for modern deep neural
networks (DNNs). With improved numerical support in recent hardware, including
multiple variants of integer and floating point, mixed-precision quantization
has become necessary to achieve high-quality results with low model cost. Prior
mixed-precision methods have performed either a post-training quantization
search, which compromises on accuracy, or a differentiable quantization search,
which leads to high memory usage from branching. Therefore, we propose the
first one-shot mixed-precision quantization search that eliminates the need for
retraining in both integer and low-precision floating point models. We evaluate
our search (FLIQS) on multiple convolutional and vision transformer networks to
discover Pareto-optimal models. Our approach improves upon uniform precision,
manual mixed-precision, and recent integer quantization search methods. With
integer models, we increase the accuracy of ResNet-18 on ImageNet by 1.31% and
ResNet-50 by 0.90% with equivalent model cost over previous methods.
Additionally, for the first time, we explore a novel mixed-precision
floating-point search and improve MobileNetV2 by up to 0.98% compared to prior
state-of-the-art FP8 models. Finally, we extend FLIQS to simultaneously search
a joint quantization and neural architecture space and improve the ImageNet
accuracy by 2.69% with similar model cost on a MobileNetV2 search space. | null | cs.CV | [
"cs.CV",
"cs.LG"
] |
2308.02490 | HF | MM-Vet: Evaluating Large Multimodal Models for Integrated Capabilities | [
"Weihao Yu",
"Zhengyuan Yang",
"Linjie Li",
"Jianfeng Wang",
"Kevin Lin",
"Zicheng Liu",
"Xinchao Wang",
"Lijuan Wang"
] | 2023-08-04 | We propose MM-Vet, an evaluation benchmark that examines large multimodal
models (LMMs) on complicated multimodal tasks. Recent LMMs have shown various
intriguing abilities, such as solving math problems written on the blackboard,
reasoning about events and celebrities in news images, and explaining visual
jokes. Rapid model advancements pose challenges to evaluation benchmark
development. Problems include: (1) How to systematically structure and evaluate
the complicated multimodal tasks; (2) How to design evaluation metrics that
work well across question and answer types; and (3) How to give model insights
beyond a simple performance ranking. To this end, we present MM-Vet, designed
based on the insight that the intriguing ability to solve complicated tasks is
often achieved by a generalist model being able to integrate different core
vision-language (VL) capabilities. MM-Vet defines 6 core VL capabilities and
examines the 16 integrations of interest derived from the capability
combination. For evaluation metrics, we propose an LLM-based evaluator for
open-ended outputs. The evaluator enables the evaluation across different
question types and answer styles, resulting in a unified scoring metric. We
evaluate representative LMMs on MM-Vet, providing insights into the
capabilities of different LMM system paradigms and models. Code and data are
available at https://github.com/yuweihao/MM-Vet. | null | cs.AI | [
"cs.AI",
"cs.CL",
"cs.CV",
"cs.LG"
] |
2404.19759 | HF | MotionLCM: Real-time Controllable Motion Generation via Latent Consistency Model | [
"Wenxun Dai",
"Ling-Hao Chen",
"Jingbo Wang",
"Jinpeng Liu",
"Bo Dai",
"Yansong Tang"
] | 2024-04-30 | This work introduces MotionLCM, extending controllable motion generation to a
real-time level. Existing methods for spatial control in text-conditioned
motion generation suffer from significant runtime inefficiency. To address this
issue, we first propose the motion latent consistency model (MotionLCM) for
motion generation, building upon the latent diffusion model (MLD). By employing
one-step (or few-step) inference, we further improve the runtime efficiency of
the motion latent diffusion model for motion generation. To ensure effective
controllability, we incorporate a motion ControlNet within the latent space of
MotionLCM and enable explicit control signals (e.g., pelvis trajectory) in the
vanilla motion space to control the generation process directly, similar to
controlling other latent-free diffusion models for motion generation. By
employing these techniques, our approach can generate human motions with text
and control signals in real-time. Experimental results demonstrate the
remarkable generation and controlling capabilities of MotionLCM while
maintaining real-time runtime efficiency. | null | cs.CV | [
"cs.CV"
] |
2307.05741 | HF | Towards Robust and Efficient Continual Language Learning | [
"Adam Fisch",
"Amal Rannen-Triki",
"Razvan Pascanu",
"Jörg Bornschein",
"Angeliki Lazaridou",
"Elena Gribovskaya",
"Marc'Aurelio Ranzato"
] | 2023-07-11 | As the application space of language models continues to evolve, a natural
question to ask is how we can quickly adapt models to new tasks. We approach
this classic question from a continual learning perspective, in which we aim to
continue fine-tuning models trained on past tasks on new tasks, with the goal
of "transferring" relevant knowledge. However, this strategy also runs the risk
of doing more harm than good, i.e., negative transfer. In this paper, we
construct a new benchmark of task sequences that target different possible
transfer scenarios one might face, such as a sequence of tasks with high
potential of positive transfer, high potential for negative transfer, no
expected effect, or a mixture of each. An ideal learner should be able to
maximally exploit information from all tasks that have any potential for
positive transfer, while also avoiding the negative effects of any distracting
tasks that may confuse it. We then propose a simple, yet effective, learner
that satisfies many of our desiderata simply by leveraging a selective strategy
for initializing new models from past task checkpoints. Still, limitations
remain, and we hope this benchmark can help the community to further build and
analyze such learners. | null | cs.CL | [
"cs.CL"
] |
2308.04014 | AnswerAI | Continual Pre-Training of Large Language Models: How to (re)warm your model? | [
"Kshitij Gupta",
"Benjamin Thérien",
"Adam Ibrahim",
"Mats L. Richter",
"Quentin Anthony",
"Eugene Belilovsky",
"Irina Rish",
"Timothée Lesort"
] | 2023-08-08 | Large language models (LLMs) are routinely pre-trained on billions of tokens,
only to restart the process over again once new data becomes available. A much
cheaper and more efficient solution would be to enable the continual
pre-training of these models, i.e. updating pre-trained models with new data
instead of re-training them from scratch. However, the distribution shift
induced by novel data typically results in degraded performance on past data.
Taking a step towards efficient continual pre-training, in this work, we
examine the effect of different warm-up strategies. Our hypothesis is that the
learning rate must be re-increased to improve compute efficiency when training
on a new dataset. We study the warmup phase of models pre-trained on the Pile
(upstream data, 300B tokens) as we continue to pre-train on SlimPajama
(downstream data, 297B tokens), following a linear warmup and cosine decay
schedule. We conduct all experiments on the Pythia 410M language model
architecture and evaluate performance through validation perplexity. We
experiment with different pre-training checkpoints, various maximum learning
rates, and various warmup lengths. Our results show that while rewarming models
first increases the loss on upstream and downstream data, in the longer run it
improves the downstream performance, outperforming models trained from
scratch$\unicode{x2013}$even for a large downstream dataset. | null | cs.CL | [
"cs.CL",
"cs.LG"
] |
2110.08207 | AnswerAI | Multitask Prompted Training Enables Zero-Shot Task Generalization | [
"Victor Sanh",
"Albert Webson",
"Colin Raffel",
"Stephen H. Bach",
"Lintang Sutawika",
"Zaid Alyafeai",
"Antoine Chaffin",
"Arnaud Stiegler",
"Teven Le Scao",
"Arun Raja",
"Manan Dey",
"M Saiful Bari",
"Canwen Xu",
"Urmish Thakker",
"Shanya Sharma Sharma",
"Eliza Szczechla",
"Taewoon Kim",
"Gunjan Chhablani",
"Nihal Nayak",
"Debajyoti Datta",
"Jonathan Chang",
"Mike Tian-Jian Jiang",
"Han Wang",
"Matteo Manica",
"Sheng Shen",
"Zheng Xin Yong",
"Harshit Pandey",
"Rachel Bawden",
"Thomas Wang",
"Trishala Neeraj",
"Jos Rozen",
"Abheesht Sharma",
"Andrea Santilli",
"Thibault Fevry",
"Jason Alan Fries",
"Ryan Teehan",
"Tali Bers",
"Stella Biderman",
"Leo Gao",
"Thomas Wolf",
"Alexander M. Rush"
] | 2021-10-15 | Large language models have recently been shown to attain reasonable zero-shot
generalization on a diverse set of tasks (Brown et al., 2020). It has been
hypothesized that this is a consequence of implicit multitask learning in
language models' pretraining (Radford et al., 2019). Can zero-shot
generalization instead be directly induced by explicit multitask learning? To
test this question at scale, we develop a system for easily mapping any natural
language tasks into a human-readable prompted form. We convert a large set of
supervised datasets, each with multiple prompts with diverse wording. These
prompted datasets allow for benchmarking the ability of a model to perform
completely held-out tasks. We fine-tune a pretrained encoder-decoder model
(Raffel et al., 2020; Lester et al., 2021) on this multitask mixture covering a
wide variety of tasks. The model attains strong zero-shot performance on
several standard datasets, often outperforming models up to 16x its size.
Further, our approach attains strong performance on a subset of tasks from the
BIG-bench benchmark, outperforming models up to 6x its size. All trained models
are available at https://github.com/bigscience-workshop/t-zero and all prompts
are available at https://github.com/bigscience-workshop/promptsource. | null | cs.LG | [
"cs.LG",
"cs.CL"
] |
2312.11556 | HF | StarVector: Generating Scalable Vector Graphics Code from Images | [
"Juan A. Rodriguez",
"Shubham Agarwal",
"Issam H. Laradji",
"Pau Rodriguez",
"David Vazquez",
"Christopher Pal",
"Marco Pedersoli"
] | 2023-12-17 | 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. Code and models:
https://github.com/joanrod/star-vector | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.CL"
] |
2405.16528 | AnswerAI | LoQT: Low-Rank Adapters for Quantized Pre-Training | [
"Sebastian Loeschcke",
"Mads Toftrup",
"Michael J. Kastoryano",
"Serge Belongie",
"Vésteinn Snæbjarnarson"
] | 2024-05-26 | Training of large neural networks requires significant computational
resources. Despite advances using low-rank adapters and quantization,
pretraining of models such as LLMs on consumer hardware has not been possible
without model sharding, offloading during training, or per-layer gradient
updates. To address these limitations, we propose LoQT, a method for
efficiently training quantized models. LoQT uses gradient-based tensor
factorization to initialize low-rank trainable weight matrices that are
periodically merged into quantized full-rank weight matrices. Our approach is
suitable for both pretraining and fine-tuning of models, which we demonstrate
experimentally for language modeling and downstream task adaptation. We find
that LoQT enables efficient training of models up to 7B parameters on a
consumer-grade 24GB GPU. We also demonstrate the feasibility of training a 13B
parameter model using per-layer gradient updates on the same hardware. | null | cs.LG | [
"cs.LG",
"cs.CL"
] |
2310.01407 | HF | CoDi: Conditional Diffusion Distillation for Higher-Fidelity and Faster Image Generation | [
"Kangfu Mei",
"Mauricio Delbracio",
"Hossein Talebi",
"Zhengzhong Tu",
"Vishal M. Patel",
"Peyman Milanfar"
] | 2023-10-02 | Large generative diffusion models have revolutionized text-to-image
generation and offer immense potential for conditional generation tasks such as
image enhancement, restoration, editing, and compositing. However, their
widespread adoption is hindered by the high computational cost, which limits
their real-time application. To address this challenge, we introduce a novel
method dubbed CoDi, that adapts a pre-trained latent diffusion model to accept
additional image conditioning inputs while significantly reducing the sampling
steps required to achieve high-quality results. Our method can leverage
architectures such as ControlNet to incorporate conditioning inputs without
compromising the model's prior knowledge gained during large scale
pre-training. Additionally, a conditional consistency loss enforces consistent
predictions across diffusion steps, effectively compelling the model to
generate high-quality images with conditions in a few steps. Our
conditional-task learning and distillation approach outperforms previous
distillation methods, achieving a new state-of-the-art in producing
high-quality images with very few steps (e.g., 1-4) across multiple tasks,
including super-resolution, text-guided image editing, and depth-to-image
generation. | null | cs.CV | [
"cs.CV",
"cs.AI",
"cs.LG"
] |
2310.12474 | HF | Enhancing High-Resolution 3D Generation through Pixel-wise Gradient Clipping | [
"Zijie Pan",
"Jiachen Lu",
"Xiatian Zhu",
"Li Zhang"
] | 2023-10-19 | High-resolution 3D object generation remains a challenging task primarily due
to the limited availability of comprehensive annotated training data. Recent
advancements have aimed to overcome this constraint by harnessing image
generative models, pretrained on extensive curated web datasets, using
knowledge transfer techniques like Score Distillation Sampling (SDS).
Efficiently addressing the requirements of high-resolution rendering often
necessitates the adoption of latent representation-based models, such as the
Latent Diffusion Model (LDM). In this framework, a significant challenge
arises: To compute gradients for individual image pixels, it is necessary to
backpropagate gradients from the designated latent space through the frozen
components of the image model, such as the VAE encoder used within LDM.
However, this gradient propagation pathway has never been optimized, remaining
uncontrolled during training. We find that the unregulated gradients adversely
affect the 3D model's capacity in acquiring texture-related information from
the image generative model, leading to poor quality appearance synthesis. To
address this overarching challenge, we propose an innovative operation termed
Pixel-wise Gradient Clipping (PGC) designed for seamless integration into
existing 3D generative models, thereby enhancing their synthesis quality.
Specifically, we control the magnitude of stochastic gradients by clipping the
pixel-wise gradients efficiently, while preserving crucial texture-related
gradient directions. Despite this simplicity and minimal extra cost, extensive
experiments demonstrate the efficacy of our PGC in enhancing the performance of
existing 3D generative models for high-resolution object rendering. | null | cs.CV | [
"cs.CV"
] |
2406.12168 | HF | BPO: Supercharging Online Preference Learning by Adhering to the Proximity of Behavior LLM | [
"Wenda Xu",
"Jiachen Li",
"William Yang Wang",
"Lei Li"
] | 2024-06-18 | Direct alignment from preferences (DAP) has emerged as a promising paradigm
for aligning large language models (LLMs) to human desiderata from
pre-collected, offline preference datasets. While recent studies indicate that
existing offline DAP methods can directly benefit from online training samples,
we highlight the need to develop specific online DAP algorithms to fully
harness the power of online training. Specifically, we identify that the
learned LLM should adhere to the proximity of the behavior LLM, which collects
the training samples. To this end, we propose online Preference Optimization in
proximity to the Behavior LLM (BPO), emphasizing the importance of constructing
a proper trust region for LLM alignment.
We conduct extensive experiments to validate the effectiveness and
applicability of our approach by integrating it with various DAP methods,
resulting in significant performance improvements across a wide range of tasks
when training with the same amount of preference data. Even when only
introducing one additional data collection phase, our online BPO improves its
offline DAP baseline from 72.0% to 80.2% on TL;DR and from 82.2% to 89.1% on
Anthropic Helpfulness in terms of win rate against human reference text. | null | cs.LG | [
"cs.LG",
"cs.AI",
"cs.CL"
] |
2307.12854 | HF | Multiscale Video Pretraining for Long-Term Activity Forecasting | [
"Reuben Tan",
"Matthias De Lange",
"Michael Iuzzolino",
"Bryan A. Plummer",
"Kate Saenko",
"Karl Ridgeway",
"Lorenzo Torresani"
] | 2023-07-24 | Long-term activity forecasting is an especially challenging research problem
because it requires understanding the temporal relationships between observed
actions, as well as the variability and complexity of human activities. Despite
relying on strong supervision via expensive human annotations, state-of-the-art
forecasting approaches often generalize poorly to unseen data. To alleviate
this issue, we propose Multiscale Video Pretraining (MVP), a novel
self-supervised pretraining approach that learns robust representations for
forecasting by learning to predict contextualized representations of future
video clips over multiple timescales. MVP is based on our observation that
actions in videos have a multiscale nature, where atomic actions typically
occur at a short timescale and more complex actions may span longer timescales.
We compare MVP to state-of-the-art self-supervised video learning approaches on
downstream long-term forecasting tasks including long-term action anticipation
and video summary prediction. Our comprehensive experiments across the Ego4D
and Epic-Kitchens-55/100 datasets demonstrate that MVP out-performs
state-of-the-art methods by significant margins. Notably, MVP obtains a
relative performance gain of over 20% accuracy in video summary forecasting
over existing methods. | null | cs.CV | [
"cs.CV"
] |
2212.10544 | AnswerAI | Pretraining Without Attention | [
"Junxiong Wang",
"Jing Nathan Yan",
"Albert Gu",
"Alexander M. Rush"
] | 2022-12-20 | Transformers have been essential to pretraining success in NLP. While other
architectures have been used, downstream accuracy is either significantly
worse, or requires attention layers to match standard benchmarks such as GLUE.
This work explores pretraining without attention by using recent advances in
sequence routing based on state-space models (SSMs). Our proposed model,
Bidirectional Gated SSM (BiGS), combines SSM layers with a multiplicative
gating architecture that has been effective in simplified sequence modeling
architectures. The model learns static layers that do not consider pair-wise
interactions. Even so, BiGS is able to match BERT pretraining accuracy on GLUE
and can be extended to long-form pretraining of 4096 tokens without
approximation. Analysis shows that while the models have similar average
accuracy, the approach has different inductive biases than BERT in terms of
interactions and syntactic representations. All models from this work are
available at https://github.com/jxiw/BiGS. | null | cs.CL | [
"cs.CL",
"cs.LG"
] |
2305.09617 | HF | Towards Expert-Level Medical Question Answering with Large Language Models | [
"Karan Singhal",
"Tao Tu",
"Juraj Gottweis",
"Rory Sayres",
"Ellery Wulczyn",
"Le Hou",
"Kevin Clark",
"Stephen Pfohl",
"Heather Cole-Lewis",
"Darlene Neal",
"Mike Schaekermann",
"Amy Wang",
"Mohamed Amin",
"Sami Lachgar",
"Philip Mansfield",
"Sushant Prakash",
"Bradley Green",
"Ewa Dominowska",
"Blaise Aguera y Arcas",
"Nenad Tomasev",
"Yun Liu",
"Renee Wong",
"Christopher Semturs",
"S. Sara Mahdavi",
"Joelle Barral",
"Dale Webster",
"Greg S. Corrado",
"Yossi Matias",
"Shekoofeh Azizi",
"Alan Karthikesalingam",
"Vivek Natarajan"
] | 2023-05-16 | Recent artificial intelligence (AI) systems have reached milestones in "grand
challenges" ranging from Go to protein-folding. The capability to retrieve
medical knowledge, reason over it, and answer medical questions comparably to
physicians has long been viewed as one such grand challenge.
Large language models (LLMs) have catalyzed significant progress in medical
question answering; Med-PaLM was the first model to exceed a "passing" score in
US Medical Licensing Examination (USMLE) style questions with a score of 67.2%
on the MedQA dataset. However, this and other prior work suggested significant
room for improvement, especially when models' answers were compared to
clinicians' answers. Here we present Med-PaLM 2, which bridges these gaps by
leveraging a combination of base LLM improvements (PaLM 2), medical domain
finetuning, and prompting strategies including a novel ensemble refinement
approach.
Med-PaLM 2 scored up to 86.5% on the MedQA dataset, improving upon Med-PaLM
by over 19% and setting a new state-of-the-art. We also observed performance
approaching or exceeding state-of-the-art across MedMCQA, PubMedQA, and MMLU
clinical topics datasets.
We performed detailed human evaluations on long-form questions along multiple
axes relevant to clinical applications. In pairwise comparative ranking of 1066
consumer medical questions, physicians preferred Med-PaLM 2 answers to those
produced by physicians on eight of nine axes pertaining to clinical utility (p
< 0.001). We also observed significant improvements compared to Med-PaLM on
every evaluation axis (p < 0.001) on newly introduced datasets of 240 long-form
"adversarial" questions to probe LLM limitations.
While further studies are necessary to validate the efficacy of these models
in real-world settings, these results highlight rapid progress towards
physician-level performance in medical question answering. | null | cs.CL | [
"cs.CL",
"cs.AI",
"cs.LG"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.