일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- REINFORCE
- MRI
- fastapi
- normalization
- noise contrast estimation
- loss functions
- sample rows
- shadowing
- Actor-Critic
- rest-api
- straightup
- domain adaptation
- sidleup
- checkitout
- freebooze
- Excel
- resample
- objective functions for machine learning
- 자료구조
- Inorder Traversal
- non parametic softmax
- clip intensity values
- model-free control
- thresholding
- pulloff
- 3d medical image
- Policy Gradient
- scowl
- remove outliers
- Knowledge Distillation
- Today
- Total
목록Programming (39)
Let's Run Jinyeah
python에서 입력받는 방법 1. input() 함수 2. sys.stdin.readline() 함수 1. 입력받은 문자열을 띄어씌기로 구분하여 각각 숫자 자료형으로 저장 # 데이터 개수 입력 n = int(input('n을 입력하시오: ')) # 각 데이터를 공백으로 구분하여 리스트에 저장 data = list(map(int, input('data를 입력하시오: ').split())) # 적은 수의 데이터 입력일 경우 각 변수에 저장 n, m, k = map(int, input('세개의 값을 입력하시오: ').split()) # 입력 예시 # n을 입력하시오: 5 # data를 입력하시오: 1 2 3 4 5 # 세개의 를 입력하시오: 1 2 3 # 출력 예시 # 5 # [1, 2, 3, 4, 5] #..
html이나 css 코드를 변경 후에 웹페이지를 새로고침해도 반영이 안될 때가 있다. 코드의 에러가 없는데 이런 일이 발생했다면 browser cache가 원인일 가능성이 있다. 이때는 웹브라우저를 hard refresh해줘야 한다. [해결책] Chrome: Ctrl+Shift+R 실행 다른 웹브라우저의 경우: www.getfilecloud.com/blog/2015/03/tech-tip-how-to-do-hard-refresh-in-browsers/#.YAFbZdgzZPZ

웹 서버가 무엇인지 알아보기 위해 웹 브라우저와 웹 서버의 개념을 알고 내 컴퓨터에 직접 웹 서버를 설치하여 실행해보았다. Web Browser vs Web Server Web Browser(client) - 웹페이지(HTML 문서)를 요청하고 출력하는 응용 소프트웨어 ex. Internet Explorer, Chrome Web Server(server) - Internet을 통해 요청된 웹페이지(HTML 문서)를 응답하는 서버 소프트웨어 Web Server를 통해 내 컴퓨터에 있는 HTML 문서를 다른 컴퓨터에서 볼 수 있다!! 웹 서버 설치 후 실행 실행 환경 내 컴퓨터(Window 10)에 웹 서버를 포함하는 XAMPP설치 후 Apache 실행 다른 컴퓨터(아이폰)는 내 컴퓨터와 같은 무선 LAN을..
html을 공부하면서 제작년에 데이테베이스 강의를 들으면서 깔아놓은 xampp의 웹서버인 apache를 실행해보았다. 하지만 Attemping to start Apache app..이라고만 뜬 채 시작되지 않거나 에러가 발생했다. (환경: Window 10) Error1. Problem detected! Port 80 in use by "Unable to open process" with PID 4!...(생략) apache가 port 80을 사용하도록 설정되어 있는데 PID가 4인 프로세스가 사용중이라는 에러이다. 작업 관리자에서 PID가 4인 프로세스를 종료하려고 했지만 System에 관한 프로세스라 불가능했다. 그래서 xampp contorl-panel >> Config >> Service and ..

git pull을 하려니 local repository에 변경사항이 있어서 pull할 수 없다는 에러가 뜬다... 하지만 변경사항은 구체적으로 떠오르지 않는다... 변경사항을 확인했는데 굳이 add나 commit을 하고 싶지 않다... 1. local repository의 변경된 파일 확인 git status Changes to be committed - Staging Area에 있고 commit만 하면 되는 상태 Changes not staged for commit - Working Directory에서 modify되었으나 add되지 않은 상태 Untracked - Git이 track하지 않는 changes 2. 특정 파일의 변경된 내용 확인 git diff git log -p 3. add되지 않은 w..
Q. 수정 사항들을 local repository의 master branch에 바로 반영하고 싶지 않을 때는 어떻게 해야 할까? 새로운 branch를 생성하고 생성한 branch에서 수정한 후, 수정 사항들을 master branch에 merge한다. 1. 새로운 branch 생성 및 삭제 //branch 생성 git branch //branch 삭제 git branch -d //branch 강제 삭제 git branch -D 2. active(current) branch를 새로운 branch로 변경 active(current) branch란? local repository에 해당하는 branch branch를 변경하면 local repository와 git status는 해당 branch의 내용을 보여..

1. Git Repository 생성 "Git Repository란? git이 모든 변화를 추적하고 commit을 기록하는 디렉터리 . git이 숨겨진 파일로 존재함 Create a repo from Scratch ~ $ git init Clone an Existing Repository 주의! git repository안에 새로운 git repository를 만들 수 없다. ~ $ git clone 2. Git 상태 확인 git status git repository 내의 파일 상태 Changes to be committed: added but not commited changes Changes not staged for commit: not added Untracked: not followed by ..