Introduction

At Azurro, we consistently place importance on using the Open Source technologies, both while working on the projects and in our everyday lives. We have decided to share a base language model trained by us. We are confident that smaller language models have great potential, and direct access to them for all people that are interested in such models democratizes this significant and dynamically changing field even more.

Statements

Training large language models requires a lot of computing power and it is meant for the major players on the market. However, does it mean that individuals or small companies cannot train language models capable of performing specific tasks? We decided to answer this question and train our own language model from scratch. We have made the following statements:

  • – we use 1 consumer graphic card
  • – we train the model only with the Polish corpus
  • – we use manually selected, high quality texts for training the model.

Why have we made such statements? It is worth noting that training a model requires several times more resources than using it. To put it simply, it can be assumed that it is about 3-4 times more. Therefore, if a model can be run with a graphic card that has 6 GB VRAM, then training this model requires about 24 GB VRAM (this is the minimum value).

Many consumer computers are equipped with good quality graphic cards that can be used for training a model at one’s own home. This is why we have decided to use a top consumer graphic card – Nvidia’s RTX 4090 24GB VRAM.

All the currently available language models have been trained mainly with English corpora with a little bit of other languages, including Polish. The effect is that these models are not the best at dealing with the Polish texts. Even the popular GPT-3.5 model from OpenAI often has issues with correct forms. Therefore we have decided to prepare a model based only on the Polish corpus. An additional advantage of using only the Polish corpus is the size of the model – it is better to focus on one language in the case of smaller models.

It is important to remember that models are as good as the data with which they are trained. Having regard to the small size of the model, we trained it with carefully selected texts. This is why we have not used corpora such as Common Crawl that contain a lot of poor quality data. Our team has prepared a set of sources that then have been processed and used for training the model.

Model – technical information

APT3-275M-Base has been trained with the use of an original open source framework called ALLaMo. This framework allows the user to train language models similar to the Meta AI’s LLaMA models quickly and efficiently.

APT3-275M-Base is an autoregressive language model based on the architecture of a transformer. It has been trained with data collected before November 2023.

21 billion tokens were used for training on the Polish corpus for one epoch.

A specialized tokenizer has been prepared and trained specifically for training the models in the APT3 series.

Model description:

  • developed by: Azurro 
  • language: Polish
  • model type: causal decoder-only
  • license: CC BY NC 4.0 (non-commercial use)
  • – available at: HuggingFace

Model details:

HyperparameterValue
Model Parameters275M
Sequence Length1024
Vocabulary Size31980
Layers32
Heads16
d_head64
d_model768
Dropout0.0
BiasNo
Positional EncodingRoPE
Activation FunctionSwiGLU
Normalizing FunctionRMSNorm
Intermediate Size2048
Norm Epsilon1e-06

Tokenizer details:

  • – type: BPE
  • – special tokens: 8
  • – alphabet size: 113
  • – vocabulary size: 31980

Training:

Training hyperparameters:

HyperparameterValue
Micro Batch Size13
Gradient Accumulation Steps40
Batch Size532480
Learning Rate (cosine)4e-04 -> 2e-05
Warmup Iterations1000
All Iterations40000
OptimizerAdamW
β1, β20.9, 0.95
Adam_eps1e−8
Weight Decay0.1
Grad Clip1.0
Precisionbfloat16

Dataset

Collecting a large amount of high quality training data is a great challenge. Over the past years at Azurro, we have done a lot of projects connected with processing Big Data. Therefore, with our extensive experience, we have been able to prepare carefully selected training dataset quickly and efficiently.

Our training dataset contains:

  • – ebooks 8%
  • – Polish Wikipedia 4%
  • – web crawl data 88%

Quickstart

This model can be easily loaded using the AutoModelForCausalLM functionality.

from transformers import AutoTokenizer, AutoModelForCausalLM

model_name = „Azurro/APT3-275M-Base”

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

In order to reduce the memory usage, you can use smaller precision (bfloat16).

import torch

model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16)

And then you can use Hugging Face Pipelines to generate text.

import transformers

text = „Najważniejszym celem człowieka na ziemi jest”

pipeline = transformers.pipeline(„text-generation”, model=model, tokenizer=tokenizer)
sequences = pipeline(text_inputs=text, max_new_tokens=100, do_sample=True, top_k=200, eos_token_id=tokenizer.eos_token_id)
for seq in sequences:
print(f”Result: {seq[’generated_text’]}”)

Generated output:

„Najważniejszym celem człowieka na ziemi jest osiągnięcie pokoju. W przeszłości była to również kwestia honoru. Jednak o ile po dziś dzień nie budzi to żadnych wątpliwości, to życie ludzkie w XXI wieku jest częścią większej całości, która składa się z wielu elementów. Nie ma tu żadnej jedności, więc tak naprawdę każdy człowiek ma pewne zasady, które decydują o jego życiu i to właśnie one determinują jego przyszłość. Myślę, że nie sposób pominąć tutaj również religii. Religia w starożytności traktowana była jako jedna z naczelnych zasad chrześcijaństwa.”

Limitations and Biases

APT3-275M-Base is not intended for deployment without fine-tuning. It should not be used for human-facing interactions without further guardrails and user consent.

APT3-275M-Base can produce factually incorrect output, and should not be relied on to produce factually accurate information. APT3-275M-Base was trained on various public datasets. While great efforts have been taken to clean the pretraining data, it is possible that this model could generate lewd, biased or otherwise offensive outputs.

License

Because of an unclear legal situation, we have decided to publish the model under CC BY NC 4.0 license – it allows for non-commercial use. The model can be used for scientific purposes and privately, as long as the license conditions are met.

Disclaimer

The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model.

Citation

Please cite this model using the following format:

@online{AzurroAPT3Base275M,

    author    = {Krzysztof Ociepa, Azurro},

    title     = {Introducing APT3-275M-Base: Polish Language Model},

    year      = {2023},

    url       = {www.azurro.pl/apt3-275m-base-en},

    note      = {Accessed: 2023-11-20}, % change this date

    urldate   = {2023-11-20} % change this date

}