전체 글 (159) 썸네일형 리스트형 [꼼꼼하게 논문읽기] PYSKL : Towards Good Practices for Skeleton Action Recognition ( 2022 ) 논문 원문 : https://arxiv.org/abs/2205.09443 이번 논문에는 상당히 흥미로운 내용이 많았죠 함께 보자구요 그리고 다른 블로그를 하나 더 운영하는데요. 그 블로그에서는 이렇게 논문 자체를 읽는 것이 아닌 insight 나 논문의 핵심, 이론을 위주로 다루려고 합니다. 관심있는 분은 아래 링크를 참조해 주세요 https://ai-easy.tistory.com/ Abstract 저자들은 PYSKL을 제안합니다: open-source toolbox 이고 skeleton-based anction recognition 에 관한 것이며 pytorch를 기반으로 작성되었죠. toolbox는 다양한 skeleton action recognition algorism을 지원하죠. 크게는 GCN b.. [ 꼼꼼하게 논문 읽기 ] 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 =.. 이전 1 2 3 4 5 6 7 8 ··· 20 다음