Added more explanation
Browse files
README.md
CHANGED
|
@@ -1,4 +1,22 @@
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
A Diffusion Model for Generating
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
metrics:
|
| 6 |
+
- mse
|
| 7 |
+
pipeline_tag: unconditional-image-generation
|
| 8 |
+
tags:
|
| 9 |
+
- diffusion
|
| 10 |
+
- image generation
|
| 11 |
+
- unconditional
|
| 12 |
+
- wsi
|
| 13 |
---
|
| 14 |
+
A Diffusion Model for Generating WSI patches
|
| 15 |
+
|
| 16 |
+
How to use the model?
|
| 17 |
+
|
| 18 |
+
```py
|
| 19 |
+
from diffusers import DiffusionPipeline
|
| 20 |
+
|
| 21 |
+
pipeline = DiffusionPipeline.from_pretrained("kaveh/wsi_generator")
|
| 22 |
+
```
|