본문 바로가기

반응형

분류 전체보기

(158)
[ 꼼꼼하게 논문 읽기 ] DG-STGCN: Dynamic Spatial-Temporal Modeling for Skeleton-based Action Recognition ( 2022 ) 정말 오랜만에 글을 쓰는 것 같네요. 정말정말 저엉말 바빴어요 배포 기간동안은 성능 검증에, 버그 fix에 고도화에 아주 미쳐버리는줄 알았죠 여튼 오랜만에 뵈어요 새해복 많이 받으시고 시작할게요 Abstract Graph convolution networks 는 skeleton-based action recogntion에 광범위하게 사용되어 왔죠. 저자들은 현존하는 GCN-based approaches가 대게 prescrbed graphical structures에 의존한다는 걸 알았다고 합니다. 그리고 그 사실은 joints간의 복잡한 correlations를 capture하는 유연성에 제한을 걸죠. 저자들은 skeleton-based action recognition을 위한 새로운 framework를..
ModuleNotFoundError: No module named 'torchvision.models.utils' 해결 from torch.hub import load_state_dict_from_url
[ 꼼꼼하게 논문 읽기 ]SimpleRecon:3D Reconstruction Without 3D Convolutions ( 2022 ) 안녕하세요 wh입니다. 말도 안되는 요구를 받았지만 요구를 받으면 해결해봐야지요. 그래서 필요한 논문을 가져왔습니다. Abstract 전통적으로, posed images로 부터 3D indoor scene reconstruction은 두 가지 방식으로 발생했죠: per-image depth estimation인데 이는 depth merging과 surface reconstruction이 뒤따르죠. 최근 family of mehtos는 final 3D volumeric feature space에서 직접 reconstruction을 perform해왔죠. 이 methods가 impressive reconstruction results를 보여주는 반면에, 이들은 expensive 3D convolutional ..
ModuleNotFoundError: No module named 'progress' 해결 pip install progress
ModuleNotFoundError: No module named 'cv2' 해결 conda install -c conda-forge opencv or pip install opencv-python
fatal error: TH/TH.h: No such file or directory 해결 # clone Torch repository git clone https://github.com/torch/torch7 mkdir th_build cd th_build # configure TH build cmake ../torch7/lib/TH # compile library make # install shared library and header files make install 진짜 .. 문제 날때 마다 왜인지좀 누가 알려줬으면 좋겠다.. 이것저것 찾아보다가 그냥 직접 빌드했다. 그러니까 이번에는 fatal error: THC/THC.h: No such file or directory 이 error가 나는데 이거 해볼라고 진짜 왠만한 삽질은 다해보다가 결국에 11버전에서는 라이브러리가 바뀌었단..
CUDA_cublas_device_LIBRARY (ADVANCED) linked by target "THC" in directory /root/torch/extra/cutorch/lib/THC 해결 $ cd ~/torch $ rm -fr cmake/3.6/Modules/FindCUDA* torch/extra/cutorch 에서 아래 파일을 수정해줘야함 /lib/THC/THCAtomics.cuh 에디터를 사용해서 해당 코드 추가 @@ -94,6 +94,7 @@ static inline __device__ void atomicAdd(long *address, long val) { } #ifdef CUDA_HALF_TENSOR +#if !(__CUDA_ARCH__ >= 700 || !defined(__CUDA_ARCH__) ) static inline __device__ void atomicAdd(half *address, half val) { unsigned int * address_as_ui =..
CMake error with "CUDA_cublas_device_LIBRARY" 해결 cmake version update 3.10.2 -> 3.12.1 시도중 cmake 설치 방법 기존 cmake 제거 후 $ wget http://www.cmake.org/files/v3.12/cmake-3.12.1.tar.gz $ tar -xvzf cmake-3.12.1.tar.gz $ cd cmake-3.12.1/ $ ./configure $ make $ sudo make install $ sudo update-alternatives --install /usr/bin/cmake cmake /usr/local/bin/cmake 1 --force