Welsh
File size: 702 Bytes
13f2f3d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0107a91
13f2f3d
 
 
 
 
 
 
 
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
---
license: mit
language:
- cy
---
# Priflythrennu Cymraeg // _Welsh Language Capitalization_

Dyma cydran syml a chyflym sydd yn priflythrennu geiriau o fewn destunau Cymraeg. 

I'w ddefnyddio rhaid gosod [Sacremoses](https://pypi.org/project/sacremoses/)

```bash
$ pip install sacremoses
```

A'i defnyddio fel hyn...

```python
from sacremoses import MosesTruecaser
from huggingface_hub import hf_hub_download

tc_model_path = hf_hub_download(repo_id="techiaith/sacremoses-truecaser-cy", filename="tc.model")
mtr = MosesTruecaser(tc_model_path)

capitalized_str = mtr.truecase("mae pwllheli yn dref ym mhen llŷn", return_str=True)
print (capitalized_str)

Mae Pwllheli yn dref ym Mhen Llŷn

```