Also see the original Pieter Noordhuis's guide
You need:
- Raspberry Pi Model B (or B+) with a MicroSD Card $35-40
- An RTL-SDR dongle:
| * g o a t s e x * g o a t s e x * g o a t s e x * | |
| g g | |
| o / \ \ / \ o | |
| a| | \ | | a | |
| t| `. | | : t | |
| s` | | \| | s | |
| e \ | / / \\\ --__ \\ : e | |
| x \ \/ _--~~ ~--__| \ | x | |
| * \ \_-~ ~-_\ | * | |
| g \_ \ _.--------.______\| | g |
| # Script for converting a HF Diffusers saved pipeline to a Stable Diffusion checkpoint. | |
| # *Only* converts the UNet, VAE, and Text Encoder. | |
| # Does not convert optimizer state or any other thing. | |
| # Written by jachiam | |
| import argparse | |
| import os.path as osp | |
| import torch |
Also see the original Pieter Noordhuis's guide
You need: