Edit model card

Cerebras-1.3B-GL

Table of Contents

Click to expand

Model description

Cerebras-1.3B-GL is a 1.3B-parameter transformer-based causal language model for Galician. It is the result of a continual pretraining of a Cerebras-GPT-1.3B adapted to catalan, spanish and english previously by the AINA Project.

Intended uses and limitations

The Cerebras-1.3B-GL 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/Cerebras-1.3B-GL"
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 and DeepSpeed with ZeRO level 2 optimizations.

Language adaptation and training

The language adaptation technique used to train Cerebras-1.3B-GL is based in the used to train FLOR-1.3B, which is explained by their authors in this Medium Post. In summary, we proceeded as follows:

  1. We trained our own BPE tokenizer for galician and replaced the tokenizer and vocabulary of the base model with it.
  2. The embeddings corresponding to tokens that are present in both the original and the target vocabulary (matching tokens) were used for initialization.
  3. The embeddings from tokens not present in Cerebras-1.3-GL's original vocabulary were initialized as the average of all embeddings.
  4. The model was initialized with the original weights and with our adapted tokenizer (step 1) and embeddings (steps 2-3).
  5. The model was then trained on a galician corpus.

Training data

CorpusNÓS

Training hyperparameters

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

Framework

The training was conducted in the Galicia Supercomputing Center (CESGA), using 4 nodes with 2 GPUs NVIDIA A100 (8GPUS in total)

Evaluation

TO-DO

Additional information

Contact

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

License

MIT License

Copyright (c) 2024 Proxecto Nós

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Funding

This research was funded by “The Nós project: Galician in the society and economy of Artificial Intelligence”, resulting from the agreement 2021-CP080 between the Xunta de Galicia and the University of Santiago de Compostela, and thanks to the Investigo program, within the National Recovery, Transformation and Resilience Plan, within the framework of the European Recovery Fund (NextGenerationEU).

Downloads last month
514
Safetensors
Model size
1.32B params
Tensor type
FP16
·

Space using proxectonos/Cerebras-1.3B-GL 1

Collection including proxectonos/Cerebras-1.3B-GL