paper-with-me

Papers

Leveraging Open-Source Large Language Models for Native Language Identification

2024-09-15 · Yee Man Ng, Ilia Markov

Native Language Identification (NLI) - the task of identifying the native language (L1) of a person based on their writing in the second language (L2) - has applications in forensics, marketing, and second language acquisition. Historically, conventional machine learning approaches that heavily rely on extensive feature engineering have outperformed transformer-based language models on this task. Recently, closed-source generative large language models (LLMs), e.g., GPT-4, have demonstrated remarkable performance on NLI in a zero-shot setting, including promising results in open-set classification. However, closed-source LLMs have many disadvantages, such as high costs and undisclosed nature of training data. This study explores the potential of using open-source LLMs for NLI. Our results indicate that open-source LLMs do not reach the accuracy levels of closed-source LLMs when used out-of-the-box. However, when fine-tuned on labeled training data, open-source LLMs can achieve performance comparable to that of commercial LLMs.

📄 PDF Abstract BibTeX arXiv:2409.09659

Code (0)

등록된 구현이 없습니다.

Tasks

Feature EngineeringLanguage AcquisitionLanguage IdentificationMarketingNative Language Identificationopen-set classification

Methods 이 논문이 사용한 방법론

Attention 설명 없음
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Multi-Head Attention 설명 없음
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…

Similar Papers 제목 키워드 기반

Leveraging Open-Source Large Language Models for Clinical Information Extraction in Resource-Constrained Settings

2025-07-28 · Luc Builtjes, Joeran Bosma, Mathias Prokop, Bram van Ginneken 외 arxiv

Medical reports contain rich clinical information but are often unstructured and written in domain-specific language, posing challenges for information extraction. While proprietary large language models (LLMs) have show…

Information Extraction

CHIQ: Contextual History Enhancement for Improving Query Rewriting in Conversational Search

2024-06-07 · Fengran Mo, Abbas Ghaddar, Kelong Mao, Mehdi Rezagholizadeh 외

In this paper, we study how open-source large language models (LLMs) can be effectively deployed for improving query rewriting in conversational search, especially for ambiguous queries. We introduce CHIQ, a two-step met…

Conversational Search

Low-Resource Machine Translation through Retrieval-Augmented LLM Prompting: A Study on the Mambai Language

2024-04-07 · Raphaël Merx, Aso Mahmudi, Katrina Langford, Leo Alberto de Araujo 외

This study explores the use of large language models (LLMs) for translating English into Mambai, a low-resource Austronesian language spoken in Timor-Leste, with approximately 200,000 native speakers. Leveraging a novel …

Machine TranslationRetrievalTranslation

GEMMA-SQL: A Novel Text-to-SQL Model Based on Large Language Models

2025-11-05 · Hari Mohan Pandey, Anshul Gupta, Subham Sarkar, Minakshi Tomer 외 arxiv

Text-to-SQL systems enable users to interact with structured databases using natural language, eliminating the need for specialized programming knowledge. In this work, we introduce GEMMA-SQL, a lightweight and efficient…

Few-Shot Learning

Leveraging Large Language Models for Command Injection Vulnerability Analysis in Python: An Empirical Study on Popular Open-Source Projects

2025-05-21 · Yuxuan Wang, Jingshu Chen, Qingyang Wang

Command injection vulnerabilities are a significant security threat in dynamic languages like Python, particularly in widely used open-source projects where security issues can have extensive impact. With the proven effe…

Vulnerability Detection