上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 74 下一页
摘要: 子空间学习方法概述 子空间学习就是基于某一特定的准则,将数据从原始的高维特征空间变换到低维的、有意义的子空间的过程,其目的是为了抓住数据的内在结构,进而作进一步地分析。 无监督子空间学习方法 利用数据的局部关系来保持数据内在的流形结构,代表性的方法有: 局部线性嵌入 (Locally linear 阅读全文
posted @ 2020-05-15 09:20 Picassooo 阅读(1466) 评论(0) 推荐(0)
摘要: Caltech 101 图像数据库 Caltech 101 图像数据库包含有 101 个类,每类包含有 31-800 幅图像,共 9144 幅图像,这些图像包括动物、车轮、鲜花等等,且来自于同一类的图像具有非常大的形状变化。 BBCSport Consists of 737 documents fr 阅读全文
posted @ 2020-05-14 17:22 Picassooo 阅读(5879) 评论(0) 推荐(1)
摘要: 1 查看CPU使用情况: top 红框中显示总的CPU占用率为0,绿框中显示的是每个进程的CPU占用率等,各项指标含义如下图。如果一个进程的CPU占用率超过100%,则意味着这个进程使用了不止一个核。 2 查看内存使用情况:free -m 参数解释: total:内存总量 used:已使用内存 fr 阅读全文
posted @ 2020-05-14 10:27 Picassooo 阅读(1350) 评论(0) 推荐(0)
摘要: 打开terminal,输入 ssh -p 端口 用户名@服务器IP地址 例如: ssh -p 22 ZhangSan@11.121.241.182 例子中端口号为22,用户名为ZhangSan,服务器IP地址11.121.241.182。 如果端口默认,那就不用输入-p 端口 输完命令之后按下ent 阅读全文
posted @ 2020-05-13 11:43 Picassooo 阅读(4440) 评论(0) 推荐(0)
摘要: motivation Existing works usually reconstruct the data points on the original view directly, and generate the individual subspace representation for e 阅读全文
posted @ 2020-05-12 17:40 Picassooo 阅读(515) 评论(0) 推荐(0)
摘要: motivation High-order statistics that can only be captured by simultaneously utilizing all views are often overlooked. This paper proposed a novel mul 阅读全文
posted @ 2020-05-11 23:52 Picassooo 阅读(570) 评论(0) 推荐(0)
摘要: *args 当函数参数数目不确定时,‘*’将一组位置参数打包成一个参数值容器。 def demo(a, *args): print('a:', a) print('args:', args) print('type of args:', type(args)) print('length of ar 阅读全文
posted @ 2020-05-11 13:43 Picassooo 阅读(206) 评论(0) 推荐(0)
摘要: argparse包的一个作用是我们可以通过命令行来更改程序中的参数,就是说可以在不修改程序的情况下更改一些需要调整的参数。下面举一个例子。 实例 假设我们写了一个求圆柱体体积的程序: import math def cylinder_volume(redius, height): vol = mat 阅读全文
posted @ 2020-05-10 21:24 Picassooo 阅读(534) 评论(0) 推荐(0)
摘要: 爱因斯坦求和约定,Kronecker-delta符号 阅读全文
posted @ 2020-05-10 12:50 Picassooo 阅读(607) 评论(0) 推荐(0)
摘要: 在PyTorch自定义数据集中,我们介绍了如何通过重写Dataset类来自定义数据集,但其实对于图像数据,自定义数据集有一个更简单的方法,那就是直接调用ImageFolder,它是torchvision.datasets里的函数。 ImageFolder介绍 ImageFolder假设所有的文件按文 阅读全文
posted @ 2020-05-09 11:04 Picassooo 阅读(4137) 评论(0) 推荐(0)
上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 74 下一页