Files
Llama-3.1-Carballo/README.md
ModelHub XC 375828d0b1 初始化项目,由ModelHub XC社区提供模型
Model: proxectonos/Llama-3.1-Carballo
Source: Original Platform
2026-06-01 04:46:55 +08:00

9.1 KiB
Raw Permalink Blame History

language, tags, license, inference, widget
language tags license inference widget
gl
es
en
cat
pt
galician
Llama
llama3.1
parameters
top_k do_sample temperature
10 true 0.4
text
Traduce ao galego esta frase en inglés: Inglés: "my sister is studying Biology at the university." Galego: "a miña irmá está a estudar bioloxía na universidade."
Traduce ao galego esta frase en inglés:
Inglés: "You are working with my mother on a very interesting project."
Galego: "Estás a traballar coa miña nai nun proxecto moi interesante"
----
Traduce ao galego esta frase en inglés:
Inglés: "You have to fix the computer now"
Galego:

example_title: Translation

  • text: |- Responde á seguinte pregunta. Pregunta: "Cal é a capital de Noruega?" Resposta: "A capital de Noruega é Oslo."

    Responde á seguinte pregunta. Pregunta: "Cal é a moeda de Portugal" Resposta: "A moeda de Portugal é o euro."

    Responde á seguinte pregunta. Pregunta: "Cal é a capital de Suecia?" Resposta: example_title: Question&Answering
  • text: |- Cualifica como Positivo ou Negativo o sentimento da seguinte frase: Texto: "Estou moi feliz" Polaridade: Positivo

    Cualifica como Positivo ou Negativo o sentimento da seguinte frase: Texto: "Non me gusta beber cervexa" Polaridade: Negativo

    Cualifica como Positivo ou Negativo o sentimento da seguinte frase: Texto: "O meu pai detesta o seu traballo" Polaridade: Negativo

    Cualifica como Positivo ou Negativo o sentimento da seguinte frase: Texto: "Uxía desfruta xogando ao fútbol" Polaridade: Positivo

    Cualifica como Positivo ou Negativo o sentimento da seguinte frase: Texto: "O neno non está contento coas notas" Polaridade: example_title: Sentiment Analysis
  • text: |- Extrae as entidades nomeadas do seguinte texto: Texto: "Chámome Wolfgang e vivo en Berlin" Entidades: Wolfgang:PER, Berlin:LOC

    Extrae as entidades nomeadas do seguinte texto: Texto: "María e Miguel non teñen ningún problema" Entidades: María:PER, Miguel:PER

    Extrae as entidades nomeadas do seguinte texto: Texto: "O mellor de Barcelona é o bar do meu amigo Pablo" Entidades: Pablo:PER, Barcelona:LOC

    Extrae as entidades nomeadas do seguinte texto: Texto: "Carlos comparte cuarto con Marc" Entidades: example_title: Name Entity Recognition (NER)
  • text: A receita tradicional das filloas é example_title: Filloas
  • text: O neno vivía preto de example_title: O neno base_model:
  • meta-llama/Llama-3.1-8B pipeline_tag: text-generation library_name: transformers datasets:
  • proxectonos/corpusnos

Llama-3.1-Carballo

Table of Contents

Click to expand

Model description

Llama-3.1-Carballo is a 8B-parameter transformer-based causal language model for Galician, Portuguese, Spanish, Catalan and English. It is the result of a continual pretraining of meta-llama/Llama-3.1-8B with a multilingual corpus of almost 20B tokens, with an emphasis on Galician texts.

This model is part of the Carballo familily, a family of LLMs specialized in Galician. Smaller models can be found here

Intended uses and limitations

The Llama-3.1-Carballo model is ready-to-use only for causal language modeling. It can perform text-generation tasks and be fine-tuned for specific scenarios.

How to use

import torch
from transformers import pipeline, AutoTokenizer, AutoModelForCausalLM

