with replacement1 [Python] 리스트(튜플, 배열)에서 비복원(without replacement) 추출과 복원(with replacement) 추출하기 머신러닝을 구현함에 있어서 학습 데이터를 재추출(Resampling)할 필요가 있었는데 파이썬에서 재추출하는 방법이 있어서 적어두려고 한다. 내가 필요했던 것은 복원(with replacement) 추출이었는데 정리하는 김에 비복원 추출 방법도 적어둬야겠다. 나중에 필요할 수도 있으니까. 1. 비복원(without replacement) 추출 2. 복원(with replacement) 추출 1. 비복원(without replacement) 추출 비복원 추출(without replacement) 방법은 내장 모듈인 random과 외장모듈인 numpy를 이용한 방법 2가지가 있다. 각각에 대해서 알아보자. 1) random.sample을 이용하는 방법 random.sample을 이용하면 리스트(또는 튜플)에.. 2022. 5. 7. 이전 1 다음