분류 전체보기

    PyTorch Lightning 사용기 1 - 장점과 단점

    PyTorch Lightning 사용기 1 - 장점과 단점

    PyTorch Lightning은 사람들이 PyTorch 코드들을 작성하는 게 다 스타일이 다르다 보니까 이런 스타일을 통일하고자 만든 라이브러리이다. PyTorch의 기존 단점은 사람들마다 train 시키는 코드가 다 제각각이라는 것인데, 이것을 함수화 시켜서 train, validate, test까지 다 해결할 수 있게 만들었다. 그리고, 기존의 save, logging, checkpointing, hyperparameter logging, version management 같은 부분을 통일화시켜서 다른 사람들의 코드를 더 보기 쉽게 할 수 있다. 즉, 코드 자체가 재사용 가능하고 공유 가능해진다는 것이다. 게다가 제일 좋은 부분은, Lightning 자체가 PyTorch의 wrapper 형식으로 작..

    6주차 학습 일지 - CV 기초대회

    사용한 기술 스택들: 10/24 월 학습한 것들: In competition, it is good to know the direction of where this is going - read the overview carefully Problem definition is important. - what is the problem that I need to solve? - What is the I/O of the problem? - Where is this solution being applied? Have the heart of solving the problem not increasing the rank. Domain understanding - Data Mining - Data Analysis - D..

    부스트캠프 5주차 학습 일지 - Computer Vision Basics

    사용한 기술 스택들: 10/18 화 학습한 것들: CNN visualization aims to see what's inside CNN(black box) - CNN visualization can be used to debug Filter visualization: can be used to show activation visualization of an image - it is hard to visualize like this after the first convolution layer Two focus: focus on data/focus on models Nearest neighbors in feature space: can look for clusters that are semantically ..

    부스트캠프 4주차 학습 일지 - Computer Vision Basics

    사용한 기술 스택들: 10/11 화 학습한 것들: AI consists of cognition&percention, memory&inference, decision making, reasoning Using multi-modal association for perception Vision is important because 75% of data comes from vision data Computer vision is the inverse of computer rendering Using good and bad of our visual perception to make a CV model that compensates for the imperfection Old machine learning used ..

    [백준] 1679번: 숫자놀이 풀이

    사용한 기술 스택들: 1679번: 숫자놀이 (acmicpc.net) 1679번: 숫자놀이 홀순이(holsoon)와 짝순이(jjaksoon) 둘이서 숫자 게임을 한다. 예를 들어, 정수 1과 3이 주어지고, 이 둘을 통틀어 5번까지 마음대로 사용하여 그 합을 구하여 1,2,3,…을 만드는 놀이다. 이 경우 먼저 www.acmicpc.net 코드: import sys input = lambda: sys.stdin.readline().rstrip() n = int(input()) l=list(map(int,input().split())) nums = set(l) k = int(input()) dp=[float('inf') for _ in range(l[-1]*k+2)] for i in range(1,l[-1]..