vaibhavprajapati22
commited on
Commit
•
7174948
1
Parent(s):
8f3b18a
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 |
+
# RIDNet Model
|
13 |
+
|
14 |
+
This Repo contains the weights and config of RIDNet 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://arxiv.org/pdf/1904.07396v2.pdf
|
23 |
+
|
config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"architecture": "RIDNet", "input_channels": 3, "output_channels": 3, "num_features": 64, "layers": [{"type": "Conv2d", "in_channels": 3, "out_channels": 64, "kernel_size": [3, 3], "stride": 1, "padding": 1}, {"type": "ReLU", "inplace": false}, {"type": "EAM", "in_channels": 64, "out_channels": 64}, {"type": "EAM", "in_channels": 64, "out_channels": 64}, {"type": "EAM", "in_channels": 64, "out_channels": 64}, {"type": "EAM", "in_channels": 64, "out_channels": 64}, {"type": "Conv2d", "in_channels": 64, "out_channels": 3, "kernel_size": [3, 3], "stride": 1, "padding": 1, "dilation": 1}], "skip_connections": [{"type": "long", "from": "input", "to": "eam1"}, {"type": "long", "from": "input", "to": "output"}], "initialization": {"Conv2d": "xavier_uniform", "BatchNorm2d": {"weight": 1, "bias": 0}}}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e8ea1661552008bc69a7ceb72d9f339f1af454b91bb3ed7e06b7454b47712d23
|
3 |
+
size 23973082
|