Large Language Model
Speechless: Speech Instruction Training Without Speech for Low Resource Languages
Dao, Alan, Vu, Dinh Bach, Ha, Huy Hoang, Anh, Tuan Le Duc, Gopal, Shreyas, Yeo, Yue Heng, Low, Warren Keng Hoong, Chng, Eng Siong, Yip, Jia Qi
The rapid growth of voice assistants powered by large language models (LLM) has highlighted a need for speech instruction data to train these systems. Despite the abundance of speech recognition data, there is a notable scarcity of speech instruction data, which is essential for fine-tuning models to understand and execute spoken commands. Generating high-quality synthetic speech requires a good text-to-speech (TTS) model, which may not be available to low resource languages. Our novel approach addresses this challenge by halting synthesis at the semantic representation level, bypassing the need for TTS. We achieve this by aligning synthetic semantic representations with the pre-trained Whisper encoder, enabling an LLM to be fine-tuned on text instructions while maintaining the ability to understand spoken instructions during inference. This simplified training process is a promising approach to building voice assistant for low-resource languages.
IRONIC: Coherence-Aware Reasoning Chains for Multi-Modal Sarcasm Detection
Ramakrishnan, Aashish Anantha, Ramakrishnan, Aadarsh Anantha, Lee, Dongwon
Interpreting figurative language such as sarcasm across multi-modal inputs presents unique challenges, often requiring task-specific fine-tuning and extensive reasoning steps. However, current Chain-of-Thought approaches do not efficiently leverage the same cognitive processes that enable humans to identify sarcasm. We present IRONIC, an in-context learning framework that leverages Multi-modal Coherence Relations to analyze referential, analogical and pragmatic image-text linkages. Our experiments show that IRONIC achieves state-of-the-art performance on zero-shot Multi-modal Sarcasm Detection across different baselines. This demonstrates the need for incorporating linguistic and cognitive insights into the design of multi-modal reasoning strategies. Our code is available at: https://github.com/aashish2000/IRONIC
Seeing the Trees for the Forest: Rethinking Weakly-Supervised Medical Visual Grounding
Huy, Ta Duc, Huynh, Duy Anh, Xie, Yutong, Qi, Yuankai, Chen, Qi, Nguyen, Phi Le, Tran, Sen Kim, Phung, Son Lam, Hengel, Anton van den, Liao, Zhibin, To, Minh-Son, Verjans, Johan W., Phan, Vu Minh Hieu
Visual grounding (VG) is the capability to identify the specific regions in an image associated with a particular text description. In medical imaging, VG enhances interpretability by highlighting relevant pathological features corresponding to textual descriptions, improving model transparency and trustworthiness for wider adoption of deep learning models in clinical practice. Current models struggle to associate textual descriptions with disease regions due to inefficient attention mechanisms and a lack of fine-grained token representations. In this paper, we empirically demonstrate two key observations. First, current VLMs assign high norms to background tokens, diverting the model's attention from regions of disease. Second, the global tokens used for cross-modal learning are not representative of local disease tokens. This hampers identifying correlations between the text and disease tokens. To address this, we introduce simple, yet effective Disease-Aware Prompting (DAP) process, which uses the explainability map of a VLM to identify the appropriate image features. This simple strategy amplifies disease-relevant regions while suppressing background interference. Without any additional pixel-level annotations, DAP improves visual grounding accuracy by 20.74% compared to state-of-the-art methods across three major chest X-ray datasets.
ICQuant: Index Coding enables Low-bit LLM Quantization
Li, Xinlin, Hanna, Osama, Fragouli, Christina, Diggavi, Suhas
The rapid deployment of Large Language Models (LLMs) highlights the need for efficient low-bit post-training quantization (PTQ), due to their high memory costs. A key challenge in weight quantization is the presence of outliers, which inflate quantization ranges and lead to large errors. While a number of outlier suppression techniques have been proposed, they either: fail to effectively shrink the quantization range, or incur (relatively) high bit overhead. In this paper, we present ICQuant, a novel framework that leverages outlier statistics to design an efficient index coding scheme for outlier-aware weight-only quantization. Compared to existing outlier suppression techniques requiring $\approx 1$ bit overhead to halve the quantization range, ICQuant requires only $\approx 0.3$ bits; a significant saving in extreme compression regimes (e.g., 2-3 bits per weight). ICQuant can be used on top of any existing quantizers to eliminate outliers, improving the quantization quality. Using just 2.3 bits per weight and simple scalar quantizers, ICQuant improves the zero-shot accuracy of the 2-bit Llama3-70B model by up to 130% and 150% relative to QTIP and QuIP#; and it achieves comparable performance to the best-known fine-tuned quantizer (PV-tuning) without fine-tuning.
Unified attacks to large language model watermarks: spoofing and scrubbing in unauthorized knowledge distillation
Yi, Xin, Li, Yue, Zheng, Shunfan, Wang, Linlin, Wang, Xiaoling, He, Liang
Watermarking has emerged as a critical technique for combating misinformation and protecting intellectual property in large language models (LLMs). A recent discovery, termed watermark radioactivity, reveals that watermarks embedded in teacher models can be inherited by student models through knowledge distillation. On the positive side, this inheritance allows for the detection of unauthorized knowledge distillation by identifying watermark traces in student models. However, the robustness of watermarks against scrubbing attacks and their unforgeability in the face of spoofing attacks under unauthorized knowledge distillation remain largely unexplored. Existing watermark attack methods either assume access to model internals or fail to simultaneously support both scrubbing and spoofing attacks. In this work, we propose Contrastive Decoding-Guided Knowledge Distillation (CDG-KD), a unified framework that enables bidirectional attacks under unauthorized knowledge distillation. Our approach employs contrastive decoding to extract corrupted or amplified watermark texts via comparing outputs from the student model and weakly watermarked references, followed by bidirectional distillation to train new student models capable of watermark removal and watermark forgery, respectively. Extensive experiments show that CDG-KD effectively performs attacks while preserving the general performance of the distilled model. Our findings underscore critical need for developing watermarking schemes that are robust and unforgeable.
VeriCoder: Enhancing LLM-Based RTL Code Generation through Functional Correctness Validation
Wei, Anjiang, Tan, Huanmi, Suresh, Tarun, Mendoza, Daniel, Teixeira, Thiago S. F. X., Wang, Ke, Trippel, Caroline, Aiken, Alex
Recent advances in Large Language Models (LLMs) have sparked growing interest in applying them to Electronic Design Automation (EDA) tasks, particularly Register Transfer Level (RTL) code generation. While several RTL datasets have been introduced, most focus on syntactic validity rather than functional validation with tests, leading to training examples that compile but may not implement the intended behavior. We present VERICODER, a model for RTL code generation fine-tuned on a dataset validated for functional correctness. This fine-tuning dataset is constructed using a novel methodology that combines unit test generation with feedback-directed refinement. Given a natural language specification and an initial RTL design, we prompt a teacher model (GPT-4o-mini) to generate unit tests and iteratively revise the RTL design based on its simulation results using the generated tests. If necessary, the teacher model also updates the tests to ensure they comply with the natural language specification. As a result of this process, every example in our dataset is functionally validated, consisting of a natural language description, an RTL implementation, and passing tests. Fine-tuned on this dataset of 125,777 examples, VERICODER achieves state-of-the-art metrics in functional correctness on VerilogEval and RTLLM, with relative gains of up to 71.7% and 27.4%, respectively. An ablation study further shows that models trained on our functionally validated dataset outperform those trained on functionally non-validated datasets, underscoring the importance of high-quality datasets in RTL code generation. Our code, data, and models are publicly available at https://github.com/Anjiang-Wei/VeriCoder
X-Teaming: Multi-Turn Jailbreaks and Defenses with Adaptive Multi-Agents
Rahman, Salman, Jiang, Liwei, Shiffer, James, Liu, Genglin, Issaka, Sheriff, Parvez, Md Rizwan, Palangi, Hamid, Chang, Kai-Wei, Choi, Yejin, Gabriel, Saadia
Multi-turn interactions with language models (LMs) pose critical safety risks, as harmful intent can be strategically spread across exchanges. Yet, the vast majority of prior work has focused on single-turn safety, while adaptability and diversity remain among the key challenges of multi-turn red-teaming. To address these challenges, we present X-Teaming, a scalable framework that systematically explores how seemingly harmless interactions escalate into harmful outcomes and generates corresponding attack scenarios. X-Teaming employs collaborative agents for planning, attack optimization, and verification, achieving state-of-the-art multi-turn jailbreak effectiveness and diversity with success rates up to 98.1% across representative leading open-weight and closed-source models. In particular, X-Teaming achieves a 96.2% attack success rate against the latest Claude 3.7 Sonnet model, which has been considered nearly immune to single-turn attacks. Building on X-Teaming, we introduce XGuard-Train, an open-source multi-turn safety training dataset that is 20x larger than the previous best resource, comprising 30K interactive jailbreaks, designed to enable robust multi-turn safety alignment for LMs. Our work offers essential tools and insights for mitigating sophisticated conversational attacks, advancing the multi-turn safety of LMs.
Musk sues Apple, OpenAI over alleged AI competition suppression
Elon Musk's artificial intelligence startup xAI has sued Apple and ChatGPT maker OpenAI, accusing them of illegally conspiring to thwart competition for artificial intelligence (AI). The lawsuit filed in a United States federal court in Texas on Monday says that Apple and OpenAI have "locked up markets to maintain their monopolies and prevent innovators like X and xAI from competing". The complaint filed by the billionaire said Apple and OpenAI conspired to suppress xAI's products, including on the Apple App Store. "If not for its exclusive deal with OpenAI, Apple would have no reason to refrain from more prominently featuring the X app and the Grok app in its App Store," xAI said. The lawsuit pointed out that in June 2024, Apple and OpenAI announced they would integrate ChatGPT into Apple's operating system under an exclusive arrangement.
Musk's AI startup sues OpenAI and Apple over anticompetitive conduct
Elon Musk's artificial intelligence startup xAI is suing OpenAI and Apple over allegations that they are engaging in anticompetitive conduct. The lawsuit, filed in a Texas court on Monday, accuses the companies of "a conspiracy to monopolize the markets for smartphones and generative AI chatbots". Musk had earlier this month threatened to sue Apple and OpenAI, which makes ChatGPT, after claiming that Apple was "making it impossible" for any other AI companies to reach the top spot on its app store. Musk's xAI makes the Grok chatbot, which has struggled to become as prominent as ChatGPT. Musk's lawsuit challenges a key partnership between Apple and OpenAI that was announced last year, in which the device maker integrated OpenAI's artificial intelligence capabilities into its operating systems.
Elon Musk's xAI Sues Apple and OpenAI Over App Store Rankings
Elon Musk's xAI filed a lawsuit against Apple and OpenAI on Monday, accusing the companies of behaving like monopolies and claiming Apple deprioritized ChatGPT rivals like Grok in the App Store. "This is a tale of two monopolists joining forces to ensure their continued dominance in a world rapidly driven by the most powerful technology humanity has ever created: artificial intelligence," the lawsuit alleges. "Working in tandem, Defendants Apple and OpenAI have locked up markets to maintain their monopolies and prevent innovators like X and xAI from competing." Grok is currently ranked third in the App Store for free productivity apps--behind only ChatGPT and Gmail. The'uncensored' chatbot is also integrated into Musk's social platform X, which is the number one free news app in the App Store.