Create initial commit
Browse files- .gitattributes +1 -0
- README.md +29 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
weights/ filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,32 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
This repository stores the pre-trained weights for [Readout Guidance: Learning Control
|
6 |
+
from Diffusion Features](https://readout-guidance.github.io/). The code implementation of our method can be found at https://github.com/g-luo/readout-guidance.
|
7 |
+
|
8 |
+
# Readout Head Weights
|
9 |
+
The `weights/` folder contains the pre-trained weights of the readout heads, named according to the following convention:
|
10 |
+
```
|
11 |
+
readout_<base-model>_<task-type>_<head-type>
|
12 |
+
```
|
13 |
+
|
14 |
+
**Spatially Aligned Control**
|
15 |
+
- `readout_sdxl_spatial_pose.pt`
|
16 |
+
- `readout_sdv15_spatial_pose.pt`
|
17 |
+
- Readout head trained with [OpenPose](https://arxiv.org/abs/1812.08008) pose skeletons as supervision on [PascalVOC](http://host.robots.ox.ac.uk/pascal/VOC) images, filtered only to those containing people.
|
18 |
+
- `readout_sdxl_spatial_depth.pt`
|
19 |
+
- `readout_sdv15_spatial_depth.pt`
|
20 |
+
- Readout head trained with [MiDaS](https://arxiv.org/abs/1907.01341) depth maps as supervision on [PascalVOC](http://host.robots.ox.ac.uk/pascal/VOC) images.
|
21 |
+
- `readout_sdxl_spatial_edge.pt`
|
22 |
+
- `readout_sdv15_spatial_edge.pt`
|
23 |
+
- Readout head trained with [HED](https://arxiv.org/abs/1504.06375) edge detections as supervision on [PascalVOC](http://host.robots.ox.ac.uk/pascal/VOC) images.
|
24 |
+
|
25 |
+
|
26 |
+
**Drag-Based Manipulation**
|
27 |
+
- `readout_sdxl_drag_correspondence.pt`
|
28 |
+
- `readout_sdv15_drag_correspondence.pt`
|
29 |
+
- Readout head trained with a contrastive loss with [CoTracker](https://co-tracker.github.io) point tracks across pairs of [DAVIS](https://davischallenge.org) video frames.
|
30 |
+
- `readout_sdxl_drag_appearance.pt`
|
31 |
+
- `readout_sdv15_drag_appearance.pt`
|
32 |
+
- Readout head trained with a triplet loss with real frames as positives and [SDEdit-ed](https://sde-image-editing.github.io) frames as negatives derived from [DAVIS](https://davischallenge.org) videos.
|