CoolFace
Modelpublic

yhavinga/gpt-neo-125M-dutch

sourceHugging Faceupdated 4y agoView on Hugging Face
3likes312downloads
Model Card

GPT-Neo 125M pre-trained on cleaned Dutch mC4 ๐Ÿ‡ณ๐Ÿ‡ฑ

A GPT-Neo small model (125M paramters) trained from scratch on Dutch, with perplexity 20.9 on cleaned Dutch mC4.

How To Use

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

python
MODEL_DIR='yhavinga/gpt-neo-125M-dutch'
from transformers import pipeline, GPT2Tokenizer, GPTNeoForCausalLM
tokenizer = GPT2Tokenizer.from_pretrained(MODEL_DIR)
model = GPTNeoForCausalLM.from_pretrained(MODEL_DIR)
generator = pipeline('text-generation', model, tokenizer=tokenizer)

generated_text = generator('Wetenschappers verbonden aan de Katholieke Universiteit', max_length=256, do_sample=True, top_k=50, top_p=0.95, temperature=0.7, no_repeat_ngram_size=2))

"Wetenschappers verbonden aan de Katholieke Universiteit van Nijmegen" - "hebben ontdekt dat de genen die een mens heeft, een enorme invloed hebben op het DNA van zijn lichaam. Cellen kunnen zich beter binden aan het DNA dan andere soorten cellen. De genen die de cellen maken, zijn bepalend voor de groei van de cel. Het DNA van een mens is niet alleen informatiedrager, maar ook een bouwstof voor het DNA. Het wordt gevonden in de genen van een cel. Als er op een cel een cel"

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