일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pagerank
- 커널제거
- computer vision
- image restoration
- 딥러닝
- 자바스크립트 비동기
- brew 권한
- 파이썬
- Git
- 인페인팅
- 키분배 알고리즘
- 커널생성
- Hits
- feynman's restaurant
- 메세지인증코드
- 비동기 프로그래밍
- react-cookie
- tcp
- 컴퓨터 보안 키분배
- 파인만의 식당문제
- rust
- 인공지능
- 협업필터링
- 페이지랭크
- 프라미스
- recommender
- 머신러닝
- 러스트
- cs231n
- Readme image
- Today
- Total
목록파이썬 (2)
Worth spreading
argparse에서 parser 사용시 다음과 같은 에러 발생 usage: ipykernel_launcher.py [-h]ipykernel_launcher.py: error: unrecognized arguments: --lrAn exception has occurred, use %tb to see the full traceback. SystemExit: 2 /Users/username/lib/python3.6/site-packages/IPython/core/interactiveshell.py:2971: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D. warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1..
numpy.repeat(a, repeats, axis=None) a를 repeats만큼 반복한 결과를 출력.axis의 값으로 repeat이 이루어질 차원(dimension)을 지정해준다 Example1234567891011121314151617181920212223np.repeat(3, 4) >>> array([3, 3, 3, 3]) x = np.array([[1,2],[3,4]])np.repeat(x, 2) >>> array([1, 1, 2, 2, 3, 3, 4, 4]) np.repeat(x, 3, axis=1) >>> array([[1, 1, 1, 2, 2, 2], [3, 3, 3, 4, 4, 4]]) np.repeat(x, [1, 2], axis=0) >>> array([[1, 2], [3, 4],..