CoolFace
Modelpublic

yhavinga/gpt2-medium-dutch

sourceHugging Faceupdated 4y agoView on Hugging Face
4likes117downloads
Model Card

GPT2-Medium pre-trained on cleaned Dutch mC4 πŸ‡³πŸ‡±

A GPT2 medium-sized model (345M parameters) trained from scratch on Dutch, with perplexity 15.1 on cleaned Dutch mC4.

How To Use

You can use this GPT2-model directly with a pipeline for text generation.

python
MODEL_DIR='yhavinga/gpt2-medium-dutch'
from transformers import pipeline, GPT2Tokenizer, GPT2LMHeadModel
tokenizer = GPT2Tokenizer.from_pretrained(MODEL_DIR)
model = GPT2LMHeadModel.from_pretrained(MODEL_DIR)
generator = pipeline('text-generation', model, tokenizer=tokenizer, config={'max_length':100})

generated_text = generator('In Antwerpen heeft zich gisteren', max_length=100, do_sample=True, top_k=40, top_p=0.95, repetition_penalty=2.0))

"In Antwerpen heeft zich gisteren" - " een dramatische ontknoping voorgedaan in de Vlaamse deelregering. De VLD, die sinds afgelopen woensdag aan het bewind is in Vlaams-Waals gebied (de zogenaamde gewestelijke en niet rechtstreeks met Vlaanderen samenwerkende gewesten), krijgt toch geen meerderheidszetels bij verkiezingen voor gemeenteraadsverkiezingen in oktober of november volgend jaar in Westmalle, Berchem, Tervuren enz., aldus premier Jean-Pierre Van Cauwenberghe van WalloniΓ« vandaag"

Tokenizer

  • β€”BPE tokenizer trained from scratch for Dutch on mC4 nl cleaned with scripts from the Huggingface Transformers Flax examples.

Dataset

This model was trained on of the full configuration (33B tokens) of cleaned Dutch mC4, which is the original mC4, except

  • β€”Documents that contained words from a selection of the Dutch and English List of Dirty Naught Obscene and Otherwise Bad Words are removed
  • β€”Sentences with less than 3 words are removed
  • β€”Sentences with a word of more than 1000 characters are removed
  • β€”Documents with less than 5 sentences are removed
  • β€”Documents with "javascript", "lorum ipsum", "terms of use", "privacy policy", "cookie policy", "uses cookies", "use of cookies", "use cookies", "elementen ontbreken", "deze printversie" are removed.

Models

TL;DR: yhavinga/gpt2-medium-dutch is the best model.

  • β€”The models with a/b in the step-column have been trained to step a of a total of b steps.
modelparamstrain seq lenppllossbatch sizeepochsstepsoptimlrdurationconfig
yhavinga/gpt-neo-125M-dutchgpt neo125M51220.93.041281190000/558608adam2.4e-31d 12hfull
yhavinga/gpt2-medium-dutchgpt2345M51215.12.711281320000/520502adam8e-47d 2hfull
yhavinga/gpt2-large-dutchgpt2762M51215.12.723211100000/2082009adafactor3.3e-58d 15hlarge
yhavinga/gpt-neo-1.3B-dutchgpt neo1.3B51216.02.77161960000/3049896adafactor5e-47d 11hfull

Acknowledgements

This project would not have been possible without compute generously provided by Google through the TPU Research Cloud. The HuggingFace πŸ€— ecosystem was also instrumental in most, if not all, parts of the training. The following repositories where helpful in setting up the TPU-VM, and training the models:

Created by Yeb Havinga