ms180's picture
Upload folder using huggingface_hub
2e1cca6 verified
raw
history blame contribute delete
229 Bytes
from pathlib import Path
from espnet3.demo.app_builder import build_demo_app
DEMO_DIR = Path(__file__).resolve().parent
def main():
app = build_demo_app(DEMO_DIR)
app.launch()
if __name__ == "__main__":
main()