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