Commit ·
9dc7d71
1
Parent(s): 73711bc
Update model card
Browse files
README.md
CHANGED
|
@@ -1,21 +1,32 @@
|
|
| 1 |
---
|
| 2 |
library_name: diffusers
|
|
|
|
| 3 |
tags:
|
| 4 |
- dit4sr
|
| 5 |
- super-resolution
|
| 6 |
- diffusion-transformer
|
| 7 |
base_model: stabilityai/stable-diffusion-3.5-medium
|
| 8 |
---
|
| 9 |
-
#
|
| 10 |
|
| 11 |
-
This repository contains the
|
| 12 |
|
| 13 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
- `transformer/` contains the publishable model weights and config.
|
| 16 |
- `source_checkpoint.json` records the local source path and checkpoint name used for the upload.
|
| 17 |
|
| 18 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
```python
|
| 21 |
from model_dit4sr.transformer_sd3 import SD3Transformer2DModel
|
|
@@ -23,4 +34,10 @@ from model_dit4sr.transformer_sd3 import SD3Transformer2DModel
|
|
| 23 |
model = SD3Transformer2DModel.from_pretrained("NisargUpadhyay/ImageSuperResolution-replication", subfolder="transformer")
|
| 24 |
```
|
| 25 |
|
| 26 |
-
You still need the rest of the DiT4SR codebase and the base SD3 assets described in
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
library_name: diffusers
|
| 3 |
+
pipeline_tag: image-to-image
|
| 4 |
tags:
|
| 5 |
- dit4sr
|
| 6 |
- super-resolution
|
| 7 |
- diffusion-transformer
|
| 8 |
base_model: stabilityai/stable-diffusion-3.5-medium
|
| 9 |
---
|
| 10 |
+
# DiT4SR Replication
|
| 11 |
|
| 12 |
+
This repository contains the DiT4SR transformer weights exported from the local `dit4sr-replication` experiment at `checkpoint-150000`.
|
| 13 |
|
| 14 |
+
## What This Repo Contains
|
| 15 |
+
|
| 16 |
+
This Hugging Face repo publishes only the `transformer/` checkpoint used by `SD3Transformer2DModel`. It does not include the full Stable Diffusion 3.5 base model, tokenizers, schedulers, or the rest of the DiT4SR inference stack.
|
| 17 |
+
|
| 18 |
+
## Files
|
| 19 |
|
| 20 |
- `transformer/` contains the publishable model weights and config.
|
| 21 |
- `source_checkpoint.json` records the local source path and checkpoint name used for the upload.
|
| 22 |
|
| 23 |
+
## Checkpoint Metadata
|
| 24 |
+
|
| 25 |
+
- Experiment: `dit4sr-replication`
|
| 26 |
+
- Source checkpoint: `checkpoint-150000`
|
| 27 |
+
- Published artifact: transformer weights only
|
| 28 |
+
|
| 29 |
+
## Loading In DiT4SR
|
| 30 |
|
| 31 |
```python
|
| 32 |
from model_dit4sr.transformer_sd3 import SD3Transformer2DModel
|
|
|
|
| 34 |
model = SD3Transformer2DModel.from_pretrained("NisargUpadhyay/ImageSuperResolution-replication", subfolder="transformer")
|
| 35 |
```
|
| 36 |
|
| 37 |
+
You still need the rest of the DiT4SR codebase and the base SD3 assets described in the project README.
|
| 38 |
+
|
| 39 |
+
## Related Resources
|
| 40 |
+
|
| 41 |
+
- Project repo: `NisargUpadhyayIITJ/Deep-Learning-Course-Project`
|
| 42 |
+
- Training/evaluation dataset repo: `NisargUpadhyay/ImageSuperResolution`
|
| 43 |
+
- Matching training subset in the dataset repo: `Replication/`
|