반응형
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
- 추천 시스템
- 머신러닝
- 백준
- Support Vector Machine
- SGD
- CPP
- logistic regression
- CNN
- cs231n
- 파이썬
- Unsupervised learning
- recommender system
- 컴퓨터 비전
- OpenGL
- 딥러닝
- 비용함수
- 컴퓨터 그래픽스
- Regularization
- 인공지능
- neural network
- 로지스틱 회귀
- Vision
- pre-trained
- 신경망
- C++
- petal to metal
- 그래픽스
- Computer Vision
- SVM
- Kaggle
Archives
- Today
- Total
목록Python (1)
kwan's note
백준 - 14889번: 스타트와 링크 파이썬
www.acmicpc.net/problem/14889 14889번: 스타트와 링크 예제 2의 경우에 (1, 3, 6), (2, 4, 5)로 팀을 나누면 되고, 예제 3의 경우에는 (1, 2, 4, 5), (3, 6, 7, 8)로 팀을 나누면 된다. www.acmicpc.net 난이도 실버3: 직전에 올렸던 permutation과 combination을 구현해서 작성한 코드이다. 실질적으로는 combination만 사용하였다. def permutation(arr, r): used = [0]*len(arr) per2return=[] def generate(item, used): if len(item) == r: per2return.append(item.copy()) return # 3. for i in ra..
Algorithm/python
2021. 4. 26. 00:04