jonabur commited on
Commit
5958291
1 Parent(s): 0d08c40

add readme

Browse files
Files changed (2) hide show
  1. README.md +109 -0
  2. viking.png +0 -0
README.md CHANGED
@@ -1,3 +1,112 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ datasets:
4
+ - cerebras/SlimPajama-627B
5
+ - bigcode/starcoderdata
6
+ - mc4
7
+ language:
8
+ - fi
9
+ - en
10
+ - da
11
+ - sv
12
+ - 'no'
13
+ - nn
14
+ - is
15
  ---
16
+
17
+ <div align="center">
18
+ <img src="./viking.png" width="200px">
19
+ </div>
20
+
21
+ # Viking 33B Model Card
22
+
23
+ _**NOTE:** This is a **research checkpoint** of a model for which **training has not been completed.** It is being provided in its current state for research and testing purposes. **Care should be taken when using the outputs of the model.** Once pretraining has completed we intend to release additional instruction-tuned and chat-tuned varieties._
24
+
25
+ Viking 33B is a 33B parameter decoder-only transformer pretrained on Finnish, English, Swedish, Danish, Norwegian, Icelandic and code. It is being trained on 2 trillion tokens (700B billion as of this release). Viking 33B is a fully open source model and is made available under the Apache 2.0 License.
26
+
27
+ Viking was created in a collaboration between [SiloGen](https://www.silo.ai/silogen) from [Silo AI](https://www.silo.ai/), the [TurkuNLP group](https://turkunlp.org/) of the University of Turku, and [High Performance Language Technologies](https://hplt-project.org/) (HPLT). Training was conducted on the [LUMI supercomputer](https://www.lumi-supercomputer.eu/), using compute resources generously provided by [CSC](https://csc.fi/) - IT Center for Science, Finland.
28
+
29
+ This project is part of an ongoing effort to create open source large language models for non-English and especially low resource languages like Finnish. The mode is fluent in Finnish, English, the Scandinavian languages and capable of basic translation between them. It is also able to understand and generate code.
30
+
31
+ Viking 33B is part of the second set of models of our model family. Work is also underway on our next models which will support even more languages and grouped query attention.
32
+
33
+ ## Model Overview
34
+ _**NOTE:** In addition to being an early research release, Viking is a base model which needs further fine tuning for most use cases._
35
+
36
+ Viking is a generative pretrained transformer using a LLaMA-like GPT architecture, and makes use of rotary positional embeddings and flash attention.
37
+
38
+ | Hyperparameter | Value |
39
+ | :------------- | :----: |
40
+ | n_parameters | 33B |
41
+ | n_layers | 56 |
42
+ | n_heads | 56 |
43
+ | d_model | 7168 |
44
+ | vocab_size | 131072 |
45
+ | sequence_length | 4096 |
46
+
47
+ ## Viking Research Checkpoints
48
+
49
+ Checkpoints are available as branches in the repository. Checkpoints will be released roughly every 100B tokens. The main branch will always point to the latest checkpoint. The following checkpoints are available:
50
+
51
+ * [100B](https://huggingface.co/LumiOpen/Viking-33B/tree/100B)
52
+ * [200B](https://huggingface.co/LumiOpen/Viking-33B/tree/200B)
53
+ * [300B](https://huggingface.co/LumiOpen/Viking-33B/tree/300B)
54
+ * [400B](https://huggingface.co/LumiOpen/Viking-33B/tree/400B)
55
+ * [500B](https://huggingface.co/LumiOpen/Viking-33B/tree/500B)
56
+ * [600B](https://huggingface.co/LumiOpen/Viking-33B/tree/600B)
57
+ * [700B](https://huggingface.co/LumiOpen/Viking-33B/tree/700B)
58
+ * [800B](https://huggingface.co/LumiOpen/Viking-33B/tree/800B)
59
+ * [900B](https://huggingface.co/LumiOpen/Viking-33B/tree/900B)
60
+ * [1000B](https://huggingface.co/LumiOpen/Viking-33B/tree/1000B)
61
+
62
+ The transformers library allows you to load a checkpoint from a branch as follows:
63
+
64
+ ```python
65
+ branch = "200B"
66
+ model = transformers.AutoModelForCausalLM.from_pretrained(
67
+ "LumiOpen/Viking-33B",
68
+ torch_dtype=torch.bfloat16,
69
+ revision=branch,
70
+ )
71
+ ```
72
+
73
+ ## Training
74
+
75
+ Viking 33B was trained on the LUMI supercomputer, using 1024 AMD MI250X GPUs. Each MI250X GPU has two Graphics Complex Dies (GCDs) for a world size of 2048 during training, using activation checkpointing, a micro batch size of 1, gradient accumulation of 16, and a 3D parallelism strategy of TP=4, PP=4, DP=128.
76
+
77
+ Training began in September 2023 using a [custom fork](https://github.com/LumiOpen/Megatron-DeepSpeed) of the Megatron-Deepspeed framework.
78
+
79
+
80
+ ## Training Hyperparameters
81
+
82
+ | Hyperparameter | Value | Comment |
83
+ | :------------: | :---: | :------:|
84
+ | Precision | bfloat16 | |
85
+ | Optimizer | AdamW | |
86
+ | Learning rate | 3e-4 | 10B tokens warm-up, cosine decay to 3e-5 |
87
+ | Weight decay | 1e-1 | |
88
+ | Batch size | 1024 | 1024 samples x 4096 tokens = 4194304 tokens |
89
+
90
+ ## Tokenizer
91
+
92
+ Viking uses a custom 128K Bloom tokenizer trained on the same English, Finnish, Swedish, Danish, Norwegian, Icelandic and code dataset used to train the model.
93
+
94
+ ## Dataset
95
+
96
+ Viking is being trained on a 2 trillion token mixed dataset of English, Finnish, Swedish, Danish, Norwegian, Icelandic and code.
97
+
98
+ Full details will be published soon.
99
+
100
+ ## Evaluation Results
101
+
102
+ Full evaluation results will be published with the final model.
103
+
104
+ ## Ethical Considerations and Limitations
105
+
106
+ _Viking 33B is a release of a partially trained model, and special care should be taken when using any output._
107
+
108
+ Viking is an advanced language model, primarily optimized for English, Finnish, Swedish, Norwegian, Danish, Icelandic and code, with no meaningful proficiency in any other languages. As with most AI-driven systems, Viking is a product of the vast data it has been trained on, which may reflect the imperfections, biases, and idiosyncrasies of the wider web. Viking may, at times, produce outputs that can be considered inaccurate, prejudiced, or controversial. Users and developers engaging with Viking should exercise discretion and consider additional evaluation and customization to ensure the model's responses align with their specific needs and ethical standards.
109
+
110
+ ## License
111
+
112
+ Viking is released under the Apache 2.0 license.
viking.png ADDED