Update Datasets.md

Former-commit-id: 656ad01bb8
This commit is contained in:
Cyberes 2022-09-13 22:47:27 -06:00 committed by GitHub
parent 8820126cdb
commit b805cdd5bf
1 changed files with 22 additions and 14 deletions

View File

@ -2,14 +2,20 @@
[TOC]
### Quick & Easy Torrent Downloading
```bash
apt update
apt install -y aria2
aria2c "<magnet URL here>"
```
### Standard Model
**Torrent**
```bash
apt update
apt install -y aria2
aria2c "magnet:?xt=urn:btih:3A4A612D75ED088EA542ACAC52F9F45987488D1C&tr=udp://tracker.opentrackr.org:1337"
magnet:?xt=urn:btih:3A4A612D75ED088EA542ACAC52F9F45987488D1C&tr=udp://tracker.opentrackr.org:1337
```
@ -18,7 +24,7 @@ aria2c "magnet:?xt=urn:btih:3A4A612D75ED088EA542ACAC52F9F45987488D1C&tr=udp://tr
Voldy provided an alternative download if you don't want to use HuggingFace.
https://drive.google.com/file/d/1wHFgl0ivCmIZv88hVZXkb8oy9qCuaBGA/view
`https://drive.google.com/file/d/1wHFgl0ivCmIZv88hVZXkb8oy9qCuaBGA/view`
HuggingFace is much faster and reliable but you need to get access to the repo and provide your user token.
@ -36,9 +42,7 @@ wget --header="'Authorization: Bearer {user_token}'" https://huggingface.co/Comp
**Torrent**
```bash
apt update
apt install -y aria2
aria2c "magnet:?xt=urn:btih:F45CECF4E9DE86DA83A78DD2CCCD7F27D5557A52&tr=udp://nyquist.localghost.org:6969"
magnet:?xt=urn:btih:F45CECF4E9DE86DA83A78DD2CCCD7F27D5557A52&tr=udp://nyquist.localghost.org:6969
```
@ -48,21 +52,23 @@ aria2c "magnet:?xt=urn:btih:F45CECF4E9DE86DA83A78DD2CCCD7F27D5557A52&tr=udp://ny
Very slow
```bash
wget https://thisanimedoesnotexist.ai/downloads/wd-v1-2-full-ema.ckpt -O wd-v1-2-full-ema.ckpt
https://thisanimedoesnotexist.ai/downloads/wd-v1-2-full-ema.ckpt -O wd-v1-2-full-ema.ckpt
```
**Half-Size Model**
If you're on free tier try this first, it's 3.5GB.
Smaller filesize, slightly different output. If you're on free tier try this first, it's 3.5GB.
```bash
apt update
apt install -y aria2
aria2c "magnet:?xt=urn:btih:153590FD7E93EE11D8DB951451056C362E3A9150&dn=wd-v1-2-full-ema-pruned.ckpt&tr=udp://glotorrents.pw:6969/announce&tr=udp://tracker.opentrackr.org:1337/announce&tr=udp://torrent.gresille.org:80/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://p4p.arenabg.ch:1337&tr=udp://tracker.internetwarriors.net:1337&tr=wss://tracker.openwebtorrent.com"
magnet:?xt=urn:btih:153590FD7E93EE11D8DB951451056C362E3A9150&dn=wd-v1-2-full-ema-pruned.ckpt&tr=udp://glotorrents.pw:6969/announce&tr=udp://tracker.opentrackr.org:1337/announce&tr=udp://torrent.gresille.org:80/announce&tr=udp://tracker.openbittorrent.com:80&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://p4p.arenabg.ch:1337&tr=udp://tracker.internetwarriors.net:1337&tr=wss://tracker.openwebtorrent.com
```
### WD v1.2 and SD v1.4 Merged
```bash
magnet:?xt=urn:btih:UFIV4BI4MGWFLZSKPFQ5VFLNYL24ADUQ&dn=wd1-2_sd1-4_merged.ckpt&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce
```
### trinart_stable_diffusion_v2
@ -76,7 +82,7 @@ The 60000 steps version is the original, the 115000 steps is the 60000 with add
**115000**
```bash
wget https://huggingface.co/naclbit/trinart_stable_diffusion_v2/resolve/main/trinart2_step115000.ckpt -O trinart2_step115000.ckpt
https://huggingface.co/naclbit/trinart_stable_diffusion_v2/resolve/main/trinart2_step115000.ckpt -O trinart2_step115000.ckpt
```
@ -84,5 +90,7 @@ wget https://huggingface.co/naclbit/trinart_stable_diffusion_v2/resolve/main/tri
**60000**
```bash
wget https://huggingface.co/naclbit/trinart_stable_diffusion_v2/resolve/main/trinart2_step60000.ckpt -O trinart2_step60000.ckpt
https://huggingface.co/naclbit/trinart_stable_diffusion_v2/resolve/main/trinart2_step60000.ckpt -O trinart2_step60000.ckpt
```
[Github mirror](https://github.com/Engineer-of-Stuff/stable-diffusion-paperspace/blob/main/Docs/Datasets.md)