Other
Collection
2 items • Updated
How to use antoinelouis/belgpt2 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="antoinelouis/belgpt2") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("antoinelouis/belgpt2")
model = AutoModelForCausalLM.from_pretrained("antoinelouis/belgpt2")How to use antoinelouis/belgpt2 with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "antoinelouis/belgpt2"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "antoinelouis/belgpt2",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/antoinelouis/belgpt2
How to use antoinelouis/belgpt2 with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "antoinelouis/belgpt2" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "antoinelouis/belgpt2",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "antoinelouis/belgpt2" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "antoinelouis/belgpt2",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use antoinelouis/belgpt2 with Docker Model Runner:
docker model run hf.co/antoinelouis/belgpt2
The 1st GPT-2 model pre-trained on a very large and heterogeneous French corpus (~60Gb).
You can use BelGPT-2 with 🤗 transformers:
import torch
from transformers import GPT2Tokenizer, GPT2LMHeadModel
# Load pretrained model and tokenizer
model = GPT2LMHeadModel.from_pretrained("antoiloui/belgpt2")
tokenizer = GPT2Tokenizer.from_pretrained("antoiloui/belgpt2")
# Generate a sample of text
model.eval()
output = model.generate(
bos_token_id=random.randint(1,50000),
do_sample=True,
top_k=50,
max_length=100,
top_p=0.95,
num_return_sequences=1
)
# Decode it
decoded_output = []
for sample in output:
decoded_output.append(tokenizer.decode(sample, skip_special_tokens=True))
print(decoded_output)
Below is the list of all French copora used to pre-trained the model:
| Dataset | $corpus_name |
Raw size | Cleaned size |
|---|---|---|---|
| CommonCrawl | common_crawl |
200.2 GB | 40.4 GB |
| NewsCrawl | news_crawl |
10.4 GB | 9.8 GB |
| Wikipedia | wiki |
19.4 GB | 4.1 GB |
| Wikisource | wikisource |
4.6 GB | 2.3 GB |
| Project Gutenberg | gutenberg |
1.3 GB | 1.1 GB |
| EuroParl | europarl |
289.9 MB | 278.7 MB |
| NewsCommentary | news_commentary |
61.4 MB | 58.1 MB |
| Total | 236.3 GB | 57.9 GB |
Detailed documentation on the pre-trained model, its implementation, and the data can be found here.
For attribution in academic contexts, please cite this work as:
@misc{louis2020belgpt2,
author = {Louis, Antoine},
title = {{BelGPT-2: A GPT-2 Model Pre-trained on French Corpora}},
year = {2020},
howpublished = {\url{https://github.com/ant-louis/belgpt2}},
}