File size: 326 Bytes
f72f213
 
 
ebe28a6
 
f72f213
 
a81ce99
 
 
 
f72f213
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-
# Copyright @ 2023 wdcqc/aieud project.
# Open-source under license obtainable in project root (LICENSE.md).
import argparse
from wfd.webui import start_demo

if __name__ == "__main__":
    class Arguments:
        colab = False
        link_to_colab = True
    args = Arguments()
    start_demo(args)