mirror of
https://github.com/283375/arcaea-offline-ocr-model.git
synced 2025-11-14 08:22:14 +00:00
feat: model training
This commit is contained in:
@ -31,10 +31,14 @@ class Ui_ProjectEntry_Manage(object):
|
||||
|
||||
self.gridLayout.addWidget(self.projectDescriptionLabel, 1, 0, 1, 2)
|
||||
|
||||
self.extractButton = QPushButton(ProjectEntry_Manage)
|
||||
self.extractButton.setObjectName(u"extractButton")
|
||||
self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Minimum, QSizePolicy.Expanding)
|
||||
|
||||
self.gridLayout.addWidget(self.extractButton, 3, 0, 1, 1)
|
||||
self.gridLayout.addItem(self.verticalSpacer, 5, 0, 1, 2)
|
||||
|
||||
self.redactSourcesButton = QPushButton(ProjectEntry_Manage)
|
||||
self.redactSourcesButton.setObjectName(u"redactSourcesButton")
|
||||
|
||||
self.gridLayout.addWidget(self.redactSourcesButton, 3, 1, 1, 1)
|
||||
|
||||
self.projectNameLabel = QLabel(ProjectEntry_Manage)
|
||||
self.projectNameLabel.setObjectName(u"projectNameLabel")
|
||||
@ -45,20 +49,21 @@ class Ui_ProjectEntry_Manage(object):
|
||||
|
||||
self.gridLayout.addWidget(self.projectNameLabel, 0, 0, 1, 2)
|
||||
|
||||
self.redactSourcesButton = QPushButton(ProjectEntry_Manage)
|
||||
self.redactSourcesButton.setObjectName(u"redactSourcesButton")
|
||||
|
||||
self.gridLayout.addWidget(self.redactSourcesButton, 3, 1, 1, 1)
|
||||
|
||||
self.verticalSpacer = QSpacerItem(20, 40, QSizePolicy.Minimum, QSizePolicy.Expanding)
|
||||
|
||||
self.gridLayout.addItem(self.verticalSpacer, 5, 0, 1, 2)
|
||||
|
||||
self.updateButton = QPushButton(ProjectEntry_Manage)
|
||||
self.updateButton.setObjectName(u"updateButton")
|
||||
|
||||
self.gridLayout.addWidget(self.updateButton, 2, 0, 1, 1)
|
||||
|
||||
self.extractButton = QPushButton(ProjectEntry_Manage)
|
||||
self.extractButton.setObjectName(u"extractButton")
|
||||
|
||||
self.gridLayout.addWidget(self.extractButton, 3, 0, 1, 1)
|
||||
|
||||
self.trainButton = QPushButton(ProjectEntry_Manage)
|
||||
self.trainButton.setObjectName(u"trainButton")
|
||||
|
||||
self.gridLayout.addWidget(self.trainButton, 4, 0, 1, 1)
|
||||
|
||||
|
||||
self.retranslateUi(ProjectEntry_Manage)
|
||||
|
||||
@ -67,10 +72,11 @@ class Ui_ProjectEntry_Manage(object):
|
||||
|
||||
def retranslateUi(self, ProjectEntry_Manage):
|
||||
self.projectDescriptionLabel.setText(QCoreApplication.translate("ProjectEntry_Manage", u"-", None))
|
||||
self.extractButton.setText(QCoreApplication.translate("ProjectEntry_Manage", u"Extract", None))
|
||||
self.projectNameLabel.setText(QCoreApplication.translate("ProjectEntry_Manage", u"-", None))
|
||||
self.redactSourcesButton.setText(QCoreApplication.translate("ProjectEntry_Manage", u"Redact sources", None))
|
||||
self.projectNameLabel.setText(QCoreApplication.translate("ProjectEntry_Manage", u"-", None))
|
||||
self.updateButton.setText(QCoreApplication.translate("ProjectEntry_Manage", u"Update", None))
|
||||
self.extractButton.setText(QCoreApplication.translate("ProjectEntry_Manage", u"Extract", None))
|
||||
self.trainButton.setText(QCoreApplication.translate("ProjectEntry_Manage", u"Train", None))
|
||||
pass
|
||||
# retranslateUi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user