https://github.com/eljandoubi/stablediffusion
Coding StableDiffusion from scratch using pytorch.
https://github.com/eljandoubi/stablediffusion
attention-mechanism pytorch-implementation stable-diffusion
Last synced: 8 months ago
JSON representation
Coding StableDiffusion from scratch using pytorch.
- Host: GitHub
- URL: https://github.com/eljandoubi/stablediffusion
- Owner: eljandoubi
- License: apache-2.0
- Created: 2024-08-24T10:54:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-26T20:18:13.000Z (about 1 year ago)
- Last Synced: 2025-01-24T22:35:22.936Z (9 months ago)
- Topics: attention-mechanism, pytorch-implementation, stable-diffusion
- Language: Python
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Coding Stable Diffusion from scratch using pytorch.
## Setup environment
* Clone the repository and Go to StableDiffusion directory.
```bash
git clone https://github.com/eljandoubi/StableDiffusion.git && cd StableDiffusion
```
* Build environment.
```bash
make build
```
## Check the code sanity
```bash
make check
```
## Run the pipeline
```bash
make run
```
## Clean environment
```bash
make clean
```