• 大小: 0.11M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-03
  • 语言: Python
  • 标签: 20  mm  

资源简介

DCASE2016基线,GMM做SED

资源截图

代码片段和文件信息

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# DCASE 2016::Acoustic Scene Classification / baseline System

from src.ui import *
from src.general import *
from src.files import *

from src.features import *
from src.dataset import *
from src.evaluation import *

import numpy
import csv
import argparse
import textwrap
import copy

from sklearn import mixture

__version_info__ = (‘1‘ ‘0‘ ‘0‘)
__version__ = ‘.‘.join(__version_info__)


def main(argv):
    numpy.random.seed(123456)  # let‘s make randomization predictable

    parser = argparse.ArgumentParser(
        prefix_chars=‘-+‘
        formatter_class=argparse.RawDescriptionhelpFormatter
        description=textwrap.dedent(‘‘‘\
            DCASE 2016
            Task 1: Acoustic Scene Classification
            baseline system
            ---------------------------------------------
                Tampere University of Technology / Audio Research Group
                Author:  Toni Heittola ( toni.heittola@tut.fi )

       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......       785  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\.gitignore

    .......     57215  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\EULA.pdf

    .......     54970  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\README.html

    .......     21004  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\README.md

    .......        76  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\requirements.txt

    .......     85444  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\dataset.py

    .......     44351  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\evaluation.py

    .......      7999  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\features.py

    .......      7081  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\files.py

    .......       705  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\general.py

    .......      6092  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\sound_event_detection.py

    .......      3650  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\ui.py

    .......         0  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src\__init__.py

     文件      36852  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\task1_scene_classification.py

    .......      3073  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\task1_scene_classification.yaml

     文件      47327  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\task3_sound_event_detection_in_real_life_audio.py

    .......      2832  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\task3_sound_event_detection_in_real_life_audio.yaml

     目录          0  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7\src

     目录          0  2016-11-01 17:14  DCASE2016-baseline-system-python-1.0.7

----------- ---------  ---------- -----  ----

               379456                    19


评论

共有 条评论