Spaces:
Runtime error
Runtime error
| # korean_cleaners | |
| _pad = '_' | |
| _punctuation = ',.!?β¦~' | |
| _letters = 'γ±γ΄γ·γΉγ γ γ γ γ γ γ γ γ γ γ²γΈγ γ γ γ γ γ γ γ ‘γ £γ γ ' | |
| # Export all symbols: | |
| symbols = [_pad] + list(_punctuation) + list(_letters) | |
| # Special symbol ids | |
| SPACE_ID = symbols.index(' ') | |