Initial commit
Browse files- README.md +23 -0
- config.json +1 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
language: en
|
4 |
+
tags:
|
5 |
+
- image-processing
|
6 |
+
- image-denoising
|
7 |
+
- deep-learning
|
8 |
+
license: apache-2.0
|
9 |
+
model_name: Image Denoising Model
|
10 |
+
---
|
11 |
+
|
12 |
+
# Autoencoder Model
|
13 |
+
|
14 |
+
This Repo contains the weights and config of Autoencoder Model that can be used for image denoising.
|
15 |
+
|
16 |
+
# Datasets
|
17 |
+
|
18 |
+
- LOL Dataset
|
19 |
+
- Smartphone Image Denoising Dataset
|
20 |
+
|
21 |
+
# References
|
22 |
+
https://keras.io/examples/vision/autoencoder/
|
23 |
+
|
config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"architecture": "Autoencoder", "input_channels": 3, "output_channels": 3, "layers": [{"type": "Conv2d", "in_channels": 3, "out_channels": 32, "kernel_size": [3, 3], "padding": "same"}, {"type": "ReLU", "inplace": true}, {"type": "MaxPool2d", "kernel_size": [2, 2], "padding": 0}, {"type": "Conv2d", "in_channels": 32, "out_channels": 64, "kernel_size": [3, 3], "padding": "same"}, {"type": "ReLU", "inplace": true}, {"type": "MaxPool2d", "kernel_size": [2, 2], "padding": 0}, {"type": "Conv2d", "in_channels": 64, "out_channels": 128, "kernel_size": [3, 3], "padding": "same"}, {"type": "ReLU", "inplace": true}, {"type": "MaxPool2d", "kernel_size": [2, 2], "padding": 0}, {"type": "ConvTranspose2d", "in_channels": 128, "out_channels": 128, "kernel_size": [3, 3], "stride": 2, "padding": 1, "output_padding": 1}, {"type": "ReLU", "inplace": true}, {"type": "ConvTranspose2d", "in_channels": 128, "out_channels": 64, "kernel_size": [3, 3], "stride": 2, "padding": 1, "output_padding": 1}, {"type": "ReLU", "inplace": true}, {"type": "ConvTranspose2d", "in_channels": 64, "out_channels": 32, "kernel_size": [3, 3], "stride": 2, "padding": 1, "output_padding": 1}, {"type": "ReLU", "inplace": true}, {"type": "Conv2d", "in_channels": 32, "out_channels": 3, "kernel_size": [3, 3], "padding": "same"}, {"type": "Sigmoid"}]}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7953cd1f4bfe4ec467e59e5e0e6b54e0c4a04fd67593541e7aa3870ce6d82913
|
3 |
+
size 1341272
|