Hi Krish, thank you so much for all these great lectures, really really appriciante!!! You contribution to data science community is invaluable!
@pankajshaw6743 жыл бұрын
What a treat! 2 videos in one day.
@maazirfan3 жыл бұрын
Thank you so much for teaching us, I got 90% accuracy with KNN, 72% with decision tree, 52% with logistic regression
@tonyyu53 жыл бұрын
May I ask how u implemented KNN with this neural net?
@maazirfan3 жыл бұрын
@@tonyyu5 #donot use if using ml algo #from tensorflow.keras.utils import to_categorical #from sklearn.preprocessing import LabelEncoder #labelencoder=LabelEncoder() #y=to_categorical(labelencoder.fit_transform(y))X=np.array(extracted_features_df['feature'].tolist()) y=np.array(extracted_features_df['class'].tolist()) X_train,X_test,y_train,y_test=train_test_split(X,y,test_size=0.1,random_state=0)
@tlikesh9603 жыл бұрын
THANK YOU so much for this playlist it really helps me with my mini project( music genre classification ), and your explanation made it much more simple.
@GlobalApex Жыл бұрын
Great explanation. Love from Pakistan 😍. Subscribed
@abhishek_maity3 жыл бұрын
I guess before starting a new playlist it would take same time to upload the remaining 1 video for the tfod custom object detection ..( which is the last and main part of that playlist ) So that playlists will not remain incomplete ....... Anyways this was just a suggestion !! Good work keep going 🙂🤘
@asiftandel87503 жыл бұрын
Great video and explaination Sir
@himangshukakati313 Жыл бұрын
Can anyone help me with this? ModuleNotFoundError: No module named 'resampy' This error is lazily reported, having originally occured in File /usr/local/lib/python3.10/dist-packages/librosa/core/audio.py, line 32, in ----> resampy = lazy.load("resampy")
@annmariyafrancis563010 ай бұрын
Could you solve this error
@arunkanagolkar60068 ай бұрын
install resampy using 'pip install resampy' and Rerun kernal
@akashchoudhuri39323 жыл бұрын
Hello Sir, please upload more ML and DL end to end Project videos along with deployment.
@jatinsadhwani92183 жыл бұрын
Sur please make a detailed practical video on Bert classification model
@hadjdaoudmomo95342 жыл бұрын
Wonderful explanation, thank you so much.
@sahilkadu96792 жыл бұрын
What is the reason behind this line? mfccs_scaled_features = np.mean(mfccs_features.T,axis=0)
@ompatil64958 ай бұрын
Hey krish I have used this code for my personal project for birdcall recognition but it keep showing resampy error import numpy as np from tqdm import tqdm ### Now we iterate through every audio file and extract features ### using Mel-Frequency Cepstral Coefficients extracted_features=[] for index_num,row in tqdm(metadata.iterrows()): file_name = os.path.join(os.path.abspath(audio_dataset_path),str(row["ebird_code"])+'/',str(row["filename"])) final_class_labels=row["species"] data=features_extractor(file_name) extracted_features.append([data,final_class_labels]) can nay one help me
@bolopandeji28655 ай бұрын
same here, have been getting resampy error ModuleNotFoundError: No module named 'resampy' This error is lazily reported, having originally occured in File E:\college\anaconda\Lib\site-packages\librosa\core\audio.py, line 33, in ----> resampy = lazy.load("resampy") I have even tried to install resampy again
@ompatil64955 ай бұрын
@@bolopandeji2865 I sorted my error it was due to dataset having two types of audio files mono and stereo remove all stereo files hopefully it'll sort your error
@bavithagurram82624 ай бұрын
@@ompatil6495 can you share the updated code?
@gregoiremafutala98973 жыл бұрын
Hello, thank you for this great video very well explained, thank you! 10:05 I just didn't understand why did you average the transpose of this tensor via np.mean(mfccs.T, axis=0) ?
@Sibixpur5 ай бұрын
samee Doubtt!! , why did he transpose it??
@shaurya90553 жыл бұрын
First of all you are doing an amazing work I love watching your videos but I just want to say one thing Whenever you make any video please use conditions as well in order to explain something because we all have different things and that's why we get stuck so please do not rush the things up Even if the video gets longer no problem if we need it we'll watch it Actually I'm a noob in programming and I just want you to see the things from our perspective. Thanking you!
@patanjalmishra87403 жыл бұрын
Sir please upload a video which shows difference between k-mean and Knn
@naveenkavindu68003 жыл бұрын
Sir please upload Real-time Audio classification
@OMPRAKASHKUSHWAHA-k8l Жыл бұрын
hello sir, i want to extract mfcc feature form data set and apply clustering techniques, how we can do this??( i have doubt regarding how we can extract mfcc features for unlabelled dataset .
@sayantikachakraborty20553 жыл бұрын
Sir the dataset that i am working on doesnt have a csv file and just has the audio..How do i go ahead without having any csv file data?
@harshitachouhan76543 жыл бұрын
Did you got the solution?
@rifff519 күн бұрын
Same here!
@032lovishkumar88 ай бұрын
for resampy error , try installing resampy , importing it and then restarting kernel
@shanmukhasreevatsa7282 жыл бұрын
Thank you so much for the wonderful video... certainly helped me a lot! I just have one quick question. In the feature_extractor function you defined, what is the purpose of taking the mean for MFCC values? i.e. why is mfccs_scaled_features = np.mean(mfccs.T, axis=0) useful? What does it actually do, please help me out. Thank you!
@ryankuruppu72972 жыл бұрын
Hi, I was just following the same thing. If we don't use it it seems to give out a nested array. When we use the np.mean function it uses an array of the means of the nested arrays.
@durgaganesh4232 жыл бұрын
Hi thank you for this video I have one query how to record loopback from default endpoints ? Any solution And is it possible find glitches or noise from loopback audio
@jasimali39813 жыл бұрын
you explain really good , please help me with i want to train my dataset i.e i have class folders and wav files inside it but i dont have csv file , how can i train my dataset ?
@abdulmeral48113 жыл бұрын
why did you do encoding for labels? do we need to do that? thank you
@tonycardinal4133 жыл бұрын
Aweseome video! Quick ques: How do I convert a wave file to a 128x128 spectogram?
@rakeshdeo6197 Жыл бұрын
Thank you, what is the total course duration of all these.
@samansaeedi102 Жыл бұрын
dear Krish the dataset seems to be unavailable for download. I also tried to download it using soundata library but there is still error. can you please upload the data set somewhere that those who need it can download it?
@pipicovers2 жыл бұрын
awesome video. i am getting very less accuracy around 36% for my target variable. is there any way to improve it ?
@souravmohapatra81393 жыл бұрын
I couldn't download the dataset. Can anyone share gdrive link of that dataset
@sanjaypranav84813 жыл бұрын
Use kaggle api command
@radhikapatil80033 жыл бұрын
Sir please do upload image classification using Fixefficientnet
@radhikapatil80033 жыл бұрын
@@jonsnow8297 what is this
@pillivineeth51033 жыл бұрын
Hi Krish!
@mukhlisraza Жыл бұрын
awesome tutorial
@faresbecheikh7052 Жыл бұрын
Please how to plott the Confusion Matrix of this Project ?
@jasimali39813 жыл бұрын
i don't have a csv data for my sounds dataset , can i train use this model without csv please help me
@bavithagurram82623 ай бұрын
Which model did you use?
@jaaferklila1375 Жыл бұрын
hi how can i apply StandardScaler to the features
@ayyoubm Жыл бұрын
Thank you sir
@muntazirmehdi5033 жыл бұрын
i have a question "why the first coefficient of MFCC has too much variance?" and what does each individual mfcc tells us? kindly reply soon as I ma not been able to find this answer, and my project is at halt due to this
@aishamedina15052 жыл бұрын
have you got the answer yet?
@divyanshuawasthi64163 жыл бұрын
file_name = os.path.join....... In this whole line i am getting key error 'fold'. Can you please help.
@sanjaypranav84813 жыл бұрын
U may not have included / this
@niyatijain21193 жыл бұрын
Did your error got solved?
@dilipkn73393 жыл бұрын
Same error I got
@akanshasharma13582 жыл бұрын
Same problem
@satya-ni2rcАй бұрын
Is there any data leakage issue In the code?
@gayashandulanjana4025 Жыл бұрын
how can we create metadata csv file using audios
@learningprogramming130810 ай бұрын
Can librosa support mp3?
@gauranshluthra75206 ай бұрын
if 10 is the different classes we have, than what is 40???
@dnyanwantnehare32502 жыл бұрын
can anyone help me in In [75] how data is loading, Im working on anther sound data
@louerleseigneur45323 жыл бұрын
Thanks Krish
@priyanshuprakash-k5w Жыл бұрын
I am getting "No module named 'resampy'" error.Anyone knows how to fix this error.
@032lovishkumar88 ай бұрын
hey , you were able to solve it?
@ganapathisubramanyamjayam3 жыл бұрын
could you share the notebook?
@anilkumarchannamsettti2 жыл бұрын
I have an error at file_ name
@sylus1212 жыл бұрын
5:00 (Bookmark)
@Gamezone-kq5sx2 жыл бұрын
Please tell me application of this project
@AKrishnaAkhil3 жыл бұрын
dont repeat the content which was already explained in the previous vid, gets slightly confusing, even though it's not a major problem. like, during the start of the vid. the audio input, scipy and everything, already was explained in the first vid
@sudhanwabokade12852 жыл бұрын
11:16
@hardishah3188 Жыл бұрын
why have you mentioned this timestamp, any thing to be noticed in particular?
@sudhanwabokade1285 Жыл бұрын
@@hardishah3188 Just for my reference. It is supposed to be the time where I should resume watching the video.
@anilkumarchannamsettti2 жыл бұрын
Pls help me
@rupen158510 ай бұрын
Not useful to, very basic yoyu gave I think you have to make one more video how to calculate all the results, and all. for research point of view.