原创 查看cuda 和 cudnn 版本

cuda: cat /usr/local/cuda/version.txt   cudnn: cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2

原创 空間變換網絡STN

轉載:https://blog.csdn.net/qq_14845119/article/details/79510714 出自論文Spatial Transformer Networks   Insight: 文章提出的STN的作用類似

原创 Python中下劃線的5種含義

轉載自:鏈接:https://zhuanlan.zhihu.com/p/36173202 來源:知乎 著作權歸作者所有。商業轉載請聯繫作者獲得授權,非商業轉載請註明出處。 分享一篇文章:The Meaning of Underscores

原创 流行學習,比較好的一篇博客

轉載自:https://blog.csdn.net/sinat_32043495/article/details/78997758 嵌入在高維空間的低維流形 流形:局部具有歐幾里得空間性質的空間  1.較好的描述轉載 作者:暮暮迷了路 鏈

原创 split("/")[-1] 和 split("/",-1)的區別

#coding=utf-8 str="http://www.runoob.com/python/att-string-split.html" print("0:%s"%str.split("/")[-1]) print("1:%s"%

原创 pytorch加載數據與預處理數據

轉載: pytorch加載數據與預處理數據 - pytorch中文網 原文出處: https://ptorch.com/news/140.html   解決任何機器學習問題需要付出很多努力來準備數據。PyTorch提供了許多工具可以使數

原创 visdom 使用指南

原文:https://blog.csdn.net/LXX516/article/details/79019328     啓動 python -m visdom.server 在瀏覽器輸入:http://localhost:8097/,即

原创 使用python獲取csv文本的某行或某列數據

轉載自:https://blog.csdn.net/Allyli0022/article/details/79125672   站長用Python寫了一個可以提取csv任一列的代碼,歡迎使用。Github鏈接:https://github

原创 StarGAN代碼解析

轉載:https://blog.csdn.net/yunyi4367/article/details/80747690 pytorch原版github地址:https://github.com/yunjey/StarGAN  tensor

原创 2017-CVPR-Spindle Net: Person Re-identification with Human Body Region Guided Feature

  轉載自:https://blog.csdn.net/weixin_41427758/article/details/82910295   論文地址:http://openaccess.thecvf.com/content_cvpr_2

原创 Gibbs Distribution, MRF, MCMC

摘自: https://www2.eecs.berkeley.edu/Research/Projects/CS/vision/classes/cs294_f99/notes/lec7/lec7.htm Gibbs Distribution

原创 Image Embedding(圖片嵌入)/ Feature Embedding(特徵嵌入)

Feature Embedding 特徵嵌入,將數據轉換(降維)爲固定大小的特徵表示(矢量),以便於處理和計算(如求距離)。例如,針對用於說話者識別的語音信號訓練的模型可以允許您將語音片段轉換爲數字向量,使得來自相同說話者的另一片段與原

原创 條件隨機場(CRF) 和 馬爾科夫隨機場 (MRF)

The difference between CRF and MRF: Just a follow-up on Eren's answer: Let X denote a multi-dimensional input (i.e., t

原创 pytorch 減小顯存消耗,優化顯存使用,避免out of memory

轉載自: https://blog.csdn.net/qq_28660035/article/details/80688427 本文是整理了大神的兩篇博客: 如何計算模型以及中間變量的顯存佔用大小: https://oldpan.me/a

原创 Linux更改文件及目錄權限問題

轉載自:https://www.cnblogs.com/puloieswind/p/5845638.html 1. 快速實例學習: 修改某個目錄下的所有文件的權限,包括子目錄中的文件,例子如下: # chmod 777 /home/us