Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CarlDennis
/
HYTTS
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
HYTTS
/
text
/
croatia_to_ipa.py
云淡风轻
init
cbf648c
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
165 Bytes
# -*- coding: utf-8 -*-
import
epitran
def
croatian_to_ipa
(
text
):
epi = epitran.Epitran(
"hrv-Latn"
)
ipa_text = epi.transliterate(text)
return
ipa_text