Pythonで学ぶ音声言語処理
Daniel Bourke
Machine Learning Engineer/YouTube Creator
good_afternoon.wavimport matplotlib.pyplot as plt# 図を初期化しタイトルを設定 plt.title("Good Afternoon vs. Good Morning")# x軸とy軸のラベル plt.xlabel("Time (seconds)") plt.ylabel("Amplitude")# Good Morning と Good Afternoon の値を追加 plt.plot(time_ga, soundwave_ga, label ="Good Afternoon") plt.plot(time_gm, soundwave_gm, label="Good Morning", alpha=0.5)# 凡例を作成し表示 plt.legend() plt.show()

Pythonで学ぶ音声言語処理