simba9's picture
demo: self-contained Gradio app (run locally)
2a076e4 verified
Raw
History Blame Contribute Delete
181 Bytes
from abc import abstractmethod
class BaseAligner:
@abstractmethod
def align(self, *args, **kwargs):
"""
Perform forced alignment.
"""
pass