Cecilia is a family of language models continual pretrained specifically on Cuban written text, capturing the linguistic, cultural, and social nuances of Cuban Spanish. These models are designed to support natural language processing tasks with a focus on Cuban language varieties and cultural context.
This model is a fine-tuned version of
Cecilia 2B v0.1 which is a continual pre-trained model based on
Salamandra 2b. It belongs to the
Cecilia collection and follows the same lineage as
Cecilia 2B v0.1.
Official quantized GGUF versions (Q8_0, Q6_K, Q4_K_M) in the repository
gia-uh/cecilia-2b-instruct-v1-GGUF
1from transformers import AutoConfig, AutoModel, AutoTokenizer
2
3repo_id = "gia-uh/cecilia_ft_ms_v1"
4
5# Load model and tokenizer
6config = AutoConfig.from_pretrained(repo_id, trust_remote_code=False)
7tokenizer = AutoTokenizer.from_pretrained(repo_id)
8model = AutoModel.from_pretrained(repo_id, trust_remote_code=False)
9
10# Simple inference
11inputs = tokenizer("Hola, que bolá?", return_tensors="pt")
12outputs = model(**inputs)