yuulind commited on
Commit
8eb814b
·
verified ·
1 Parent(s): 4c33910

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -8
README.md CHANGED
@@ -12,8 +12,8 @@ tags:
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
- Includes checkpoints from epoch: 60, 180, 330
17
 
18
  ## Model Details
19
 
@@ -27,15 +27,17 @@ The official lua implementaion: [GitHub Repo](https://github.com/phillipi/pix2pi
27
  The official PyTorch implementation [GitHub Repo](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix)
28
 
29
  - **Model type:** Image to Image Translation
 
 
30
 
31
  | Number | Name | Model Type | Description | Link to Model File |
32
  |--------|-------------------------|---------------|---------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
33
- | 1 | pix2pix_gen_60.pth | Generator | Pix2Pix generator with transpose convolution, 60 epochs. | [pix2pix_gen_60.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_gen_60.pth) |
34
- | 2 | pix2pix_gen_180.pth | Generator | Pix2Pix generator with transpose convolution, 180 epochs. | [pix2pix_gen_180.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_gen_180.pth) |
35
- | 3 | pix2pix_gen_330.pth | Generator | Pix2Pix generator with transpose convolution, 330 epochs. | [pix2pix_gen_330.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_gen_330.pth) |
36
- | 4 | pix2pix_disc_60.pth | Discriminator | Pix2Pix discriminator from epoch 60, with transpose convolution generator. | [pix2pix_disc_60.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_disc_60.pth) |
37
- | 5 | pix2pix_disc_180.pth | Discriminator | Pix2Pix discriminator from epoch 180, with transpose convolution generator. | [pix2pix_disc_180.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_disc_180.pth) |
38
- | 6 | pix2pix_disc_330.pth | Discriminator | Pix2Pix discriminator from epoch 330, with transpose convolution generator. | [pix2pix_disc_330.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_disc_330.pth) |
39
 
40
 
41
  <!--
 
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
+ The demo: [yuulind/sar2rgb](https://huggingface.co/spaces/yuulind/sar2rgb)
16
+ Includes checkpoints from epoch: 180, 265, 295
17
 
18
  ## Model Details
19
 
 
27
  The official PyTorch implementation [GitHub Repo](https://github.com/junyanz/pytorch-CycleGAN-and-pix2pix)
28
 
29
  - **Model type:** Image to Image Translation
30
+ - **BASELINE FID SCORE** is between **30 and 40**
31
+ - Baseline score is calculated by randomly sampling two sets from real images and comparing the them.
32
 
33
  | Number | Name | Model Type | Description | Link to Model File |
34
  |--------|-------------------------|---------------|---------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------|
35
+ | 1 | pix2pix_gen_180.pth | Generator | Pix2Pix generator with transpose convolution, 180 epochs. FID score is 185.04 | [pix2pix_gen_180.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_gen_180.pth) |
36
+ | 2 | pix2pix_gen_265.pth | Generator | Pix2Pix generator with transpose convolution, 265 epochs. FID score is 189.81 | [pix2pix_gen_265.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_gen_265.pth) |
37
+ | 3 | pix2pix_gen_295.pth | Generator | Pix2Pix generator with transpose convolution, 295 epochs. FID score is 187.73 | [pix2pix_gen_295.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_gen_295.pth) |
38
+ | 4 | pix2pix_disc_180.pth | Discriminator | Pix2Pix discriminator from epoch 180, with transpose convolution generator. | [pix2pix_disc_180.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_disc_180.pth) |
39
+ | 5 | pix2pix_disc_265.pth | Discriminator | Pix2Pix discriminator from epoch 265, with transpose convolution generator. | [pix2pix_disc_265.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_disc_265.pth) |
40
+ | 6 | pix2pix_disc_295.pth | Discriminator | Pix2Pix discriminator from epoch 295, with transpose convolution generator. | [pix2pix_disc_295.pth](https://huggingface.co/yuulind/pix2pix-sar2rgb/resolve/main/pix2pix_disc_295.pth) |
41
 
42
 
43
  <!--