Skip to content

Commit

Permalink
style refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
gisilvs committed Jul 16, 2020
1 parent 8bd461b commit ddbbd74
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 127 deletions.
106 changes: 0 additions & 106 deletions data_proc.py

This file was deleted.

1 change: 1 addition & 0 deletions dncnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from tensorflow.keras.initializers import he_uniform
from tensorflow.keras.layers import Conv2D, BatchNormalization, ReLU


class DnCNN(Model):
def __init__(self, depth=17):
super(DnCNN, self).__init__()
Expand Down
3 changes: 2 additions & 1 deletion dncnnrn.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from tensorflow.keras.initializers import he_uniform
from tensorflow.keras.layers import Conv2D, BatchNormalization, ReLU


class DnCNNRN(Model):
def __init__(self, depth=8):
super(DnCNNRN, self).__init__()
Expand Down Expand Up @@ -54,4 +55,4 @@ def call(self, x):

out = self.relu(out)

return out
return out
20 changes: 0 additions & 20 deletions img_crop.py

This file was deleted.

0 comments on commit ddbbd74

Please sign in to comment.