wikimedia/wikipedia
Viewer • Updated • 61.6M • 248k • 1.23k
Distilled with Distily library using teacher model gpt2 on dataset wikimedia/wikipedia.
GPT2LMHeadModel| step | epoch | enwikippl | frwikippl | loss | runtime | samples_per_second | steps_per_second | tinystoriesppl | zhwikippl |
|---|---|---|---|---|---|---|---|---|---|
| teacher eval | 43.75 | 61.75 | 11.8125 | 19.125 | |||||
| 0 | 0 | 949187772416.0 | 76416058130432.0 | 21.75 | 0.1221 | 16.381 | 8.191 | 3556769792.0 | 13950053777408.0 |
| 20 | 1.0 | 13248.0 | 64000.0 | 5.6562 | 0.0646 | 30.969 | 15.485 | 7712.0 | 181248.0 |
`# Distillation (Teacher -> Student) Architecture Difference:
GPT2LMHeadModel -> GPT2LMHeadModel--- teacher model modules
+++ student model modules
@@ -7,15 +7,15 @@
(0-11): 12 x GPT2Block(
(ln_1): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
(attn): GPT2FlashAttention2(
- (c_attn): Linear8bitLt(in_features=768, out_features=2304, bias=True)
- (c_proj): Linear8bitLt(in_features=768, out_features=768, bias=True)
+ (c_attn): Conv1D()
+ (c_proj): Conv1D()
(attn_dropout): Dropout(p=0.1, inplace=False)
(resid_dropout): Dropout(p=0.1, inplace=False)
)
(ln_2): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
(mlp): GPT2MLP(
- (c_fc): Linear8bitLt(in_features=768, out_features=3072, bias=True)
- (c_proj): Linear8bitLt(in_features=3072, out_features=768, bias=True)
+ (c_fc): Conv1D()
+ (c_proj): Conv1D()
(act): NewGELUActivation()
(dropout): Dropout(p=0.1, inplace=False)
)
Trained on 149,632 tokens from the wikimedia/wikipedia dataset.
15820231101.entrainDistillationObjective(logits_loss_component=LossComponent(label=logits, weight=1, loss_fn=kl))
The following hyperparameters were used during training:
0.00018842Adam with betas=(0.9,0.999) and epsilon=1e-08constant0.21.0DistillationObjective(logits_loss_component=LossComponent(label=logits, weight=1, loss_fn=kl))True<torch.optim.lr_scheduler.LambdaLR object at 0x7f80845a7190>NoneNoneNoneNone[('lm_head', False)]FalseFalseNonegpt2TrueFalseFalsewikimedia/wikipedia20231101.entraintext1600.0110.01.00.20TrueBase model
openai-community/gpt2