전체 글
-
VQA: Visual Question Answering 리뷰카테고리 없음 2025. 7. 18. 14:38
[1505.00468] VQA: Visual Question Answering VQA: Visual Question AnsweringWe propose the task of free-form and open-ended Visual Question Answering (VQA). Given an image and a natural language question about the image, the task is to provide an accurate natural language answer. Mirroring real-world scenarios, such as helping thearxiv.org 이 논문은 VQA Task를 정의하고 Challenge와 Dataset에 대해 자세히 소개하고 있다. 본..
-
pyenv - python 관리카테고리 없음 2024. 10. 9. 21:46
1. pyenv를 설치하기 GitHub - pyenv-win/pyenv-win: pyenv for Windows. pyenv is a simple python version management tool. It lets you easily switch between multiple versions of Python. It's simple, unobtrusive, and follows the UNIX tradition of single-purpose tools that do one thing well. GitHub - pyenv-win/pyenv-win: pyenv for Windows. pyenv is a simple python version management tool. It lets you easi..
-
GITHUB issue/pullRequest Template 생성 및 적용정리 2024. 9. 10. 12:02
협업할 때 issue 생성 -> branch 생성 -> 코드 수정 -> pullRequest 생성 순으로 작업하면 편하다. issue와 pr은 템플릿을 사용하면 통일감있어 좋다. -.github/PULL_REQUEST_TAMPLATE/pull_request_template.md### PR 타입(하나 이상의 PR 타입을 선택해주세요)- [ ] Feat : 새로운 기능 추가- [ ] Remove : 파일 및 기능 삭제- [ ] Test : 테스트 코드 추가- [ ] Fix : 버그 수정- [ ] Docs : 문서 수정- [ ] Refactor : 코드 리펙토링- [ ] Style : 코드 포맷팅, 세미콜론 누락, 코드 변경이 없는 경우, 주석 추가### 반영 브랜치ex) feat/login -> dev#..
-
GIT, GITHUB(egoing 강의 참고)정리 2024. 9. 8. 02:33
git? 버전관리, 백업, 협업용 시스템vscode? 파일 편집기 1. VSCODE와 GIT 깔기 2. VSCODE에서 GIT 관리하기- 로컬에 연습용 파일 생성 - vscode에서 폴더 열기를 눌러 위 디렉토리를 열기 - 다음 상태에서 소스제어 - 리포지토리 초기화 선택: git init을 하면 해당 레포지토리를 깃으로 관리할 수 있게 됨!# .git이 안 보여요!>>> 컨트롤 쉼표 누르면 설정창 열림. - 'exclude' 검색여기서 **/.git 삭제=> .git 안 보이게 하는 명령어를 지운 것임. - .git이란?이 안에 우리 소스코드, 버전 다 들어있음. 씨간장같은 폴더...워킹 디렉토리(.git 외의 공간)엔 내가 작업한 파일들과 stage area 라는 공간이 있음stage area에 작..