5c1eda942eeaef4c0278dd8aa2e931e6d77ea888,pyannote/audio/labeling/tasks/overlap_detection.py,OverlapDetectionGenerator,specifications,#OverlapDetectionGenerator#,303

Before Change


    @property
    def specifications(self):
        return {
            "task": TASK_MULTI_CLASS_CLASSIFICATION,
            "X": {"dimension": self.feature_extraction.dimension},
            "y": {"classes": ["non_overlap", "overlap"]},
        }

After Change


    @property
    def specifications(self):
        return {
            "task": Task(type=TaskType.MULTI_CLASS_CLASSIFICATION,
                         output=TaskOutput.SEQUENCE),
            "X": {"dimension": self.feature_extraction.dimension},
            "y": {"classes": ["non_overlap", "overlap"]},
        }
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 6

Non-data size: 6

Instances


Project Name: pyannote/pyannote-audio
Commit Name: 5c1eda942eeaef4c0278dd8aa2e931e6d77ea888
Time: 2019-11-12
Author: bredin@limsi.fr
File Name: pyannote/audio/labeling/tasks/overlap_detection.py
Class Name: OverlapDetectionGenerator
Method Name: specifications


Project Name: pyannote/pyannote-audio
Commit Name: 5c1eda942eeaef4c0278dd8aa2e931e6d77ea888
Time: 2019-11-12
Author: bredin@limsi.fr
File Name: pyannote/audio/labeling/tasks/speaker_change_detection.py
Class Name: SpeakerChangeDetectionGenerator
Method Name: specifications


Project Name: pyannote/pyannote-audio
Commit Name: 5c1eda942eeaef4c0278dd8aa2e931e6d77ea888
Time: 2019-11-12
Author: bredin@limsi.fr
File Name: pyannote/audio/labeling/tasks/speech_activity_detection.py
Class Name: SpeechActivityDetectionGenerator
Method Name: specifications


Project Name: pyannote/pyannote-audio
Commit Name: 5c1eda942eeaef4c0278dd8aa2e931e6d77ea888
Time: 2019-11-12
Author: bredin@limsi.fr
File Name: pyannote/audio/embedding/generators.py
Class Name: SpeechSegmentGenerator
Method Name: specifications


Project Name: pyannote/pyannote-audio
Commit Name: 5c1eda942eeaef4c0278dd8aa2e931e6d77ea888
Time: 2019-11-12
Author: bredin@limsi.fr
File Name: pyannote/audio/labeling/tasks/resegmentation.py
Class Name: ResegmentationGenerator
Method Name: specifications


Project Name: pyannote/pyannote-audio
Commit Name: 5c1eda942eeaef4c0278dd8aa2e931e6d77ea888
Time: 2019-11-12
Author: bredin@limsi.fr
File Name: pyannote/audio/labeling/tasks/domain_classification.py
Class Name: DomainClassificationGenerator
Method Name: specifications