-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__main__.py
42 lines (27 loc) · 982 Bytes
/
__main__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
ToDos:
- Generator :
-- Read about PReLU (Parameteric ReLU)
- Disriminator:
- Reading about below:
-- Pixel shuffle ? - Done
Basically it rearranges channels to dimensions
(B, C, H, W ) --> C = C x r x --> = (B, C, H x r, W x R)
https://github.com/pytorch/pytorch/pull/6340/files
https://github.com/microsoft/CNTK/issues/2501
https://github.com/pytorch/pytorch/issues/1684
-- math.log and math.log2 #loge euler natural growth -
math.log takes 2 arguments (x, base) default is e
math.log2 is log base 2
-- SSIM Structuram Similarity Index - Done
-- PSNR Peak signal noise ratio- Done
-- AvgMeter
-- Grad Clipping - Not cleared really but will get back to it again.
-- Read about TV Loss i.e. Total Variation Loss.
"""
from Execute import train
def main():
for epoch in range(10):
train.main(epoch)
if __name__ == "__main__":
main()