File size: 278 Bytes
60ea83f
 
 
 
 
 
 
 
622b6ed
 
60ea83f
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import os
import sys

now_dir = os.getcwd()
sys.path.insert(0, now_dir)
from text.g2pw import G2PWPinyin

g2pw = G2PWPinyin(
    model_dir="text/G2PWModel",
    model_source="pretrained_models/chinese-roberta-wwm-ext-large",
    v_to_u=False,
    neutral_tone_with_five=True,
)