File size: 529 Bytes
9894238
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# QuickDraw Diffusion Web App

Run the local web UI from the repository root:

```bash
uvicorn quickdraw_app.server:app --host 127.0.0.1 --port 7860
```

By default it loads:

```text
models/diffusion/checkpoint_step_500000.pt
```

To use another checkpoint:

```bash
QUICKDRAW_CHECKPOINT=/absolute/path/to/checkpoint.pt uvicorn quickdraw_app.server:app --host 127.0.0.1 --port 7860
```

The recognition button uses the bundled 100-class 64x64 residual CNN:

```text
quickdraw_app/models/cnn_residual_100cls_64/best_model.pt
```