File size: 1,383 Bytes
37b1b55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0cee7fd
37b1b55
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Hugging Face's logo
Hugging Face
Search models, datasets, users...
Models
Datasets
Spaces
Docs
Solutions
Pricing




ClassCat
/
gpt2-greek Copied
private
Text Generation
PyTorch
Transformers

cc100
Greek
gpt2
License:
cc-by-sa-4.0
Model card
Files and versions
Community
Settings
gpt2-greek
/
README.md
ClassCat's picture
ClassCat
Create README.md
0765806
less than a minute ago
raw
history
blame
edit
delete
965 Bytes
---
language: el
license: cc-by-sa-4.0
datasets:
- cc100
widget:
- text: "Αυτό είναι ένα"
- text: "Ανοιξα την"
- text: "Ευχαριστώ για το"
- text: "Έχει πολύ καιρό που δεν έχουμε"
---

## Greek GPT2 model (Uncased)

### Prerequisites

transformers==4.19.2

### Model architecture

This model uses approximately half the size of GPT2 base model parameters.

### Tokenizer

Using BPE tokenizer with vocabulary size 50,000.

### Training Data 

* Subset of [CC-100/el](https://data.statmt.org/cc-100/) : Monolingual Datasets from Web Crawl Data
* Subset of [oscar](https://huggingface.co/datasets/oscar)
* [wiki40b/el](https://www.tensorflow.org/datasets/catalog/wiki40b#wiki40bel) (Greek Wikipedia)

### Usage

```python
from transformers import pipeline
generator = pipeline('text-generation', model='ClassCat/gpt2-greek')
generator("Αυτό είναι ένα", max_length=50, num_return_sequences=5)
```