def __init__(self, filenames, morph, configurations, parent):
super().__init__()
uic.loadUi('sources/DialogDecomposeAndRuleApply.ui', self)
flags = Qt.Window | Qt.WindowSystemMenuHint | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint;
self.setWindowFlags(flags)
self.filenames = filenames
self.morph = morph
self.configurations = configurations
self.parent = parent
self.profiler = Profiler()
self.nu = []
self.ns = []
self.nv = []
self.all_idf_word_keys = []
self.texts = []
self.setAttribute(QtCore.Qt.WA_DeleteOnClose)
self.buttonProcess.clicked.connect(self.process)
self.textEdit.setText("")
TextDecomposeAndRuleApply.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录