stefanhex-apollo
commited on
Commit
•
10cba8c
1
Parent(s):
3962263
Update README.md
Browse files
README.md
CHANGED
@@ -10,8 +10,8 @@ This is a gpt2-small model with LayerNorm fine-tuned out.
|
|
10 |
The model was fine-tuned on OpenWebText for ~500M tokens (1000 iterations of batch size ~488 at 1024 context length) while gradually disableing LayerNorm layers.
|
11 |
For details see [here](https://www.lesswrong.com/posts/THzcKKQd4oWkg4dSP/you-can-remove-gpt2-s-layernorm-by-fine-tuning-for-an-hour) and the upcoming paper.
|
12 |
|
13 |
-
There are 5 similar models available (v1 through v5) trained with different fine-tuning schedules. Please refer to the [paper](https://
|
14 |
-
for details. The best model (v4) is the default as of 6th September 2024 (previously v2 was the default).
|
15 |
|
16 |
The model is a `GPT2LMHeadModel` (to avoid requiring `trust_remote_code`) which technically contains LayerNorm blocks.
|
17 |
However, the epsilon values are all set to 1e12 so that the LayerNorm has no effect. The LN scale is set to 1e6 (to counter the 1e12 epsilon), and the bias to 0.
|
|
|
10 |
The model was fine-tuned on OpenWebText for ~500M tokens (1000 iterations of batch size ~488 at 1024 context length) while gradually disableing LayerNorm layers.
|
11 |
For details see [here](https://www.lesswrong.com/posts/THzcKKQd4oWkg4dSP/you-can-remove-gpt2-s-layernorm-by-fine-tuning-for-an-hour) and the upcoming paper.
|
12 |
|
13 |
+
There are 5 similar models available (v1 through v5) trained with different fine-tuning schedules. Please refer to the [paper](https://arxiv.org/abs/2409.13710)
|
14 |
+
for details; the training code is available [here](https://github.com/ApolloResearch/gpt2_noLN). The best model (v4) is the default as of 6th September 2024 (previously v2 was the default).
|
15 |
|
16 |
The model is a `GPT2LMHeadModel` (to avoid requiring `trust_remote_code`) which technically contains LayerNorm blocks.
|
17 |
However, the epsilon values are all set to 1e12 so that the LayerNorm has no effect. The LN scale is set to 1e6 (to counter the 1e12 epsilon), and the bias to 0.
|