今日to do list:
总结一下这篇博客:Time Series Forecasting — A Complete Guide
我想大概再了解一下时间序列预测的基本流程
这个是这个博主给的,后续我可以把在kaggle中学到的一些流程加进去,先写一个初步的吧
首先把需要的包导入进来
导入数据就使用pandas.read_csv就好了,要注意相对路径
初步查看数据可以使用这个函数:basic_eda
def basic_eda(df):
print("-------------------------------TOP 5 RECORDS-----------------------------")
print(df.head(5))
print("-------------------------------INFO--------------------------------------")
print(df.info())
print("-------------------------------Describe----------------------------------")
print(df.describe())
print("-------------------------------Columns-----------------------------------")
print(df.columns)
print("-------------------------------Data Types--------------------------------")
print(df.dtypes)
print("----------------------------Missing Values-------------------------------")
print(df.isnull().sum())
print("----------------------------NULL values----------------------------------")
print(df.isna().sum())
print("--------------------------Shape Of Data---------------------------------")
print(df.shape)
print("============================================================================ \n")
内个文章写的不大全我自己先初步总结一下
函数功能:于生成一个日期范围的序列
full_time_period = pd.date_range(start='2013-01-01', end='2017-08-31', freq='D')
# start和end参数定义了日期范围的开始和结束日期
# freq参数定义了日期范围的频率
# 生成一个包含2013年1月1日至2017年8月31日之间每天日期的pandas.DatetimeIndex对象
声纹识别搜索关键词:Speaker Recognition/Identification/Verification
声纹识别有三个阶段:
参考链接:添加链接描述
http://www-lium.univ-lemans.fr/sidekit/
https://alize.univ-avignon.fr/
http://www.kaldi-asr.org/
https://github.com/rajathkmp/speaker-verification
https://github.com/wangleiai/dVectorSpeakerRecognition
https://github.com/Janghyun1230/Speaker_Verification
https://github.com/pyannote/pyannote-audio
https://github.com/WeidiXie/VGG-Speaker-Recognition
https://github.com/mravanelli/SincNet
resemblyzer
这个里面有一个demo 02识别了一个youtube视频中的三个人的声音
有一个演示视频,感觉效果很不错