Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
skytnt
/
moe-tts
like
599
Running
on
CPU Upgrade
App
Files
Files
Community
48
c2546a5
moe-tts
/
monotonic_align
/
setup.py
skytnt
init
c2546a5
about 2 years ago
raw
Copy download link
history
blame
Safe
195 Bytes
from
distutils.core
import
setup
from
Cython.Build
import
cythonize
import
numpy
setup(
name =
'monotonic_align'
,
ext_modules = cythonize(
"core.pyx"
),
include_dirs=[numpy.get_include()]
)