input_text = "Hoxe fai un bo día. O sol  "

model_id  = "proxectonos/Llama-3.1-Carballo"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
generator = pipeline(
    "text-generation",
    model=model,
    tokenizer=tokenizer,
    torch_dtype=torch.bfloat16,
    trust_remote_code=True,
    device_map="auto",
)
generation = generator(
    input_text,
    do_sample=True,
    top_k=10,
    eos_token_id=tokenizer.eos_token_id
)

print(f"Result: {generation[0]['generated_text']}")

Training

Tools

It was trained using HuggingFace Transformers and Pytorch, using the Causal Modeling Language script. We also use DeepSpeed to deal with the huge size of the model.

Training data

The training corpus consists of texts in 5 languages, with an emphasis on Galician. The main aim of this is to ensure that the model learns to work with this language perfectly, while maintaining knowledge of languages already known (Spanish, English), learning others (Catalan) or adapting existing language varieties (Portuguese-PT instead of Portuguese-BR).

The corpus is structured as follows:

Nº Tokens Main Source
Galician 5B CorpusNós
Portuguese 3B Various
Spanish 3.5B Various
English 3.4B Various
Catalan 3.6B CATalog

Training hyperparameters

  • seed: 42
  • num_devices: 5
  • train_batch_size: 4
  • eval_batch_size: 4
  • gradient_acummulation: 8
  • optimizer: AdamW
  • betas: (0.9,0.999)
  • epsilon: 1e-08
  • weight_decay_rate: 0.1
  • scheduler: "Linear"
  • learning_rate: 1e-04
  • num_epochs: 1.0

Framework

The training was conducted in the Galicia Supercomputing Center (CESGA), using 5 nodes with 2 GPUs NVIDIA A100 each one.

Evaluation

In process...

Additional information

Contact

For further information, please send an email to proxecto.nos@usc.gal

Funding

This model was development within the Nós Project, funded by the Ministerio para la Transformación Digital y de la Función Pública - Funded by EU NextGenerationEU within the framework of the project ILENIA with reference 2022/TL22/00215336.

Citation

@inproceedings{rodriguez-etal-2025-continued,
    title = "Continued Pretraining and Interpretability-Based Evaluation for Low-Resource Languages: A {G}alician Case Study",
    author = "Rodr{\'i}guez, Pablo  and
      Su{\'a}rez, Silvia Paniagua  and
      Gamallo, Pablo  and
      Docio, Susana Sotelo",
    editor = "Che, Wanxiang  and
      Nabende, Joyce  and
      Shutova, Ekaterina  and
      Pilehvar, Mohammad Taher",
    booktitle = "Findings of the Association for Computational Linguistics: ACL 2025",
    month = jul,
    year = "2025",
    address = "Vienna, Austria",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2025.findings-acl.240/",
    doi = "10.18653/v1/2025.findings-acl.240",
    pages = "4622--4637",
    ISBN = "979-8-89176-256-5",
    abstract = "Recent advances in Large Language Models (LLMs) have led to remarkable improvements in language understanding and text generation. However, challenges remain in enhancing their performance for underrepresented languages, ensuring continual learning without catastrophic forgetting, and developing robust evaluation methodologies. This work addresses these issues by investigating the impact of Continued Pretraining (CPT) on multilingual models and proposing a comprehensive evaluation framework for LLMs, focusing on the case of Galician language. Our first contribution explores CPT strategies for languages with limited representation in multilingual models. We analyze how CPT with Galician corpora improves text generation while assessing the trade-offs between linguistic enrichment and task-solving capabilities. Our findings show that CPT with small, high-quality corpora and diverse instructions enhances both task performance and linguistic quality. Our second contribution is a structured evaluation framework based on distinguishing task-based and language-based assessments, leveraging existing and newly developed benchmarks for Galician. Additionally, we contribute new Galician LLMs, datasets for evaluation and instructions, and an evaluation framework."
}