일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프라미스
- 자바스크립트 비동기
- cs231n
- 커널생성
- 파이썬
- 협업필터링
- feynman's restaurant
- 키분배 알고리즘
- rust
- tcp
- 비동기 프로그래밍
- Hits
- 머신러닝
- 러스트
- 딥러닝
- 인공지능
- pagerank
- 파인만의 식당문제
- brew 권한
- recommender
- Git
- Readme image
- 커널제거
- 컴퓨터 보안 키분배
- 인페인팅
- 페이지랭크
- image restoration
- computer vision
- react-cookie
- 메세지인증코드
- 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],..