Processamento de Linguagem Falada em Python
Daniel Bourke
Machine Learning Engineer/YouTube Creator
good_afternoon.wavimport matplotlib.pyplot as plt# Inicializar a figura e definir o título plt.title("Good Afternoon vs. Good Morning")# Rótulos dos eixos x e y plt.xlabel("Time (seconds)") plt.ylabel("Amplitude")# Adicionar valores de good morning e good afternoon plt.plot(time_ga, soundwave_ga, label ="Good Afternoon") plt.plot(time_gm, soundwave_gm, label="Good Morning", alpha=0.5)# Criar a legenda e exibir o gráfico plt.legend() plt.show()

Processamento de Linguagem Falada em Python