def makeLSA(self):
self.calculator.setConfiguration(self.configurations)
self.calculator.lsa_components_count = self.lsa_components_count.value()
self.buttonMakeLSA.setEnabled(False)
self.button2DView.setEnabled(False)
self.buttonRelationTable.setEnabled(False)
QApplication.setOverrideCursor(Qt.WaitCursor)
self.textEdit.setText("")
self.configurations['need_full_preprocessing'] = self.radio_preprocessing_full.isChecked()
self.configurations["minimal_word_size"] = self.spinBoxMinimalWordsLen.value()
self.configurations["cut_ADJ"] = self.checkBoxPrilag.isChecked()
self.configurations["need_apriori"] = self.checkBoxNeedApriori.isChecked()
self.radio_preprocessing_full.setEnabled(False)
self.radio_preprocessing_stopwords.setEnabled(False)
self.groupBoxFullPreprocessingPanel.setEnabled(False)
self.profiler.start()
self.calculator.start()
评论列表
文章目录