Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QOL Improvements #27

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
4e286b4
Make it more habitable
d8ahazard Jun 1, 2024
404b798
Model Phun
d8ahazard Jun 1, 2024
bdb8245
Fixes
d8ahazard Jun 2, 2024
5fe96e9
Add args, fix dropdowns/model selection.
d8ahazard Jun 2, 2024
b330b1a
Use -1 for random seed, set outputs folder
d8ahazard Jun 2, 2024
9db0368
Update .gitignore
d8ahazard Jun 2, 2024
456b9f8
Don't show .safetensors in model names in select
d8ahazard Jun 2, 2024
58810ed
Delete loaded models when loading new models...
d8ahazard Jun 2, 2024
26282e6
Don't load models to CPU only to load to GPU again right away.
d8ahazard Jun 2, 2024
d089d29
Fix precision on 32-bit OSes
d8ahazard Jun 3, 2024
506aa63
Random_seed function.
d8ahazard Jun 3, 2024
1b0ed4a
Merge remote-tracking branch 'upstream/main'
d8ahazard Jul 25, 2024
d3c49a5
Package updates, memory management
d8ahazard Jul 25, 2024
db4205f
Don't pin protobuf version
d8ahazard Jul 25, 2024
22a3cc9
Update gradio_app.py
d8ahazard Jul 25, 2024
35da26b
Update gradio_app.py
d8ahazard Jul 25, 2024
408d9c4
Better memory management.
d8ahazard Jul 25, 2024
3df42a5
Update memory_management.py
d8ahazard Jul 25, 2024
33051e2
Try without "memory_management"
d8ahazard Jul 25, 2024
bfa7688
Fix
d8ahazard Jul 25, 2024
341c771
Update gradio_app.py
d8ahazard Jul 25, 2024
857c355
More break/fix
d8ahazard Jul 25, 2024
5089197
Update gradio_app.py
d8ahazard Jul 25, 2024
fc99c6f
More memory work
d8ahazard Jul 25, 2024
c05bc47
Update gradio_app.py
d8ahazard Jul 25, 2024
5d778bf
Moar break/fix
d8ahazard Jul 25, 2024
364e51d
Update gradio_app.py
d8ahazard Jul 25, 2024
fa1d6b0
Code cleanup, fixes, memory management (re-add) :P
d8ahazard Jul 26, 2024
185508c
Work sync
d8ahazard Jul 26, 2024
56e4b82
Update gradio_app.py
d8ahazard Jul 26, 2024
c8d7cce
Update gradio_app.py
d8ahazard Jul 26, 2024
18cd4fe
Update gradio_app.py
d8ahazard Jul 26, 2024
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,8 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/

# Ignore everything in ./models recursively if it's not a .placeholder file
/models/**
!/models/**/.placeholder
outputs/*
Loading