Python में Spoken Language Processing
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")# गुड मॉर्निंग और गुड आफ्टर्नून मान जोड़ें 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 में Spoken Language Processing