健忘海燕

文章
7
资源
0
加入时间
3年0月8天

【小白入门tensorflow】tensor的shape

获取一个tensor类型变量的shapeimport tensorflow as tfimport numpya=tf.random.normal([4,28,28,3])print(type(a))print(a.shape)print(a[1].shape)print(a[1,2].shape)print(a[1,2,3].shape)print(a[1,2,1,1].shape)之前报错是因为我把shape写成了shape(),感觉在入门深度学习的路上又像我当初入门C语言的时候,

HDU - 一个人的旅行(最短路)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2066Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Problem Description虽然草儿是个路痴(就是在杭电待了一年多,居然还会在校园里迷路的人,汗~),但是草儿仍然很喜欢...

多线程设计模式-多线程读写锁分离模式

多线程读写锁分离模式定义共享数据缓存区buffer,有线程往缓存区写数据,有线程从缓存区读取数据,读写锁分离读写锁:为了更高效的读写数据,将锁分为两种,读数据是读锁,可以并行化多线程执行,写数据是写锁,只能串行化。READWriteREADNYWriteYY读写锁ReadWriteLock/** * @ClassName:ReadWriteLock * @Author:linianest * @CreateTime:2020/3/24 11:06 *