diff --git a/paddlespeech/cli/executor.py b/paddlespeech/cli/executor.py index e307a287b7fa127c747c7d8b23bffbd30a44bb98..c132b3b8793959fb2836840c16784a2ae45359ca 100644 --- a/paddlespeech/cli/executor.py +++ b/paddlespeech/cli/executor.py @@ -26,8 +26,8 @@ class BaseExecutor(ABC): """ def __init__(self): - self.input = None - self.output = None + self._inputs = dict() + self._outputs = dict() @abstractmethod def _get_pretrained_path(self, tag: str) -> os.PathLike: