JU-NLP-PG at RAG4Reports 2026: Memory-Efficient Multilingual Report Generation with 4-bit Quantized LLMs

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Software Development & Engineering · Depth: Expert, medium

Summary

The JU-NLP-PG system, developed for Task B on Multilingual Report Generation at RAG4Reports 2026, addresses the challenge of generating grounded, citation-bearing reports from a four million multilingual document corpus (English, Chinese, Russian, Arabic) given an English request. The core technical hurdle involved deploying a large retrieval corpus and a capable generative model on a two-GPU node with ≈29 GB RAM. To overcome this memory constraint, the system employs three key techniques: 4-bit NF4 quantization, which significantly shrinks the Large Language Model from ≈14 GB to ≈4 GB; the use of memory-mapped, chunked FAISS index construction built upon pre-computed multilingual-e5-large embeddings; and a strict model-loading order designed to prevent heap fragmentation. Additionally, the generated reports are structured using topic nuggets, directly aligning with the Auto-ARGUE evaluation signal.

Key takeaway

For Machine Learning Engineers deploying large Retrieval Augmented Generation (RAG) systems on resource-constrained hardware, this work demonstrates a viable path. You should consider implementing 4-bit NF4 quantization for your LLMs, which can reduce model size from ≈14 GB to ≈4 GB, alongside memory-mapped, chunked FAISS indices for multilingual corpora. Prioritize strict model-loading orders to prevent heap fragmentation, enabling complex multilingual report generation on systems with ≈29 GB RAM.

Key insights

Memory-efficient techniques enable large multilingual RAG systems on constrained hardware.

Principles

Method

The system retrieves passages from a 4M multilingual corpus using FAISS, then generates reports structured by topic nuggets, employing 4-bit NF4 quantization and strict model-loading for memory efficiency on ≈29 GB RAM.

In practice

Topics

Best for: AI Engineer, Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.