Commit Graph

39 Commits

Author SHA1 Message Date
pre-commit-ci[bot]
2d90db56e3 [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
2023-08-03 16:01:16 +00:00
Alejandro Gil
853ff4aa8b Fixed docker documentation to use the new repo from dockerhub as the previous one does not exist anymore or is outdated. 2023-08-03 08:58:31 -07:00
pre-commit-ci[bot]
a9bc7eae19 [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
2023-06-23 02:58:24 +00:00
ZeroCool940711
be2667dc49
Added extra tags to the medium.txt file for img2txt and improved the 1 click installer documentation by telling the user to move the install.bat or .sh to the main root before running it. 2022-12-01 19:23:45 -07:00
ZeroCool940711
e450a0668a
Fixed several broken links on the documentation. 2022-11-09 15:39:37 -08:00
ZeroCool940711
47616ab3a3 Improved the documentation site by adding extra information on several pages. 2022-11-07 20:27:41 -08:00
ZeroCool940711
4ed4257346 fix:Fixed several typos and wrong paths on the images used on the docs. 2022-11-07 20:27:41 -08:00
hlky
091520bed0
Merge branch 'dev' into master 2022-10-29 06:47:36 +01:00
ZeroCool940711
cb501565c2 More renaming and changed to links related to the organization, docs and repo names. 2022-10-23 18:54:10 -07:00
ZeroCool940711
97eb1b169b More renaming and changes to links related to the organization, docs an repo names. 2022-10-23 17:17:50 -07:00
hlky
8229d1bd92
Update 44.competition.md 2022-10-20 22:18:27 +01:00
hlky
276ef7c3ee
Update 44.competition.md 2022-10-20 21:52:51 +01:00
hlky
27a1520d47
Update 44.competition.md 2022-10-20 21:08:42 +01:00
hlky
af1d107894
Update 44.competition.md 2022-10-20 21:06:27 +01:00
hlky
b0cce644b0
Update 44.competition.md 2022-10-20 20:59:17 +01:00
hlky
dda9174e1c
Update 44.competition.md 2022-10-20 20:58:54 +01:00
hlky
582eddbab9
Update 44.competition.md 2022-10-20 20:57:53 +01:00
hlky
3e4e7e802f
Update 44.competition.md 2022-10-20 20:27:03 +01:00
hlky
ab39ba4c85
Create 44.competition.md 2022-10-20 20:16:09 +01:00
Thomas Mello
0bac445867 docs: add info about docker hub images (#1447) 2022-10-06 21:00:50 +03:00
Thomas Mello
11fa714458
docs: add info about docker hub images (#1447) 2022-10-06 20:59:22 +03:00
hlky
ff78dad4c7
Merge branch 'master' into dev 2022-10-06 13:16:50 +01:00
hlky
b650c162e6
src->models 2022-10-05 01:03:06 +01:00
Divided by Zer0
9ec4b672a2
Fix infinite loop on bridge mode when seed == 0 (#1406)
The bridge will keep looping on the same generation because the
evaluation of "while not seed" will always be False when seed is 0 (or
00000000 etc)

This fixes this. Also allows to request more verbosity on the webui
command

Co-authored-by: hlky <106811348+hlky@users.noreply.github.com>
Co-authored-by: lukas5450 <46075099+lukas5450@users.noreply.github.com>
2022-10-03 09:26:26 +01:00
lukas5450
14c5502b13
fixed missing 'GFPGANv1.4 in doc (#1397)
# Description

Please include:
* relevant motivation
* a summary of the change
* which issue is fixed.
* any additional dependencies that are required for this change.

Closes: #1395 

# Checklist:

- [ ] I have changed the base branch to `dev`
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
2022-10-02 22:15:14 +01:00
xaedes
1b6f6e5652
Add Scene2Image documentation (#1399)
# Description

Add section for Scene2Image in markdown documentation.

# Checklist:

- [x] I have changed the base branch to `dev`
- [x] I have performed a self-review of my own code
- [x] I have commented my code in hard-to-understand areas
- [x] I have made corresponding changes to the documentation

Co-authored-by: hlky <106811348+hlky@users.noreply.github.com>
2022-10-02 22:14:52 +01:00
Divided by Zer0
5853f3e1a1
Stable Horde bridge (#1204)
# Adds the bridge code which when enabled turns the webui into a
headless [Stable Horde](https://stablehorde.net) instance

It adds a few new command-line args to be able to pass variables to the
bridge, as well as the possibility to set it via a variables files
`bridgeData.py`.

To start the bridge, one needs to add the `--bridge` argument to their
relauncher.py as well as any horde vars they want to specify.

On top of that this adds the loguru module as well as my tuned loguru
config. This provides a much nicer logging output and provides the
capability to save output to files for issue reports etc. For now only
the bridge is utilizing the nice format, but once it's merged, you can
start replacing `print()` with `logger.xxx()` where appropriate

To make the bridge work, I've had to add defaults to txt2img but this
should not affect anything.


# Checklist:

- [ x ] I have changed the base branch to `dev`
- [ x ] I have performed a self-review of my own code
- [ x ] I have commented my code in hard-to-understand areas
- [ x ] I have made corresponding changes to the documentation

Co-authored-by: hlky <106811348+hlky@users.noreply.github.com>
Co-authored-by: Thomas Mello <work.mello@gmail.com>
Co-authored-by: Joshua Kimsey <jkimsey95@gmail.com>
Co-authored-by: ZeroCool <ZeroCool940711@users.noreply.github.com>
2022-10-02 18:22:27 +01:00
Travis Fletcher
dff2d6e60f
Amd gpu docker (#1366)
# Description
AMD support can be built by prefixing your compose commands with 
`docker compose -f docker-compose.yml -f docker-compose.amd.yml ...`

or, by setting 
```
export COMPOSE_FILE=docker-compose.yml:docker-compose.amd.yml
```
in your `.profile` or through a tool like `direnv`


Closes: Discord #installation-packing:AMD, at least for Linux hosts

# Checklist:

- [x] I have changed the base branch to `dev`
- [x] I have performed a self-review of my own code
- [x] I have commented my code in hard-to-understand areas
- [x] I have made corresponding changes to the documentation
2022-10-01 01:42:35 +03:00
Thomas Mello
3dd798dc1a
chore: update docs (#1351)
* added front matter
* fixed links
* logo is removed until further consideration
2022-09-28 14:18:56 +03:00
Joshua Kimsey
0cc41b903b
Initial overhaul of documentation (#1262)
Added documents for Streamlit and Gradio.
Added new screenshots for each respective version of the UI. Changed
`upscalers` to `image enhancers`.

Documents currently finished:
- linux-installation.md
- image-enhancers.md
- ReadMe

Documents currently still WIP:
- streamlit-interface.md
- gradio-interface.md

Documents still awaiting changes:
- windows-installation.md (I'll need help for this one)
- custom-models.md
- cli.md

Feedback is welcomed and needed on any changes that should happen for
the documents already finished.

(Also fixed small bug with the `webui_streamlit.yaml` file)

# Checklist:

- [x] I have changed the base branch to `dev`
- [x] I have performed a self-review of my own code
- [x] I have commented my code in hard-to-understand areas
- [x] I have made corresponding changes to the documentation

Co-authored-by: ZeroCool <ZeroCool940711@users.noreply.github.com>
Co-authored-by: Thomas Mello <work.mello@gmail.com>
2022-09-28 13:13:51 +03:00
hlky
4a15702fe9
License header 2022-09-26 14:02:48 +01:00
Thomas Mello
ed3d9176e7 remove old doc files
move docker guide inside docs/
2022-09-23 00:35:35 +03:00
hlky
4b5d48b499
Merge branch 'master' into dev 2022-09-22 22:01:40 +01:00
Joshua Kimsey
1a5c8d91f2
Improved Linux Docs (#1269) 2022-09-22 21:41:32 +01:00
Joshua Kimsey
49ed891c6e Updated documentation for Linux installation
Changed: Linux instructions for the new versions of the `webui.sh` file that handles both Streamlit and Gradio
Changed: Naming of files to shows Windows installation first, then Linux.
2022-09-21 22:04:38 -04:00
hlky
17748cbc9c
Merge pull request #1216 from codedealer/docs
chore: move documentation back to the repo
2022-09-19 17:00:29 +01:00
Thomas Mello
490437d9e5 add new --help output 2022-09-19 01:05:46 +03:00
Thomas Mello
85290c229e update major links 2022-09-19 01:05:46 +03:00
Thomas Mello
f4693ef9f4 move docs from wiki to repo 2022-09-19 01:05:46 +03:00