Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def main() -> None:
app = QtWidgets.QApplication(sys.argv)
apply_stylesheet(app, theme=config['theme']['location'], invert_secondary=config['theme']['is_light'])
window = MainWindow(app)
window.setWindowTitle('LoRA Trainer')
window.show()
app.exec()

Expand Down
3 changes: 2 additions & 1 deletion run.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@echo off

title LoRA Trainer
cd %~dp0
call sd_scripts\venv\Scripts\activate
python main.py
pause
pause