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
- 형변환
- compile time constants
- Runtime constants
- const
- decimal
- 연산자
- 이코테
- classification problem
- 홍정모님
- 단항연산자
- Andrew Ng
- CLion
- algorithm
- coursera
- 나동빈님
- regression problem
- 프로그래밍
- 학습 알고리즘
- C++
- #endif
- Greedy
- 본즈앤올
- 기계학습
- Machine Learning
- 코드블럭 오류
- 기계학습 기초
- sizeof()
- #define
- standford University
- 코딩테스트
Archives
- Today
- Total
목록list shuffle (1)
wellcome_공부일기
폴더 내 파일 순서 섞기(random.shuffle)와 None 오류
분류 프로젝트를 진행하다가, 사용할 데이터들의 폴더 내 사진 순서를 바꾸고 싶어 random.shuffle을 사용했다. import random flist1 = os.listdir('/content/drive/MyDrive/Colab Notebooks/캡스톤/face_data') random.shuffle(flist1) flist2 = (os.listdir('/content/drive/MyDrive/Colab Notebooks/캡스톤/face_data')) print(flist1, '\n', flist2, '\n', flist1) # output #['Doutzen_1.png', 'kellan_lutz_2.png', '168918_190170081006982_7975089_n_2.png..
프로그래밍/Python
2021. 5. 17. 20:54