speech_asr 3 years ago
parent
commit
3f2981bb8d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      funasr/tasks/diar.py

+ 2 - 2
funasr/tasks/diar.py

@@ -787,10 +787,10 @@ class EENDOLADiarTask(AbsTask):
             cls, train: bool = True, inference: bool = False
     ) -> Tuple[str, ...]:
         if not inference:
-            retval = ("speech", "profile", "binary_labels")
+            retval = ("speech", )
         else:
             # Recognition mode
-            retval = ("speech")
+            retval = ("speech", )
         return retval
 
     @classmethod