File size: 1,861 Bytes
5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 5b878c2 1c15d61 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
---
library_name: transformers
tags: []
---
# Model Card for Model ID
<!-- Provide a quick summary of what the model is/does. -->
## Model Details
### Model Description
- **Developed by:** DICE Research Group (https://dice-research.org/) @ Paderborn University (https://www.uni-paderborn.de/)
- **Model type:** GPT2 style (decoder-only) with Mixture-of-Experts layers
- **Language(s) (NLP):** 160+
- **License:** Coming soon
- **Repository:** https://github.com/dice-group/LOLA-Megatron-DeepSpeed
## How to Get Started with the Model
This pre-trained (causal language modeling) model can only be used for text-generation and requires further fine-tuning on downstream tasks.
### How to use
You can use this model directly with a pipeline for text generation.
```python
>>> from transformers import pipeline
>>> generator = pipeline('text-generation', model="dice-research/lola_v1", trust_remote_code=True)
>>> generator("The quick brown fox", max_length=13)
[{'generated_text': 'The quick brown fox jumps over the lazy dog.'}]
```
To use the top-k sampling, please set `do_sample` to `True`.
**Note:** The tokenizer used in the model comes from mGPT (https://github.com/ai-forever/mgpt)
## Training Details
### Training Framework
- DeepSpeed Megatron (https://github.com/microsoft/Megatron-DeepSpeed)
- Architecture type: Transformers (Decoder-only) with Mixture-of-Experts (MoE)
- Number of Experts: 16
- Model Size: 1.3 Billion Dense / 7.4 Billion Sparse
### Pretraining Dataset
- CulturaX (https://huggingface.co/datasets/uonlp/CulturaX)
- Total Tokens: 6.3 Trillion
- Total Languages: 167
### LOLA v1 Training:
- Computing cluster: Noctua2 (https://pc2.uni-paderborn.de/hpc-services/available-systems/noctua2)
- Number of GPUs: 96x Nvidia A100 (40GB)
- Training steps: 296000
- Tokens consumed: 465 Billion
- Training time: ~19 days
|