tensorlayer / TensorLayer

Deep Learning and Reinforcement Learning Library for Scientists and Engineers
http://tensorlayerx.com
Other
7.33k stars 1.61k forks source link

resnet example #63

Closed xjtuljy closed 7 years ago

xjtuljy commented 7 years ago

Thank you for providing such a powerful but user-friendly wrapper. Is there any example for resnet in which the network cannot be constructed by simply stacking layer by layer, by using tl.layer?

zsdonghao commented 7 years ago

@xjtuljy You can connect TF-Slim into TensorLayer, as TF-Slim have pre-trained resnet, inception , vgg models .. see tutorial_inceptionV3_tfslim.py in example folder.

Besides, here is a resnet example implemented by @ritchieng

xjtuljy commented 7 years ago

Thanks! @ritchieng 's code is quite helpful!