plume-asr/plume/cli/eval.py

6 lines
134 B
Python
Raw Normal View History

2021-02-23 14:13:33 +00:00
import typer
from ..models.wav2vec2.eval import app as wav2vec2_app
app = typer.Typer()
app.add_typer(wav2vec2_app, name="wav2vec2")