Skip to content

Commit

Permalink
Revert "aider: Added a third page focused on model merging."
Browse files Browse the repository at this point in the history
This reverts commit 2e45669.
  • Loading branch information
hipsterusername committed Jun 9, 2024
1 parent 6e95027 commit e4c2fc8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 59 deletions.
3 changes: 0 additions & 3 deletions src/invoke_training/ui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@

from invoke_training.ui.pages.data_page import DataPage
from invoke_training.ui.pages.training_page import TrainingPage
from invoke_training.ui.pages.model_merge_page import ModelMergePage


def build_app():
training_page = TrainingPage()
model_merge_page = ModelMergePage()
data_page = DataPage()

app = FastAPI()
Expand All @@ -26,5 +24,4 @@ async def root():

app = gr.mount_gradio_app(app, training_page.app(), "/train", app_kwargs={"favicon_path": "/assets/favicon.png"})
app = gr.mount_gradio_app(app, data_page.app(), "/data", app_kwargs={"favicon_path": "/assets/favicon.png"})
app = gr.mount_gradio_app(app, model_merge_page.app(), "/merge", app_kwargs={"favicon_path": "/assets/favicon.png"})
return app
56 changes: 0 additions & 56 deletions src/invoke_training/ui/pages/model_merge_page.py

This file was deleted.

0 comments on commit e4c2fc8

Please sign in to comment.