上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 72 下一页
摘要: 摘自:Sener, Ozan, et al. "Unsupervised semantic parsing of video collections." Proceedings of the IEEE International Conference on Computer Vision. 2015 阅读全文
posted @ 2020-08-20 14:56 Picassooo 阅读(367) 评论(0) 推荐(0)
摘要: 二分图定义 二分图又称作二部图,是图论中的一种特殊模型。 设G=(V,E)是一个无向图,如果顶点V可分割为两个互不相交的子集(A,B),并且图中的每条边(i,j)所关联的两个顶点i和j分别属于这两个不同的顶点集(i in A,j in B),则称图G为一个二分图。简而言之,就是顶点集V可分割为两个互 阅读全文
posted @ 2020-08-20 10:02 Picassooo 阅读(3097) 评论(0) 推荐(0)
摘要: 个人主页及文章代码 Hongsong Wang, 王洪松 Beyond Joints: Learning Representations from Primitive Geometries for Skeleton-based Action Recognition and Detection, co 阅读全文
posted @ 2020-08-18 22:13 Picassooo 阅读(167) 评论(0) 推荐(0)
摘要: Python计算程序运行时长可用time模块。 例子: import time start = time.time() for i in range(10000000): pass stop = time.time() running_time = stop - start print('runni 阅读全文
posted @ 2020-08-17 23:08 Picassooo 阅读(307) 评论(0) 推荐(0)
摘要: scikit-learn中的KMeans聚类实现( + MiniBatchKMeans) 阅读全文
posted @ 2020-08-17 22:52 Picassooo 阅读(237) 评论(0) 推荐(0)
摘要: np.append()函数用法 阅读全文
posted @ 2020-08-17 22:01 Picassooo 阅读(1222) 评论(0) 推荐(0)
摘要: 本文摘自前两个截图来自python--之np.delete 阅读全文
posted @ 2020-08-17 21:52 Picassooo 阅读(602) 评论(0) 推荐(0)
摘要: 一. 普通全连接神经网络的计算过程 假设用全连接神经网络做MNIST手写数字分类,节点数如下: 第一层是输入层,784个节点; 第二层是隐层,100个节点; 第三层是输出层,10个节点。 对于这个神经网络,我们在脑海里浮现的可能是类似这样的画面: 但实际上,神经网络的计算过程,本质上是输入向量(矩阵 阅读全文
posted @ 2020-08-14 21:13 Picassooo 阅读(10362) 评论(0) 推荐(3)
摘要: 注:本篇博客介绍的方法有点繁琐,建议采用另外一篇博客中介绍的方法:Pycharm远程连接服务器(或者docker) 第一步:配置deployment 点击 tools --> Deployment --> Configuration 弹出如下对话框,点击左上角的 ‘+’,选择SFTP,,在弹出的小对 阅读全文
posted @ 2020-08-14 11:00 Picassooo 阅读(5746) 评论(0) 推荐(1)
摘要: Pytorch之permute函数 阅读全文
posted @ 2020-08-13 19:48 Picassooo 阅读(469) 评论(0) 推荐(0)
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 72 下一页