일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- CS231ntwolayerneuralnet
- adversarialattackonmonoculardepthestimation
- MacOS
- 아이폰원스토어
- CNN구조정리
- ㅐㅕ세ㅕㅅ
- CS231n
- BOJ
- ios원스토어
- CNNarchitecture
- 백준알고리즘
- 선대
- gpumemory
- Algorithm
- 맥실리콘
- monoculardepthestimation
- CS231nAssignment1
- arm칩에안드로이드
- Gilbert Strang
- pycharmerror
- CS231nAssignments
- 맥북원스토어
- professor strang
- 백준
- Linear algebra
- BAEKJOON
- MIT
- RegionProposalNetworks
- CS231nSVM
- 선형대수학
- Today
- Total
목록분류 전체보기 (46)
개발로 하는 개발

As it should, your mac is in case - sensitive folder. 아니 요즘 세상에 대문자 소문자 구별 안되는 파일 시스템을 누가 사용한다고... 대소문자 구별되는 폴더에 동기화가 안된다니... (원드라이브에 다시는 안 올려야지... ) Anyways... if you need to use the desktop app for multiple reasons, you are not able to make a folder for your onedrive in your local root. Find Disk Utility Click " + " button on the top right -> Add APFS volume Set the folder name to OneDrive, an..
//터미널에서 brew install libiconv after install, iconv -f EUC-KR -t UTF-8 input.cpp > output.cpp You cannot save if you copy & paste the modified code in output.cpp to input.cpp -> best will be to just delete the input file and modify the filename of output.cpp OR, BETTER, just write the comments in English... if you wish to do the same to all the codes, you can do this for file in *.cpp; do iconv -..
컴퓨터 그래픽스에서 사용하는 OpenGL 3.3을 설치하고 빌드해보자. CMake download, Github Desktop download, Visual Studio download - c++를 활용한 데스크탑~ 선택해서 설치 Github Desktop에서 아래 url을 clone해 온다. 그냥 zip으로 다운로드 받아도 됨 LearnOpenGL-github GitHub - JoeyDeVries/LearnOpenGL: Code repository of all OpenGL chapters from the book and its accompanying website https://lear Code repository of all OpenGL chapters from the book and its acco..
보호되어 있는 글입니다.

Sketch Healer, Generative Sketch Healing 논문 리뷰 및 코드 사용법 위주로 본 image completion 저희 졸업 프로젝트의 주제는 Stroke-based Collaborative Drawing between Robot(AI) and Human 으로 stroke를 기반으로 사람과 협업하여 그림을 그리는 human-like 로봇을 구현하는 것입니다. 저희는 human-like를 이렇게 정의했습니다. Human-like 한 그림이란 무작위로 획을 그리는 것이 아니라, 1. 한 획이 끝나는 지점과 가까운 곳부터 획을 그리거나 2. 이미 그려지던 물체를 구성하는 stroke에 우선순위를 두어 그림을 완성하는 것. 이를 달성하기 위해 이미 라벨링 된 데이터셋을 활용하여 인공지..
1. github clone https://github.com/sgybupt/SketchHealer 2. download .npz file. Numpy .npz files Google 클라우드 플랫폼 로그인 Google 클라우드 플랫폼으로 이동 accounts.google.com pip install gsutil gsutil -m cp "gs://quickdraw_dataset/sketchrnn/*.full.npz" 3. dependencies -> virtual venv 먼저 만들기 python -m venv sketchHealer source sketchHealer/bin/activate //later -> deactivate To run this code, you need to install pyt..

i : 편집 모드로 전환 esc : 명령 모드로 전환 :w enter : save :q : quit vim filename.py : file open linux commands cd directoryname : cd .. : go to upper directory mkdir directoryname : make directory cat filename : check file view touch filename : make file ls : view directory file mkdir directoryname cd directoryname git init git status ls -a : 숨김 파일 보기 git clone "url" vim readme.md -> 파일 생성 git add readme.md..

Tensorflow==1.15 opencv-python==3.4.2.* pillow==6.2.0 scipy==1.5.2 gizeh==0.1.11 After python version 3.7, tensorflow 1.5 wasn't supported, so we are going to make a venv with python 3.7 version first. python -m venv virtualSketch source virtualSketch(venv_name)/bin/activate #check the python version python --version venv activate 하기 -> 앞에 (환경 이름) 붙게 됨 python version 확인하기 deactivate 나중에 비활성화할 때 ..