Traceback (most recent call last): File "demo.py", line 11, in <module> from model import Model File "/home/anbanglee/SC-FEGAN-master/model.py", line 4, in <module> from ops import * File "/home/anbanglee/SC-FEGAN-master/ops.py", line 9 """ ^ SyntaxError: invalid syntax
jackylee1 opened this issue · 2 comments
jackylee1 commented
Traceback (most recent call last):
File "demo.py", line 11, in
from model import Model
File "/home/anbanglee/SC-FEGAN-master/model.py", line 4, in
from ops import *
File "/home/anbanglee/SC-FEGAN-master/ops.py", line 9
"""
^
SyntaxError: invalid syntax
?
what's wrong ?i use python3
Daleksek commented
I have the same issue
mostafasadeghi97 commented
just delete the three comment lines
like this :
@add_arg_scope
def gate_conv(x_in, cnum, ksize, stride=1, rate=1, name='conv',
padding='SAME', activation='leaky_relu', use_lrn=True,training=True):
assert padding in ['SYMMETRIC', 'SAME', 'REFELECT']