Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tobiasc
/
conex
like
3
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
020e665
conex
/
espnet
/
__init__.py
tobiasc
Initial commit
ad16788
over 2 years ago
raw
Copy download link
history
blame
Safe
203 Bytes
"""Initialize espnet package."""
import
os
dirname = os.path.dirname(__file__)
version_file = os.path.join(dirname,
"version.txt"
)
with
open
(version_file,
"r"
)
as
f:
__version__ = f.read().strip()