资源简介
对中科大发布的中文语音情感数据库CASIA,提取了MFCC特征,过零率等特征,采用SVM分类,识别率很低,只适合初学者了解语音情感识别过程
代码片段和文件信息
import librosa
import os
from random import shuffle
import numpy as np
from sklearn import svm
import sklearn
path = r‘I:\CFL\cfl_python_speech_emotion\casia‘
EMOTION_LABEL = {‘angry‘: ‘1‘ ‘fear‘: ‘2‘ ‘happy‘: ‘3‘ ‘neutral‘: ‘4‘ ‘sad‘: ‘5‘ ‘surprise‘: ‘6‘}
def getData(mfcc_feature_num=16):
wav_file_path = []
person_dirs = os.listdir(path)
for person in person_dirs:
if person.endswith(‘.txt‘):
continue
emotion_dir_path = os.path.join(path person)
emotion_dirs = os.listdir(emotion_dir_path)
for emotion_dir in emotion_dirs:
if emotion_dir.endswith(‘ini‘):
continue
emotion_file_path = os.path.join(emotion_dir_path emotion_dir)
emotion_files = os.listdir(emotion_file_path)
for file in emotion_files:
if not file.endswith(‘wav‘):
continue
wav_path = os.path.join(emotion_file_path file)
wav_file_path.append(wav_path)
shuffle(wav_file_path)#将语音文件随机排列
data_feature = []
data_labels = []
for wav_file in wav_file_path:
y sr = librosa.load(wav_file)
mfcc_feature = librosa.feature.mfcc(y sr n_mfcc=16)
zcr_feature = librosa.feature.zero_crossing_rate(y)
energy_feature = librosa.feature.rmse(y)
rms_feature=librosa.feature.rmse(y)
mfcc_feature = mfcc_feature.T.flatten()[:mfcc_feature_num]
zcr_feature = zcr_feature.flatten()
energy_feature = energy_feature.flatten()
rms_feature=rms_feature.flatten()
zcr_feature = np.array([np.mean(zcr_feature)])
energy_feature = np.array([np.mean(energy_feature)])
rms_feature=np.array([np.mean(rms_feature)])
data_feature.append(np.concatenate((mfcc_feature zcr_feature energy_featurerms_feature)))
data_labels.append(int(EMOTION_LABEL[wav_file.split(‘\\‘)[-2]]))
return np.array(data_feature) np.array(data_labels)
def test():
best_acc = 0
best_mfcc_feature_num = 0
for i in range(100 200):
相关资源
- python 3.8终极大法解决Microsoft Visual C
- 张平OpenCV算法精讲基于python和C++教材
- CTP、python、C++ 期货、股票程序化交易
- vim配置文件及其插件大全配置好的I
- Microsoft Visual C++ 14Build Tools
- Microsoft visual c++ 14.0.rar
- 使用Python分析社交网络数据+中文PDF版
- Visual C++ Build Tools
- 点云数据txt格式
- winPycocotools安装程序和安装方法
- Python基础教程第3版) 高清PDF
- QT实现的聊天界面,好友列表,支持文
- 嵌入式web服务器boa_C语言/Python + HTML
- C++调用python3.5中的函数
- python3.x Opencv Toturial
- microsoft visual c++ 14.0 For Python
- pyinstaller 解问题包
- Microsoft visual c++ 14.0
- winows下python安装xgboost的包
- 数据结构与算法分析.C++语言描述 第四
- GDAL-2.3.3-cp35-cp35m-win_amd64.whl
- 基于OpenCV3( Python / C++ ) 的车道检测
- python课件pdf哈工大
- python实现说话人识别实验与开发
- gdb-python27.exe
- NSGA II代码实现集合包含、讲解及 网络
- Python源码剖析-深度探索动态语言核心
- 算法图解-Python语言版本C/C++也可以看
- 酷Q二次开发c++python 混合编程说文件不
- Microsoft Visual C++ Build Tools
评论
共有 条评论