amildravid4292
commited on
Commit
•
1706636
1
Parent(s):
b47ccc8
Update README.md
Browse files
README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
---
|
2 |
{}
|
3 |
---
|
4 |
-
This repository contains the dataset of model weights and utility files for [Interpreting the Weight Space of Customized Diffusion Models](https://snap-research.github.io/weights2weights/) (aka *weights2weights*). The code can be found at https://github.com/snap-research/weights2weights.
|
5 |
|
6 |
# Files for creating *weights2weights* Space
|
7 |
-
The `files/` folder contains the files needed
|
8 |
- `files/V.pt`
|
9 |
- 99648x10000 dimensional tensor used to project or unproject LoRA weights onto a principal component representation in *w2w* space or to unproject back into the LoRA space.
|
10 |
- `files/mean.pt`
|
@@ -28,4 +28,11 @@ The `weights_datasets`folder contains two datasets of model weights, one set con
|
|
28 |
- 64974x99648 dimensional tensor where each row is a 99648-dimensional vector of flattened LoRAs for each identity-encoding model.
|
29 |
- `weights_datasets/identities/identity_df.pt`
|
30 |
- A pandas dataframe with binary attribute labels for each identity-encoding model.
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
{}
|
3 |
---
|
4 |
+
This repository contains the dataset of model weights and utility files for [Interpreting the Weight Space of Customized Diffusion Models](https://snap-research.github.io/weights2weights/) (aka *weights2weights*). The code can be found at https://github.com/snap-research/weights2weights. The `files` folder contains files that our code requires. The `weights_datasets` folder contains the datasets of model weights in addition to metadata and supplemental files.
|
5 |
|
6 |
# Files for creating *weights2weights* Space
|
7 |
+
The `files/` folder contains the files needed for our code [here](https://snap-research.github.io/weights2weights/) in order to conduct sampling, inversion, and editing in *weights2weights* space.
|
8 |
- `files/V.pt`
|
9 |
- 99648x10000 dimensional tensor used to project or unproject LoRA weights onto a principal component representation in *w2w* space or to unproject back into the LoRA space.
|
10 |
- `files/mean.pt`
|
|
|
28 |
- 64974x99648 dimensional tensor where each row is a 99648-dimensional vector of flattened LoRAs for each identity-encoding model.
|
29 |
- `weights_datasets/identities/identity_df.pt`
|
30 |
- A pandas dataframe with binary attribute labels for each identity-encoding model.
|
31 |
+
- `weights_datasets/dogs/dog_weights.pt`
|
32 |
+
- 120x99648 dimensional tensor where each row is a 99648-dimensional vector of flattened LoRAs for each dog-encoding model.
|
33 |
+
- `weights_datasets/dogs/dog_labels.pt`
|
34 |
+
- A list of the dog breeds corresponding to each entry in `dog_weights.pt`.
|
35 |
+
- `weights_datasets/weight_dimensions.pt`
|
36 |
+
- A dictionary of the dimensionality for each LoRA module in the diffusion UNet. Used to save models in Diffusers pipeline format.
|
37 |
+
- `weights_datasets/adapter_config.json`
|
38 |
+
- A configuration file for LoRA. Used to save models in Diffusers pipeline format.
|