原创 ImportError: /lib64/libm.so.6: version `GLIBC_2.27‘ not found

ImportError: /lib64/libm.so.6: version `GLIBC_2.27’ not found (required by /home/labpos/anaconda3/envs/rpmnet/lib/p

原创 【點雲識別】Adaptive Hierarchical Down-Sampling for Point Cloud Classification(CVPR 2020)

Adaptive Hierarchical Down-Sampling for Point Cloud Classification 本文介紹一篇cvpr2020裏面關於點雲分類降採樣的文章。 論文 沒有開源代碼 1. 問題 FP

原创 【點雲識別】Unsupervised Learning of Intrinsic Structural Representation Points(CVPR 2020)

Unsupervised Learning of Intrinsic Structural Representation Points 本文介紹一篇cvpr2020裏面無監督學習內在結構表徵點的文章。 論文 代碼 1. 問題 無監

原创 Package inputenc Error: Invalid UTF-8 byte sequence. [This electronic document is a l]

Package inputenc Error: Invalid UTF-8 byte sequence. [This electronic document is a l] 問題很好解決,在文章的開頭添加 \UseRawInpu

原创 LaTex Error

LaTeX Error: File `.def’ not found. [\usepackage] 出現這個問題上是因爲我的電腦中同時安裝了Ctex和latex,所以會產生衝突。卸載Ctex即可。

原创 【點雲識別】Weakly Supervised Semantic Point Cloud Segmentation: Towards 10x Fewer Labels(CVPR 2020)

Weakly Supervised Semantic Point Cloud Segmentation: Towards 10x Fewer Labels 本文介紹一篇cvpr2020裏面關於點雲弱監督分割的文章。 論文 目前還沒

原创 【點雲識別】Multi-Path Region Mining ForWeakly Supervised 3D Semantic Segmentation on Point Clouds

Multi-Path Region Mining ForWeakly Supervised 3D Semantic Segmentation on Point Clouds 本文介紹一篇cvpr2020裏面關於點雲弱監督分割的文章

原创 【點雲識別】AdaCoSeg: Adaptive Shape Co-Segmentation with Group Consistency Loss (CVPR 2020 oral)

AdaCoSeg: Adaptive Shape Co-Segmentation with Group Consistency Loss 本文介紹一篇cvpr2020 裏面關於點雲識別的文章。 論文 目前還沒有開源代碼 1. 問題

原创 pytorch DistributedDataParallel多卡並行訓練

pytorch DistributedDataParallel多卡並行訓練 Pytorch 中最簡單的並行計算方式是 nn.DataParallel。 DataParallel 使用單進程控制將模型和數據加載到多個 GPU 中,控

原创 Pytorch distributed RuntimeError: Address already in use

Pytorch distributed RuntimeError: Address already in use 如果是使用pytorch distributed 單機多卡訓練方式,出現該錯誤,非常好解決。 Traceback (

原创 LeetCode 919. Complete Binary Tree Inserter解題報告(python)

919. Complete Binary Tree Inserter Complete Binary Tree Inserter python solution 題目描述 A complete binary tree is a

原创 【點雲識別】Go Wider: An Efficient Neural Network for Point Cloud Analysis via Group Convolutions

Go Wider: An Efficient Neural Network for Point Cloud Analysis via Group Convolutions 本文介紹一篇想要更高效的處理點雲識別的文章,思路比較新穎

原创 pytorch 多卡並行載入部分網絡模型

pytorch 多卡並行載入部分網絡模型 我們在做深度學習的時候經常會使用預訓練的模型。但是一旦自己修改了網絡架構,就無法load pretrained model。 因爲模型文件保存的參數,有一部分是不需要的,或者有一部分參數是

原创 Pytorch 不訓練(frozen)一些神經網絡層的方法

Pytorch 不訓練(frozen)一些神經網絡層的方法 我們在做深度學習的時候經常會使用預訓練的模型。很多情況下,加載進來模型是爲了完成其他任務,在這種情況下,加載模型的一部分是不需要再訓練的。那麼我們就需要forozen這些

原创 LeetCode 1004. Max Consecutive Ones III 解題報告(python)

1004. Max Consecutive Ones III Max Consecutive Ones III python solution 題目描述 Given an array A of 0s and 1s, we ma