perfopt
perfopt OP t1_is5q78g wrote
Reply to comment by kingfung1120 in Help regularization and dropout are hurting accuracy by perfopt
Got back to a totally crazy week at work. Finally got time to spend on my project. I think I need to simplify my inputs and give MFCC another try before jumping into CNNs
perfopt OP t1_irkuz3j wrote
Reply to comment by DrXaos in Help regularization and dropout are hurting accuracy by perfopt
I don’t follow the computation. How 45.5k bits?
I tried a model with [512,512,512] (perceptrons in each layer) and that performed very poorly < 0.2 accuracy.
perfopt OP t1_iritkyy wrote
Reply to comment by kingfung1120 in Help regularization and dropout are hurting accuracy by perfopt
Certainly. I've got to travel a couple of days but Tue after work I'll be back on this.
perfopt OP t1_iriqicz wrote
Reply to comment by kingfung1120 in Help regularization and dropout are hurting accuracy by perfopt
Yes you are correct. I am flattening (1723, 13) shape data.
I will try out CNN as well.
perfopt OP t1_iril212 wrote
Reply to comment by kingfung1120 in Help regularization and dropout are hurting accuracy by perfopt
The data is MFCCs created from audio files. Sort of like this - https://www.youtube.com/watch?v=szyGiObZymo
perfopt OP t1_irij7vh wrote
Reply to comment by manuLearning in Help regularization and dropout are hurting accuracy by perfopt
I tried that as well with similar results when adding L2+dropout
perfopt OP t1_irig9zc wrote
Reply to comment by chatterbox272 in Help regularization and dropout are hurting accuracy by perfopt
I see. I’ll try increasing the data used. My fear is that it may lead to a some categories having much less data than others.
L2 0.001 and Dropout 0.1
perfopt OP t1_iriens4 wrote
Reply to comment by manuLearning in Help regularization and dropout are hurting accuracy by perfopt
For creating test and val I used test_train_spilt from sklearn
I'll I manually examine it.
But in general shouldn't the distribution be OK?
inputs_train, inputs_test, targets_train, targets_test = train_test_split(inputs, targets, test_size=0.1)
perfopt OP t1_iridohw wrote
Reply to comment by jellyfishwhisperer in Help regularization and dropout are hurting accuracy by perfopt
Thank you for the response. I am breaking my data to train and validation sets. Do you mean another set for test?
The baseline is overfitting - test accuracy is really high and val accuracy is much lower. That is why I added L2+Dropout
Since the validation accuracy is still very low (52%) should I not focus on improving that?
Submitted by perfopt t3_xyrolr in deeplearning
perfopt t1_j66x6kz wrote
Reply to [D] Staying on top of the DL field? by Which-Distance1384
I work in the DL area with previous background in systems. The field is diverse and rapidly changing. I have sort of come to the conclusion that - for me - it is best to learn the application of the technology in a few chosen domains (say NLP, image recognition) rather than chasing everything that is happening.