Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
pipeline_tag: image-to-image
|
4 |
+
library_name: pytorch
|
5 |
+
tags:
|
6 |
+
- Pix2Pix
|
7 |
+
---
|
8 |
+
|
9 |
+
# Pix2Pix SAR To RGB
|
10 |
+
|
11 |
+
`yuulind/pix2pix-sar2rgb`
|
12 |
+
|
13 |
+
This is a Pix2Pix CGAN implementation for translating Synthetic Aperture Radar (SAR) images to Optical (RGB) images.
|
14 |
+
For more information on code, please check [GitHub Repo](https://github.com/yuuIind/SAR2Optical)
|
15 |
+
|
16 |
+
## Model Details
|
17 |
+
|
18 |
+
### Model Description
|
19 |
+
|
20 |
+
<!-- Provide a longer summary of what this model is. -->
|
21 |
+
|
22 |
+
This is custom implementation of pix2pix architecture in PyTorch. The code can found in [GitHub Repo](https://github.com/yuuIind/SAR2Optical)
|
23 |
+
|
24 |
+
The official lua implementaion: [GitHub Repo](https://github.com/phillipi/pix2pix)
|
25 |
+
The official PyTorch implementation [GitHub Repo](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix)
|
26 |
+
|
27 |
+
- **Model type:** Image to Image Translation
|
28 |
+
|
29 |
+
### Model Sources
|
30 |
+
|
31 |
+
<!-- Provide the basic links for the model. -->
|
32 |
+
|
33 |
+
- **Repository:** [GitHub Repo](https://github.com/yuuIind/SAR2Optical)
|
34 |
+
- **Paper:** [arxiv:1611.07004](https://arxiv.org/abs/1611.07004)
|
35 |
+
- **Official implementation:** [GitHub Repo](https://github.com/phillipi/pix2pix)
|
36 |
+
|
37 |
+
## Uses
|
38 |
+
|
39 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
40 |
+
|
41 |
+
Converts SAR images to Optical (RGB) images
|