PY007 commited on
Commit
6c6c642
β€’
1 Parent(s): 580ef22

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div align="center">
2
+
3
+ # TinyLlama-1.1B
4
+ English | [δΈ­ζ–‡](README_zh-CN.md)
5
+ </div>
6
+
7
+ The TinyLlama project aims to **pretrain** a **1.1B Llama model on 3 trillion tokens**. With some proper optimization, we can achieve this within a span of "just" 90 days using 16 A100-40G GPUs πŸš€πŸš€. The training has started on 2023-09-01.
8
+
9
+ <div align="center">
10
+ <img src=".github/TinyLlama_logo.png" width="300"/>
11
+ </div>
12
+
13
+ We adopted exactly the same architecture and tokenizer as Llama 2. This means TinyLlama can be plugged and played in many open-source projects built upon Llama. Besides, TinyLlama is compact with only 1.1B parameters. This compactness allows it to cater to a multitude of applications demanding a restricted computation and memory footprint.
14
+
15
+
16
+ #### Releases Schedule
17
+ We will be rolling out intermediate checkpoints following the below schedule. We also include some baseline models for comparison.
18
+
19
+ | Date | HF Checkpoint | Tokens | Step | HellaSwag Acc_norm |
20
+ |------------|-------------------------------------------------|--------|------|---------------------|
21
+ | Baseline | [StableLM-Alpha-3B](https://huggingface.co/stabilityai/stablelm-base-alpha-3b)| 800B | -- | 38.31 |
22
+ | Baseline | [Pythia-1B-intermediate-step-50k-105b](https://huggingface.co/EleutherAI/pythia-1b/tree/step50000) | 105B | 50k | 42.04 |
23
+ | Baseline | [Pythia-1B](https://huggingface.co/EleutherAI/pythia-1b) | 300B | 143k | 47.16 |
24
+ | 2023-09-04 | [TinyLlama-1.1B-intermediate-step-50k-105b](https://huggingface.co/PY007/TinyLlama-1.1B-step-50K-105b) | 105B | 50k | 43.50 |
25
+ | 2023-09-16 | -- | 500B | -- | -- |
26
+ | 2023-10-01 | -- | 1T | -- | -- |
27
+ | 2023-10-16 | -- | 1.5T | -- | -- |
28
+ | 2023-10-31 | -- | 2T | -- | -- |
29
+ | 2023-11-15 | -- | 2.5T | -- | -- |
30
+ | 2023-12-01 | -- | 3T | -- | -- |
31
+
32
+ <!-- | Baseline | [Pythia-1B-intermediate-52b](https://huggingface.co/EleutherAI/pythia-1b/tree/step25000) | 52B | 25k | 38.81 | -->
33
+ <!-- | Baseline | [Pythia-1.4B-intermediate-52b](https://huggingface.co/EleutherAI/pythia-1.4b/tree/step25000) | 52B | 25k | 42.49 | -->
34
+ <!-- | Baseline | [Pythia-1.4B-intermediate-105b](https://huggingface.co/EleutherAI/pythia-1.4b/tree/step50000) | 105B | 50k | 46.14 | -->
35
+ <!-- | 2023-09-04 | [TinyLlama-1.1B-intermediate-52b](https://huggingface.co/PY007/TinyLlama-1.1B-52b) | 52B | 25k | 40.85 |
36
+ | 2023-09-04 | [TinyLlama-1.1B-intermediate-84b](https://huggingface.co/PY007/TinyLlama-1.1B-84b) | 84B | 40k | 42.65 | -->
37
+
38
+ It can be observed that TinyLlama has so far progressed well πŸŽ‰πŸŽ‰.
39
+
40
+ Meanwhile, you can track the live cross entropy loss [here](https://wandb.ai/lance777/lightning_logs/reports/metric-train_loss-23-09-02-15-26-17---Vmlldzo1MjkzNzMw?accessToken=9843chbl7rfi1w03hxttpcnbo9z8t6088pw3ddn4h8teunaq0cy7j8hw9c5i02ve).
41
+
42
+ ## Training Details
43
+ Below are some details of our training setup:
44
+
45
+ | Setting | Description |
46
+ |---------------------------------|----------------------------------------------------------------|
47
+ | Parameters | 1.1B |
48
+ | Attention Variant | Grouped Query Attention |
49
+ | Model Size | Layers: 22, Heads: 32, Query Groups: 4, Embedding Size: 2048, Intermediate Size (Swiglu): 5632|
50
+ | Sequence Length | 2048 |
51
+ | Batch Size | 2 million tokens (2048 * 1024) |
52
+ | Learning Rate | 4e-4 |
53
+ | Learning Rate Schedule | Cosine with 2000 warmup steps |
54
+ | Training Data | [Slimpajama](https://huggingface.co/datasets/cerebras/slimpajama-627b) & [Starcoderdata](https://huggingface.co/datasets/bigcode/starcoderdata) |
55
+ | Data Preprocessing | Excluded GitHub subset of Slimpajama; Sampled all code from Starcoderdata |
56
+ | Combined Dataset Size | 1 trillion tokens |
57
+ | Total Tokens During Training | 3 trillion (3 epochs/1430k steps) |
58
+ | Natural Language to Code Ratio | 7:3 |
59
+ | Hardware | 16 A100-40G GPUs |
60
+