BSC-LT / ALIA-40b-instruct-2605-GGUF

huggingface.co
Total runs: 19
24-hour runs: 7
7-day runs: 8
30-day runs: 0
Model's Last Updated: May 11 2026
text-generation

Introduction of ALIA-40b-instruct-2605-GGUF

Model Details of ALIA-40b-instruct-2605-GGUF

Work In Progress New versions will be available during the coming weeks/months.

Sampling Parameters: For optimal performance, we recommend using temperatures close to zero (0 - 0.2). Additionally, we advise against using any type of repetition penalty, as from our experience, it negatively impacts instructed model's responses .

ALIA-40b-instruct-GGUF

Description

This repo contains GGUF format model files for ALIA-40b-instruct-2605 .

Quantization

Model weights were exported to GGUF in FP16 first, then quantized with llama.cpp ’s llama-quantize into the target preset (e.g., Q8 ). The same conversion + quantization pipeline was executed through quantool from a single YAML config (e.g., method: gguf , quant_level , and method-specific quantization_config ) and run via quantool config.yaml .

About GGUF

GGUF is the model file format introduced by the llama.cpp team on August 21st, 2023 , replacing the older GGML format (now deprecated). It brings significant improvements such as enhanced tokenization, proper handling of special tokens, embedded metadata (e.g., architecture, quantization type, tokenizer), and an extensible design for future compatibility.

How to use
Deployment as service and remote use (Messages API)

In our experience, vllm works well for deploying the full unquantized version of the model, whereas llama.cpp is appropriate for the quantized (GGUF) version. We strongly discourage using ollama as we have encountered compatibility issues that may seriously degrade the model's performance.

The easiest and most reliable way to have a working deployment of ALIA-40b-instruct is through the "Deploy / HF Inference Endpoints" option directly on the Hugging Face model page. This automatically creates a functioning endpoint, using vllm or llama.cpp according to the model variant, with an appropriately dimensioned GPU. While there are additional settings available for the endpoint we found the standard configuration proposed by Hugging Face to be a reasonable starting point.

Once the endpoint is running, the model can be easily called using OpenAI's "Messages API" (the de facto standard API for LLM use). By using this API the chat template is applied automatically by the service, requiring no explicit configuration on the client side. The endpoint's configuration page on Hugging Face also provides a "Playground" for testing and API examples, as well as a simple chat interface.

Example usage:

# pip install openai 

from openai import OpenAI 

client = OpenAI(
    base_url = YOUR_ENDPOINT_URL,
    api_key = "$HF_TOKEN"
)

chat_completion = client.chat.completions.create(
    model = "BSC-LT/ALIA-40b-instruct-2605-GGUF",
    messages = [
        {
            "role": "user",
            "content": "What is deep learning?"
        }
    ],
    stream = True,
    max_tokens = 1000,
  temperature=0.1
)

print(chat_completion.choices[0].message.content)

The model can also be deployed locally or on any server infrastructure with sufficient GPUs, using vllm or llama.cpp. We recommend an initial deployment on Hugging Face as a point of reference and comparison to make sure the model is behaving as expected in the desired deployment setup.

To check that your endpoint is working correctly, you can try to replicate the examples contained in this Colab Notebook


Evaluation

WIP

Additional information
Author

The Language Modeling team from AI Institute at Barcelona Supercomputing Center.

Contact

For further information, please send an email to [email protected] .

Copyright

Copyright(c) 2026 by The Language Modeling team from AI Institute at Barcelona Supercomputing Center.

Funding

This work is 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 Modelos del Lenguaje.

This work has been promoted and supported by the Government of Catalonia through the Aina Project.

Acknowledgements

This project has benefited from the contributions of numerous teams and institutions, mainly through data contributions, knowledge transfer or technical support.

We are especially grateful to our ILENIA project partners: CENID, HiTZ and CiTIUS for their participation. We also extend our genuine gratitude to the Spanish Senate and Congress, Fundación Dialnet, and the ‘Instituto Universitario de Sistemas Inteligentes y Aplicaciones Numéricas en Ingeniería (SIANI)’ of the University of Las Palmas de Gran Canaria. Many other institutions have been involved in the project. Our thanks to Òmnium Cultural, Parlament de Catalunya, Institut d'Estudis Aranesos, Racó Català, Vilaweb, ACN, Nació Digital, El món and Aquí Berguedà. We thank the Welsh government, DFKI, Occiglot project, especially Malte Ostendorff, and The Common Crawl Foundation, especially Pedro Ortiz, for their collaboration.

We would also like to give special thanks to the NVIDIA team, with whom we have met regularly, especially to: Marcelo Sanchez, Ignacio Sarasua, Adam Henryk Grzywaczewski, Oleg Sudakov, Sergio Perez, Miguel Martinez, Felipe Soares and Meriem Bendris. Their constant support has been especially appreciated throughout the entire process.

Their valuable efforts have been instrumental in the development of this work.

Disclaimer

Be aware that the model may contain biases or other unintended distortions. When third parties deploy systems or provide services based on this model, or use the model themselves, they bear the responsibility for mitigating any associated risks and ensuring compliance with applicable regulations, including those governing the use of Artificial Intelligence.

