Metadata-Version: 1.1
Name: speechdb
Version: 0.1.6
Summary: A library that simplifies the usability of the predominant speech databases.
Home-page: https://github.com/YuanGongND/Speech_DB_Engine
Author: Yuan Gong
Author-email: yuan.gong.12@nd.edu
License: UNKNOWN
Download-URL: https://github.com/YuanGongND/Speech_DB_Engine/archive/0.1.tar.gz
Description: 
            # Speech DB Engine
        
            ### A project that simplifies the usability of the predominant speech databases.
        
            ## Getting Started
        
            ### Download from Pypi
        
            ``
            pip install speechdb
            ``
        
            ### General Syntax
        
            from speechdb import timit
        
            # core_test_csv can be found in the testing_sets directory
        
            timit1 = timit.Timit(path_to_timit_database,path_to_core_test_csv)
        
            # yType: {'PHN','DLCT','SPKR'} (default='PHN')
            
            # yVals: 'All' or ['sh',...] or ['DR1',...] or ['FDAB0',...] (default='All')
           
             # dataset: {'test','train','coretest') (default='train')
        
            y,x = timit1.read_db(yType, yVals, dataset)
        
            # ex.
        
            y,x = timit1.read_db('PHN',['sh'],'test')
            
            
Keywords: speech,research
Platform: UNKNOWN
