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
- pandas row 제거
- 선형함수 딥러닝
- pandas 조건
- EDA 추천 파이썬
- EDA in python
- Graph Theory
- 경우의 수 파이썬
- 일부 레이어 고정
- sktime 튜토리얼
- 비선형함수
- pandas 특정 조건 열 제거
- sktime
- sktime tutorial
- Skip connection
- weight 일부 고정
- sktime 예제
- Prompt Tuning for Graph Neural Networks
- layer 일부 freeze
- pytorch dataset split
- pandas 행 제거
- 판다스 조건
- Does GNN Pretraining Help Molecular Representation?
- pandas
- molecular representation
- 모델 freeze
- pytorch 데이터셋 나누기
- 비선형함수 딥러닝
- pretraining
- python 경우의 수
- 시계열 라이브러리
Archives
- Today
- Total
목록경우의 수 파이썬 (1)
MoonNote
파이썬(Python)에서 모든 조합 구하기
from itertools import combinations features = ['GzmB1', 'age', 'Mean_pack_years', 'ANC', 'ALC', 'NLR', 'CRP', 'CEA', 'sex', 'smoking'] features_combination = [] # feature의 모든 조합을 구하기(1~10개) for i in range(1, len(features) +1 ): features_combination += list(combinations(features, i)) print(features_combination)
Study/Python
2021. 7. 14. 10:51