From fa81172e3e1f9462c239c0e9b7a558b3b2424201 Mon Sep 17 00:00:00 2001 From: Rumanu Bhardwaj <38041086+festusdrakon@users.noreply.github.com> Date: Thu, 25 Oct 2018 19:26:21 +0530 Subject: [PATCH] got multi-line comments right --- extractfeatures.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/extractfeatures.py b/extractfeatures.py index 4a45bc4..30c38a1 100644 --- a/extractfeatures.py +++ b/extractfeatures.py @@ -46,14 +46,14 @@ def get_mfcc_features(self): # print(self.mfcc) # return self.mfcc - # Work in progress :P - # def get_delta_mfcc_features(self): - # if(self.d_mfcc==None): - # if(self.mfcc==None): - # self.get_mfcc_features() - # self.d_mfcc = delta(self.mfcc, 1) - # print(self.d_mfcc) - # return self.d_mfcc + '''Work in progress :P + def get_delta_mfcc_features(self): + if(self.d_mfcc==None): + if(self.mfcc==None): + self.get_mfcc_features() + self.d_mfcc = delta(self.mfcc, 1) + print(self.d_mfcc) + return self.d_mfcc''' def build_features(self): if(self.mfcc==None):