原创 【caffe】caffe之編譯錯誤

以下錯誤均爲編譯caffe過程中常見的錯誤 fatal error: caffe/proto/caffe.pb.h: No such file or directory完美解決辦法 protoc src/caffe/proto

原创 【Person Re-ID】SVDNet for Pedestrian Retrieval

paper下載地址:https://arxiv.org/abs/1703.05693 code下載地址:https://github.com/syfafterzy/SVDNet-for-Pedestrian-Retrieval

原创 【Person Re-ID】常用評測指標

言 最近在研究person re-id相關的算法,在不少論文中遇到相關的評測指標,例如mAP、CMC、ROC等,這裏做一下總結。 ROC ROC曲線是檢測、分類、識別任務中很常用的一項評價指標。曲線上每個點反映着對同一信號刺激的感

原创 【Person Re-ID】Large-scale Person Re-identification as Retrieval

paper下載地址:http://www.yaohantao.com/cv/paper_671.pdf code下載地址:https://github.com/coldrainyht/ICME2017 Introduction 如

原创 【caffe】caffe層解讀系列——slice和concat實現MultiTask

轉載地址:http://blog.csdn.net/shuzfan/article/details/54565776 最近一段時間MultiTask網絡比較流行,比如做人臉檢測的時候,一個網絡完成(人臉和非人臉)二分類任務的

原创 【caffe】caffe之SGD solver

理論介紹 上式中,L(w) 爲前向loss,N爲一個mini-batch的batchsize,fw(x(i)) 是單個輸入數據x(i) 的輸出loss,λ 是正則項的權重,在caffe中是weight_decay,r(w) 是一

原创 【Person Re-ID】Deep Representation Learning with Part Loss for Person Re-Identification

paper下載地址:https://arxiv.org/abs/1707.00798 Introduction Person Re-ID需要解決什麼問題? 測試集中的人在訓練集中是不可見的,因此需要學習到的描述子有足夠的可分性。

原创 【CUDA C】Programming Interface

CUDA C Runtime The runtime is implemented in the cudart library, which is linked to the application, either statica

原创 【caffe】理解 LSTM 網絡

Recurrent Neural Networks 人類並不是每時每刻都從一片空白的大腦開始他們的思考。在你閱讀這篇文章時候,你都是基於自己已經擁有的對先前所見詞的理解來推斷當前詞的真實含義。我們不會將所有的東西都全部丟棄,然後用

原创 Android NDK + adb調試

Android.mk 每個模塊前必須加上include $(CLEAR_VARS),比如 include $(CLEAR_VARS) LOCAL_MODULE:=libcwauthorize_android LOCAL_S

原创 【PyTorch】PyTorch入門教程一

Tensors PyTorch中的Tensor跟numpy有些類似,唯一的不同是Tensor可以用GPU來加速。 from __future__ import print_function import torch #構造一個5x

原创 【Person Re-ID】Person Re-identification: Past, Present and Future

paper下載地址:https://arxiv.org/abs/1610.02984 code下載地址:https://github.com/zhunzhong07/IDE-baseline-Market-1501 本文主要介

原创 【CUDA C】Programming Model

Kernels CUDA C extends C by allowing the programmer to define C functions, called kernels, that, when called, are e

原创 【PyTorch】PyTorch安裝指南

PyTorch官網:http://pytorch.org/ 由於官網各種點擊按鈕沒有反應,只能下載安裝。 下載PyTorch 選擇舊版本安裝 找到所需版本,如上圖所示,下載cu80/torch-0.2.0.post3-cp

原创 【Person Re-ID】In Defense of the Triplet Loss for Person Re-Identification

paper下載地址:https://arxiv.org/abs/1703.07737 code下載地址:https://github.com/VisualComputingInstitute/triplet-reid Introd