본문 바로가기
[논문 리뷰] Pseudo-LiDAR from Visual Depth Estimation: Bridging the Gap in 3D Object Detection for Autonomous Driving (2019) "어떤 Input을 넣느냐에 따라 너의 뇌가 바뀐다" 읽고 난 후 먼저 정리를 해보자면 LiDAR은 비쌉니다. 그래서 맨 처음 Image를 기반으로 depth map을 예측해서 3D Object Detection을 하는 방법이 나왔지만 Convolution Network에서 2가지 문제점(1. 인근 pixel을 동일한 깊이로 인식한다 2. 멀리있는 객체를 가까운 객체로 인식한다)를 가지고 있어서 실제 LiDAR에 비해 정확도가 많이 떨어진다고 합니다. 그런데 논문에서는 정확도가 낮은 이유는 data의 quality가 아니라 data 의 representation의 문제라고 말합니다. 여기서 representation이 뭐냐면 data를 가지고 예측을 때릴 때 사용되는 기법이라고 생각하면 좋을 거 같습니다.. 2023. 7. 13.
'Adam'보다 더 빠른 옵티마이저 등장? by 스탠포드 대학 https://arxiv.org/abs/2305.14342 Sophia: A Scalable Stochastic Second-order Optimizer for Language Model Pre-training Given the massive cost of language model pre-training, a non-trivial improvement of the optimization algorithm would lead to a material reduction on the time and cost of training. Adam and its variants have been state-of-the-art for years, and more sophist arxiv.org 해당 논문의 출처입니다... 2023. 6. 5.
<Flutter> Animations sample 적용하기(AnimationController) 지난 글에 이어서 여러가지 Animations samples를 적용해볼게요! AnimationControllerDemo: Demonstrates how to use an AnimationController. AnimationController에 대해서 알아볼까요? Using the SingleTickerProviderStateMixin can ensure that our AnimationController only animates while the Widget is visible on the screen. This is a useful optimization that saves resources when the Widget is not visible. SingleTickerProviderStateMixi.. 2023. 3. 27.
깃 터미널 설정부터 -bash: git: command not found 예외 처리까지 잡았다 요놈. 깃을 설치하고 터미널에 기본 프로필로 설정해보겠습니다. 저렇게 Git Bash가 안뜨는 분들 있죠? 차근 차근 따라하시면 금방 처리할 수 있답니다! 저기 설정으로 가셔서 json 파일을 열어줍니다. 왼쪽 아래에 있죠. 저는 vs 코드로 했어요. 그리고 아래와 같은 코드를 추가해주세요 "profiles": { "defaults": {}, "list": [ . . . }, { "commandline": "\"%PROGRAMFILES%\\git\\usr\\bin\\bash.exe\" -i -l", "cursorShape": "filledBox", "guid": "{05333954-0b01-4a63-aa6e-550c5e5d10c7}", "hidden": false, "icon": "%PROGRAM.. 2023. 3. 25.