WIP implementing training

This commit is contained in:
Jaret Burkett
2023-07-12 08:23:46 -06:00
parent 47d094e528
commit 57f14e5ef2
16 changed files with 1031 additions and 67 deletions

View File

@@ -10,17 +10,25 @@ a general understanding of python, pip, pytorch, and using virtual environments:
Linux:
```bash
git submodule update --init --recursive
pythion3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cd requirements/sd-scripts
pip install --no-deps -e .
cd ../..
```
Windows:
```bash
git submodule update --init --recursive
pythion3 -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
cd requirements/sd-scripts
pip install --no-deps -e .
cd ../..
```
## Current Tools