def rbm_action_UI(self): self.rbm = inputdata.MyApp() self.rbm.sf = 10 self.rbm.show()
def lda_action_UI(self): self.lda = inputdata.MyApp() self.lda.sf = 8 self.lda.show()
def pca_action_UI(self): self.pca = inputdata.MyApp() self.pca.sf = 9 self.pca.show()
def feature_action_UI(self): self.fe = inputdata.MyApp() self.fe.sf = 6 self.fe.show()
def ls_action_UI(self): self.ls = inputdata.MyApp() self.ls.sf = 7 self.ls.show()
def by_action_UI(self): self.by = inputdata.MyApp() self.by.sf = 5 self.by.show()
def svm_action_UI(self): self.svm = inputdata.MyApp() self.svm.sf = 4 self.svm.show()
def dt_action_UI(self): self.dt = inputdata.MyApp() self.dt.sf = 3 self.dt.show()
def rf_action_UI(self): self.rf = inputdata.MyApp() self.rf.sf = 2 self.rf.show()
def knn_action_UI(self): self.knn = inputdata.MyApp() self.knn.sf = 1 self.knn.show()