Set up README structure
Browse files
README.md
CHANGED
@@ -1,3 +1,63 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
library_name: pytorch
|
4 |
+
pipeline_tag: image-to-image
|
5 |
+
datasets:
|
6 |
+
- ylecun/mnist
|
7 |
+
language:
|
8 |
+
- en
|
9 |
+
---
|
10 |
+
|
11 |
+
# DenseUNet
|
12 |
+
|
13 |
+
An image-to-image model for upscaling blurry MNIST-like images.
|
14 |
+
|
15 |
+
## Table of contents
|
16 |
+
- [Model Summary](#model-summary)
|
17 |
+
- [Use Cases & Limitations](#use-cases--limitations)
|
18 |
+
- [How to Use](#how-to-use)
|
19 |
+
- [Model Details](#model-details)
|
20 |
+
- [Training Procedure](#training-procedure)
|
21 |
+
- [Evaluation](#evaluation)
|
22 |
+
- [Ethical Considerations & Limitations](#ethical-considerations--limitations)
|
23 |
+
- [Caveats and Recommendations](#caveats-and-recommendations)
|
24 |
+
- [Citation](#citation)
|
25 |
+
- [License](#license)
|
26 |
+
- [Contact](#contact)
|
27 |
+
|
28 |
+
---
|
29 |
+
|
30 |
+
## Model Summary
|
31 |
+
- **Task:** Image to image (upscaling)
|
32 |
+
- **Architecture:** UNet with Dense layers
|
33 |
+
- **Inputs:** MNIST image
|
34 |
+
- **Outputs:** Upscaled images of numbers
|
35 |
+
- **Intended Users:** Students learning image-to-image tasks
|
36 |
+
|
37 |
+
## Use Cases & Limitations
|
38 |
+
### Intended uses
|
39 |
+
- learning image-to-image model behavior
|
40 |
+
|
41 |
+
### Out-of-scope uses / limitations
|
42 |
+
- Not for production or deployment
|
43 |
+
|
44 |
+
## How to Use
|
45 |
+
```python
|
46 |
+
# ToDo
|
47 |
+
```
|
48 |
+
|
49 |
+
## Model Details
|
50 |
+
|
51 |
+
## Training Procedure
|
52 |
+
|
53 |
+
## Evaluation
|
54 |
+
|
55 |
+
## Ethical Considerations & Limitations
|
56 |
+
|
57 |
+
## Caveats and Recommendations
|
58 |
+
|
59 |
+
## Citation
|
60 |
+
|
61 |
+
## License
|
62 |
+
|
63 |
+
## Contact
|