Python
abclhq2005
这个作者很懒,什么都没留下…
展开
-
python装饰器--@property
@property考察 Student 类:class Student(object): def __init__(self, name, score): self.name = name self.score = score当我们想要修改一个 Student 的 scroe 属性时,可以这么写:s = Student('Bob', 59)s.score转载 2017-11-30 09:12:13 · 179 阅读 · 0 评论 -
tensorflow教程:LSTMCell和BasicLSTMCell
LSTMCell和BasicLSTMCell区别详解原创 2017-12-01 09:52:50 · 10874 阅读 · 0 评论 -
Python中zip()函数用法实例教程
转载 http://www.jb51.net/article/53051.htm 本文实例讲述了Python中zip()函数的定义及用法,相信对于Python初学者有一定的借鉴价值。原创 2017-12-01 12:38:51 · 6186 阅读 · 0 评论 -
tensorflow使用range_input_producer多线程读取数据
转载:http://blog.csdn.net/lyg5623/article/details/69387917转载 2017-12-07 19:13:46 · 350 阅读 · 0 评论