본문 바로가기

전체 글

(40)
@property decorator python https://www.freecodecamp.org/news/python-property-decorator/
what is multi-view consistency multi-view consistency: a common geometry, observed from different perspectives can consistently explain multiple views of an instance. https://openaccess.thecvf.com/content_cvpr_2018/papers/Tulsiani_Multi-View_Consistency_as_CVPR_2018_paper.pdf
visual studio comment shortkey ctrl + k, ctrl + c undo: ctrl+ k, ctrl + u https://stackoverflow.com/questions/32426267/visual-studio-comment-shortcut
how to change font color in Ubuntu terminal https://www.cyberciti.biz/faq/bash-shell-change-the-color-of-my-shell-prompt-under-linux-or-unix/ nano ~/.bashrc if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;32m\]\w\[\033[00m\]\$ ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' 32 부분 바꿈. Also, add this line at the end. 1;33 means bold;yellow LS_COLORS=$LS_COLORS:'..
how to apply transform to subset of dataset https://stackoverflow.com/questions/51782021/how-to-use-different-data-augmentation-for-subsets-in-pytorch
understand how meshgrid and stack work. ft.pytorch import torch x = torch.linspace(-1,1,3) y = torch.linspace(-1,1,3) z = torch.linspace(-1,1,3) xyz = torch.meshgrid(x, y, z) print(xyz[0]) xyz = torch.stack(xyz, dim=0) print(xyz.shape) out = xyz.repeat(1,1,1,1) print(out.shape) # xy = torch.meshgrid(x, y) # print(xy[0]) # xy = torch.stack(xy, dim=0) # print(xy) ''' tensor([[[-1., -1., -1.], [-1., -1., -1.], [-1., -1., -1.]], [[ 0., 0., 0.], [ 0...
순부채비율 with 실제예시 순부채비율이란? - 핵심 부채 : 네이버 블로그 (naver.com) 순부채비율이란? - 핵심 부채 기업의 안정성을 평가할 때 부채를 확인하시는 습관을 들이시는 것이 좋습니다. 보통 부채 그 자체보다는 ... blog.naver.com
remote wsl in visual studio remote-WSL 설치후 ubuntu 에서 code 실행 or 좌측하단 클릭 sudo apt-get install g++ or sudo apt-get install gcc 실행해서 g++/gcc 설치. #include 인식못하면 json setting 들어가서 "compilerPath": "/usr/bin/gcc" 추가 https://tttsss77.tistory.com/242#:~:text=%ED%99%98%EA%B2%BD%20%EA%B5%AC%EC%84%B1%ED%95%98%EA%B8%B0-,vscode%EC%97%90%20Remote%2DWSL%20%ED%94%8C%EB%9F%AC%EA%B7%B8%EC%9D%B8%20%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0,%EC%9D%8..
영업이익, 순이익, 당기순이익 https://brunch.co.kr/@jongsiksong/5#comment 영업이익, 순이익, 영업활동으로인한현금흐름 해석 어떤게 진짜 이익일까? | 회사의 개략적인 영업 실적을 살펴볼 때 가장 중요한 지표 3가지를 꼽으라고 하면 단연 매출액, 영업이익, 순이익입니다.매출액은 그 회사의 규모를 알 수 있는 지표입 brunch.co.kr
Python Grammar https://ai.stackexchange.com/questions/20703/does-the-lowest-layer-refer-to-the-first-or-last-layer-of-the-neural-network/20711#20711?newreg=b6a8b81576ec4069b5b2a23c500f23b8 Does the "lowest layer" refer to the first or last layer of the neural network? People sometimes use 1st layer, 2nd layer to refer to a specific layer in a neural net. Is the layer immediately follows the input layer called ..