occiglot-7b-de-en / README.md
mbrack's picture
fix tables (#4)
9dc3414 verified
metadata
license: apache-2.0
language:
  - en
  - de
pipeline_tag: text-generation

image/png

Occiglot-7B-DE-EN

A polyglot language model for the Occident.

Occiglot-7B-DE-EN is a generative language model with 7B parameters for German and English and trained by the Occiglot Research Collective. It is based on Mistral-7B-v0.1 and trained on 114B tokens of additional multilingual and code data with a block size of 8,192 tokens per sample. Note that the model is a general-purpose base model and was not instruction-fine-tuned nor optimized for chat or other applications. We make an instruction tuned variant available as occiglot-7b-de-en-instruct

This is the first release of an ongoing open research project for multilingual language models. If you want to train a model for your own language or are working on evaluations, please contact us or join our Discord server. We are open for collaborations!

Model details

  • Continued-pretraining from: Mistral-7B-v0.1
  • Model type: Causal decoder-only transformer language model
  • Languages: English, German, and code.
  • License: Apache 2.0
  • Compute resources: HessianAI's 42
  • Contributors: Manuel Brack, Patrick Schramowski, Pedro Ortiz, Malte Ostendorff, Fabio Barth, Georg Rehm, Kristian Kersting
  • Research labs: Occiglot with support from SAINT and SLT
  • Contact: Discord

How to use

You can use this model directly with a pipeline for text generation. Since the generation relies on some randomness, we set a seed for reproducibility:

>>> from transformers import pipeline, set_seed
>>> generator = pipeline('text-generation', model='occiglot/occiglot-7b-de-en')
>>> set_seed(42)
>>> generator("Hallo, Ich bin ein Sprachmodell,", max_length=40, num_return_sequences=1)
[{'generated_text': 'Hallo, Ich bin ein Sprachmodell, das dir bei der Übersetzung von Texten zwischen Deutsch und Englisch helfen kann. Wenn du mir einen Text in Deutsch'}]

Dataset

The training data is the respective subset of the data used for occiglot-7b-eu5, i.e. German plus English and Code.

The data distribution by language (estimated) is as follows:

  • English: ~34%
  • Code: ~13%
  • German: ~52%

The training data was prepared using lm-datasets. The exact data configuration is here.

Training settings

  • Continual pre-training on 128 x A100-80GB on HessianAI's 42.
  • Framework: Determined
  • Precision: bf16
  • Optimizer: AdamW (lr: 0.00001, warmup_steps: 420)
  • Global batch size: 512 (with 8192 blocksize) split over 128 GPUs
  • Cosine Annealing with Warmup

Tokenizer

Tokenizer is unchanged from Mistral-7B-v0.1.

Evaluation

Preliminary evaluation results can be found below. Please note that the non-English results are based on partially machine-translated datasets and English prompts (Belebele and Okapi framework) and thus should be interpreted with caution, e.g., biased towards English model performance. Currently, we are working on more suitable benchmarks for Spanish, French, German, and Italian.

Evaluation results

English

arc_challenge belebele hellaswag mmlu truthfulqa avg
Occiglot-7b-eu5 0.530717 0.726667 0.789882 0.531904 0.403678 0.59657
Occiglot-7b-eu5-instruct 0.558874 0.746667 0.799841 0.535109 0.449034 0.617905
Occiglot-7b-de-en 0.556314 0.791111 0.803824 0.568438 0.423251 0.628587
Occiglot-7b-de-en-instruct 0.604096 0.812222 0.80004 0.570574 0.493807 0.656148
Leo-mistral-hessianai-7b 0.522184 0.736667 0.777833 0.538812 0.429248 0.600949
Mistral-7B-v0.1 0.612628 0.844444 0.834097 0.624555 0.426201 0.668385
Mistral-7B-Instruct-v0.2 0.637372 0.824444 0.846345 0.59201 0.668116 0.713657

German

arc_challenge_de belebele_de hellaswag_de mmlu_de truthfulqa_de avg
Occiglot-7b-eu5 0.493584 0.646667 0.666631 0.483406 0.251269 0.508311
Occiglot-7b-eu5-instruct 0.529512 0.667778 0.685205 0.488234 0.286802 0.531506
Occiglot-7b-de-en 0.50556 0.743333 0.67421 0.514633 0.26269 0.540085
Occiglot-7b-de-en-instruct 0.54491 0.772222 0.688407 0.515915 0.310914 0.566474
Leo-mistral-hessianai-7b 0.474765 0.691111 0.682109 0.488309 0.252538 0.517766
Mistral-7B-v0.1 0.476476 0.738889 0.610589 0.529567 0.284264 0.527957
Mistral-7B-Instruct-v0.2 0.485885 0.688889 0.622438 0.501961 0.376904 0.535215

Acknowledgements

The model training was supported by a compute grant at the 42 supercomputer which is a central component in the development of hessian AI, the AI Innovation Lab (funded by the Hessian Ministry of Higher Education, Research and the Art (HMWK) & the Hessian Ministry of the Interior, for Security and Homeland Security (HMinD)) and the AI Service Centers (funded by the German Federal Ministry for Economic Affairs and Climate Action (BMWK)). The curation of the training data is partially funded by the German Federal Ministry for Economic Affairs and Climate Action (BMWK) through the project OpenGPT-X (project no. 68GX21007D).

License

Apache 2.0

See also