The Barcelona Supercomputing Center, as the owner and creator of the model, shall not be held liable for any outcomes resulting from third-party use.

Citation
@misc{gonzalezagirre2025salamandratechnicalreport,
      title={Salamandra Technical Report}, 
      author={Aitor Gonzalez-Agirre and Marc Pàmies and Joan Llop and Irene Baucells and Severino Da Dalt and Daniel Tamayo and José Javier Saiz and Ferran Espuña and Jaume Prats and Javier Aula-Blasco and Mario Mina and Adrián Rubio and Alexander Shvets and Anna Sallés and Iñaki Lacunza and Iñigo Pikabea and Jorge Palomar and Júlia Falcão and Lucía Tormo and Luis Vasquez-Reina and Montserrat Marimon and Valle Ruíz-Fernández and Marta Villegas},
      year={2025},
      eprint={2502.08489},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2502.08489}, 
}
License

Apache License, Version 2.0

Model Index
Model Base Instruct
2b Link Link
7b Link Link
40b Link Link

Runs of BSC-LT ALIA-40b-instruct-2605-GGUF on huggingface.co

19
Total runs
7
24-hour runs
9
3-day runs
8
7-day runs
0
30-day runs

More Information About ALIA-40b-instruct-2605-GGUF huggingface.co Model

More ALIA-40b-instruct-2605-GGUF license Visit here:

https://choosealicense.com/licenses/apache-2.0

ALIA-40b-instruct-2605-GGUF huggingface.co

ALIA-40b-instruct-2605-GGUF huggingface.co is an AI model on huggingface.co that provides ALIA-40b-instruct-2605-GGUF's model effect (), which can be used instantly with this BSC-LT ALIA-40b-instruct-2605-GGUF model. huggingface.co supports a free trial of the ALIA-40b-instruct-2605-GGUF model, and also provides paid use of the ALIA-40b-instruct-2605-GGUF. Support call ALIA-40b-instruct-2605-GGUF model through api, including Node.js, Python, http.

ALIA-40b-instruct-2605-GGUF huggingface.co Url

https://huggingface.co/BSC-LT/ALIA-40b-instruct-2605-GGUF

BSC-LT ALIA-40b-instruct-2605-GGUF online free

ALIA-40b-instruct-2605-GGUF huggingface.co is an online trial and call api platform, which integrates ALIA-40b-instruct-2605-GGUF's modeling effects, including api services, and provides a free online trial of ALIA-40b-instruct-2605-GGUF, you can try ALIA-40b-instruct-2605-GGUF online for free by clicking the link below.

BSC-LT ALIA-40b-instruct-2605-GGUF online free url in huggingface.co:

https://huggingface.co/BSC-LT/ALIA-40b-instruct-2605-GGUF

ALIA-40b-instruct-2605-GGUF install

ALIA-40b-instruct-2605-GGUF is an open source model from GitHub that offers a free installation service, and any user can find ALIA-40b-instruct-2605-GGUF on GitHub to install. At the same time, huggingface.co provides the effect of ALIA-40b-instruct-2605-GGUF install, users can directly use ALIA-40b-instruct-2605-GGUF installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

ALIA-40b-instruct-2605-GGUF install url in huggingface.co:

https://huggingface.co/BSC-LT/ALIA-40b-instruct-2605-GGUF

Url of ALIA-40b-instruct-2605-GGUF

ALIA-40b-instruct-2605-GGUF huggingface.co Url

Provider of ALIA-40b-instruct-2605-GGUF huggingface.co

BSC-LT
ORGANIZATIONS

Other API from BSC-LT

huggingface.co

Total runs: 3.4K
Run Growth: 2.4K
Growth Rate: 70.75%
Updated:April 10 2026
huggingface.co

Total runs: 1.6K
Run Growth: -3.6K
Growth Rate: -229.90%
Updated:October 22 2025
huggingface.co

Total runs: 1.1K
Run Growth: 1.0K
Growth Rate: 95.21%
Updated:April 10 2026
huggingface.co

Total runs: 909
Run Growth: -753
Growth Rate: -82.84%
Updated:October 22 2025
huggingface.co

Total runs: 641
Run Growth: 253
Growth Rate: 39.47%
Updated:October 22 2025
huggingface.co

Total runs: 543
Run Growth: 111
Growth Rate: 20.75%
Updated:April 10 2026
huggingface.co

Total runs: 387
Run Growth: 113
Growth Rate: 31.74%
Updated:March 27 2026
huggingface.co

Total runs: 244
Run Growth: -53
Growth Rate: -21.72%
Updated:August 07 2025
huggingface.co

Total runs: 180
Run Growth: -20
Growth Rate: -11.11%
Updated:October 26 2021
huggingface.co

Total runs: 179
Run Growth: 85
Growth Rate: 47.49%
Updated:April 10 2026
huggingface.co

Total runs: 119
Run Growth: 16
Growth Rate: 13.45%
Updated:September 06 2021
huggingface.co

Total runs: 110
Run Growth: 78
Growth Rate: 70.91%
Updated:October 29 2024
huggingface.co

Total runs: 92
Run Growth: 7
Growth Rate: 8.75%
Updated:April 22 2026