-
这个tensorlayer那个源码里的那个kernel size和这个版本的好像不一样,原文的判别器里的是4*4,这里是5*5,原文的unet里padding是‘same’,这里是1,这个会有影响吗?
-
Thank you for your code sharing, would like to ask what is your code running environment, such as Tensorflow and Tensorlayer version, thanks again
-
Hi all, I have an error like this:
Traceback (most recent call last):
File "V:\Python 3.6.8\lib\site-packages\numpy\lib\npyio.py", line 447, in load
return pickle.load(fid, **pickle_kwargs…
-
Key resnet_v1_50/block1/unit_1/bottleneck_v1/shortcut_bn/BatchNorm/beta not found in checkpoint
tensorflow == 1.6.0
tensorlayer== 1.7.0
-
Please join Slack, the invite link as follow:
https://join.slack.com/t/tensorlayer/shared_invite/MjExMjMzODAwNjI0LTE0OTk4ODEzMjUtNmVjNjQ4ZjMzMw
-
Hello!
After training on DIV2K dataset I run
> python3 train.py --mode evaluate
command, but got the following error:
>2019-11-29 20:23:43.754143: I tensorflow/core/platform/cpu_feature_guard…
-
net = get_resnet(images,.....)
net = BatchNormLayer()
Layer.__init__(self, name=name)
tensorlayer/decorators/deprecated_alias.py,line24,in wrapper
return f(*args, **kwargs)
TypeError:__init__() …
-
d_loss_real = tf.reduce_mean(tf.abs(discriminator_real_output - img))
d_loss_fake = tf.reduce_mean(tf.abs(discriminator_real_output - decoder_output))
d_loss_op = d_loss_real - kt * d_loss_fake
kt_…
-
CornerNet is a recently proposed neural network for object detection.
http://openaccess.thecvf.com/content_ECCV_2018/html/Hei_Law_CornerNet_Detecting_Objects_ECCV_2018_paper.html
The idea of Cor…
-
__init__() missing 1 required positional argument: 'prev_layer'