no image
[Paper Review] Pose for Everything, Towards Category-Agnostic Pose Estimation
Paper : https://arxiv.org/pdf/2207.10387.pdf GitHub : https://github.com/luminxu/Pose-for-Everything GitHub - luminxu/Pose-for-Everything: The official repo for ECCV'22 paper: Pose for Everything: Towards Category-Agnostic Pose E The official repo for ECCV'22 paper: Pose for Everything: Towards Category-Agnostic Pose Estimation - GitHub - luminxu/Pose-for-Everything: The official repo for ECCV'2..
2022.12.01
no image
[Paper Review] PoseDet, Fast Multi-Person Pose Estimation Using Pose Embedding
Paper : https://arxiv.org/pdf/2107.10466.pdf GitHub : https://github.com/IIGROUP/PoseDet GitHub - IIGROUP/PoseDet: [FG 2021] Code for PoseDet: Fast Multi-Person Pose Estimation Using Pose Embedding [FG 2021] Code for PoseDet: Fast Multi-Person Pose Estimation Using Pose Embedding - GitHub - IIGROUP/PoseDet: [FG 2021] Code for PoseDet: Fast Multi-Person Pose Estimation Using Pose Embedding github..
2022.12.01
no image
[Book Review] 기업의 성공을 이끄는 Developer Relations
Developer Relations 이란? 기업과 개발자의 관계를 만들고 유지하며, 장기적으로 기술적 우위를 점할 수 있도록 기반과 생태계를 만드는 분야 한빛미디어에서 출간된 "기업의 성공을 이끄는 Developer Relations" 책에서는 한국에서는 아직 낯선 디벨로퍼 릴레이션 또는 데브렐(DevRel)이라는 낯선 개념을 소개한다. 디벨로퍼 릴레이션의 목적은 '개발자 커뮤니티와 관계를 만드는 것'이라고 한다. 데브렐 전문가들은 회사와 엔드 유저인 개발자 사이의 연결고리 역할을 한다. 다른 분야의 전문가들은 일상적인 업무에서 의사결정을 내릴 때 비즈니스 측면의 최대 이익에 초점을 맞추는 반면, 데브렐 전문가들은 커뮤니티의 최대 이익에 중점을 둔다. 이 책에 실린 내용은 비록 외국 기업의 사례가 주를 ..
2022.11.30
no image
[Paper Review] HuMMan, Multi-Modal 4D Human Dataset for Versatile Sensing and Modeling
Paper : https://arxiv.org/pdf/2204.13686.pdf Project page : https://caizhongang.github.io/projects/HuMMan/ HuMMan HuMMan: Multi-Modal 4D Human Dataset for Versatile Sensing and Modeling Zhongang Cai* Daxuan Ren* Ailing Zeng* Zhengyu Lin* Tao Yu* Wenjia Wang* Xiangyu Fan Yang Gao Yifan Yu Liang Pan Fangzhou Hong Mingyuan Zhang Chen Change Loy Lei Yang^ Ziwei Liu^ Shang caizhongang.github.io 오늘 살펴..
2022.11.07
no image
[Book Review] 전문가를 위한 C
한빛미디어에서 출간된 “전문가를 위한 C”라는 책은 현업에서 C / C++ 언어를 사용하는 사람들이라면 심도있는 주제를 다양하게 설명해놓았기 때문에 참고해보면 좋을 것 같은 책이다. 또한 최신 C언어에 대한 내용도 담고있고, 프로세스 간 통신 하는 내용과 다른 언어와 통합하는 방법, 테스트와 유지보수 등에 대한 세세히 담겨있어서 실무에 도움 될 수 있는 책이다. 주니어 및 시니어 둘 다 볼 수 있는 책이다. 마지막 장에서는 빌드 시스템에서 바젤 빌드와 CMAKE에 대해서도 다루고 있어서 꽤 쏠쏠했다. 책이 약간 두껍긴 하지만 그래도 실무에 도움 될 만한 내용들이 많기 때문에 C언어를 주로 사용하는 개발자라면 한 권쯤 가지고 있어도 좋을 듯 하다. “한빛미디어 활동을 위해서 책을 제공받아 작성된 서평입니다."
2022.10.30
[GitHub] 주로 사용하는 GitHub 명령어 모음
⭐⭐⭐⭐⭐ 내가 헷갈려서 정리해보는 주로 사용하는 GitHub 명령어 모음집 ⭐⭐⭐⭐⭐ Git 기본 명령어 현재 상태 확인 (내가 제일 많이 사용하는 명령어)git status 전체 로그 확인 git log git 저장소 생성하기 git init 저장소 복제 및 다운로드 git clone [https: ~~~~ ] 저장소에 코드 추가git addgit add * 커밋에 파일의 변경 사항을 한번에 모두 포함 git add -A 커밋 생성git commit -m "message" 변경 사항 원격 서버 업로드 (push)git push origin master 원격 저장소의 변경 내용을 현재 디렉토리로 가져오기 (pull)git pull 변경 내용을 merge 하기 전에 바뀐 내용 비교git diff [브랜치..
2022.10.28
no image
[Paper Review] AdaptivePose++: A Powerful Single-Stage Network for Multi-Person Pose Regression
기존 AdaptivePose 관련 글 https://eehoeskrap.tistory.com/664 [Paper Review] AdaptivePose : Human Parts as Adaptive Points Paper : https://arxiv.org/pdf/2112.13635.pdf 이번에 리뷰할 논문은 AAAI 2022에서 소개된 "AdaptivePose : Human Parts as Adaptive Points" 라는 논문입니다. multi-person pose estimation 방법은 보통 bottom up 이나 top down 방식으 eehoeskrap.tistory.com Paper : https://arxiv.org/pdf/2210.04014v1.pdf AdaptivePose에 이어 A..
2022.10.18
no image
[Paper Review] AdaptivePose : Human Parts as Adaptive Points
Paper : https://arxiv.org/pdf/2112.13635.pdf Github : https://github.com/buptxyb666/AdaptivePose GitHub - buptxyb666/AdaptivePose: This is an official implementation of our AAAI2022 paper“AdaptivePose: Human Parts as Adapti This is an official implementation of our AAAI2022 paper“AdaptivePose: Human Parts as Adaptive Points” - GitHub - buptxyb666/AdaptivePose: This is an official implementation ..
2022.10.18
no image
[Paper Review] Explicit Occlusion Reasoning for Multi-person 3D Human Pose Estimation
Paper : https://arxiv.org/abs/2208.00090 Explicit Occlusion Reasoning for Multi-person 3D Human Pose Estimation Occlusion poses a great threat to monocular multi-person 3D human pose estimation due to large variability in terms of the shape, appearance, and position of occluders. While existing methods try to handle occlusion with pose priors/constraints, data augme arxiv.org GitHub : https://gi..
2022.10.18
no image
[Paper Review] Uncertainty-Aware Adaptation for Self-Supervised 3D Human Pose Estimation
Paper : https://openaccess.thecvf.com/content/CVPR2022/papers/Kundu_Uncertainty-Aware_Adaptation_for_Self-Supervised_3D_Human_Pose_Estimation_CVPR_2022_paper.pdf 본 논문의 main contribution은 아래와 같습니다. multi-representation pose network를 사용하는 MRP-Net을 제안하였으며, pose-uncertainty는 두 가지 다양한 설계(model-free, model-based)를 기반으로 하는 2개의 output head를 통한 pose prediction간의 불일치로 정량화됩니다. 제안된 포즈와 joint uncertainty의 효율..
2022.10.13
no image
[Book Review] 김기현의 딥러닝 부트캠프 with 파이토치
한빛미디어에서 출간된 김기현의 딥러닝 부트캠프라는 책은 딥러닝 패스트 캠퍼스에서 자연어 처리 및 파이토치 강의를 하시는 김기현 강사님이 쓰신 책이다. 딥러닝을 처음 접하는 사람들이나, 처음부터 다시 천천히 딥러닝 개념을 훑어보고 싶은 사람들을 위해 쓰여진 책이다. 책은 개발 환경 구축하는 법 부터 시작하여 딥러닝에 대한 전반적인 개념을 소개한다. 그 다음 파이토치 기반으로 텐서의 개념부터 시작해서 텐서를 자르는 방법, 텐서의 형태를 변환하는 방법 등을 자세히 다루고 있다. 그 다음에는 딥러닝 책에서 필수적으로 등장하는 개념인 선형 계층, 손실 함수, 경사하강법, 선형 회귀, 로지스틱 회귀, 심층신경망, 확률적 경사하강법, 최적화 등 기본 개념을 다룬다. 그리고 오버피팅을 방지하는 방법에 대해서도 기술해 ..
2022.10.01
no image
RGB Color Codes Chart
https://www.rapidtables.com/web/color/RGB_Color.html RGB Color Codes Chart 🎨 RGB Color Codes Chart RGB color picker | RGB color codes chart | RGB color space | RGB color format and calculation | RGB color table RGB color picker RGB color codes chart Hover with cursor on color to get the hex and decimal color codes below: RGB color www.rapidtables.com
2022.09.21