1. Neuroaesthetics in fashion: modeling the perception of fashionability, Edgar Simo-Serra, Sanja Fidler, Francesc Moreno-Noguer, Raquel Urtasun, in C Read More
DeepFashion: Powering Robust Clothes Recognition and Retrieval with Rich Annotations, Ziwei Liu, Ping Luo, Shi Qiu, Xiaogang Wang, Xiaoou Tang, in CVP Read More
1. Sketch me that shoe, Qian Yu, Feng Liu, Yi-Zhe Song, Tao Xiang, Timothy M. Hospedales, Cheng Change Loy, in CVPR 2016. A unique characteristic of s Read More
本篇文章调研一些感兴趣的AAAI 2016 papers。科研要多读paper!!! Learning to Generate Posters of Scientific Papers,Yuting Qiang, Yanwei Fu, Yanwen Guo, Zhi-Hua Zhou and Le Read More
windows对openGL的支持直到1.1,而如今openGL版本已经更新到4.5,为了使用高版本的API,需要安装拓展库(glew)。 openGL只是个渲染系统,但是它不能产生窗口,需要依赖其它窗口服务,这里普遍用glut。 为了使用OpenGL,必须采用三个库及相关文件。 OpenGL核心库 Read More
openGL支持很多语言,C#, Java, Python, 和Lua。如果你没有使用C/C++,你必须下载和安装一个openGL包或库。 如果你使用了C/C++,你必须先建立一个编译环境,visual studio,gnu makefile,cmake file等等链接openGL。 window Read More
layer是建模和计算的基本单元。 caffe的目录包含各种state-of-the-art model的layers。 为了创建一个caffe model,我们需要定义模型架构在一个protocol buffer定义文件中(prototxt)。caffe的layer和它们的参数被定义在caffe. Read More
参考 http://caffe.berkeleyvision.org/tutorial/ 表达:models和optimizations使用纯文本文档形式定义,不是用代码定义; 速度:适用于工业和科研中的模型和大数据 模块性:新任务和设置可以灵活扩展 开源、社区 开始学习! Blobs, Layer Read More
问题: 将一个n元一维向量向左旋转i个位置。例如,当n=8且i=3时,向量abcdefgh旋转为defghabc。 简单的代码使用一个n元的中间向量在n步内完成该工作。 你能否仅使用数十个额外字节的存储空间,在正比于n的时间内完成向量的旋转? 解法: Read More
参考http://blog.csdn.net/happynear/article/details/45440709 1. 安装pydot: 2. 安装Graphviz: 3.调用并显示 显示结果 Read More