일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Kubernetes
- 코테
- 리눅스
- programmers
- Lv 2
- mysql
- 프로그래머스
- 코딩테스트
- 우분투
- 파이썬
- 깃
- Linux
- ubuntu
- Python
- db
- DevOps
- docker
- LV 0
- 알고리즘
- Ai
- 정처기
- github
- 머신러닝
- 데이터베이스
- 쿠버네티스
- 자바
- 자료구조
- Java
- git
- 인공지능
Archives
- Today
- Total
목록one-hot encoder (1)
Myo-Kyeong Tech Blog
[AI / 데이터분석 ] 데이터 전처리 - Label Encoder와 One-Hot Encoder
Label Encoder Label Encoding은 문자 데이터를 숫자로 바꾸는 가장 기본적인 방법으로 각 유니크한 문자 데이터를 숫자 값으로 매핑하는 방법입니다. 예를 들어, Red, Blue, Green 3개의 색상이 있다고 있다고 가정해봅시다. Label Encoding을 적용하면 'Red'는 0, 'Blue'는 1, 'Green'는 2와 같은 숫자로 변환됩니다. ID 색상 1 Red 2 Blue 3 Green [Label Encoder] ID 색상 1 0 2 1 3 2 from sklearn.preprocessing import LabelEncoder #데이터 colors = ['Red', 'Blue', 'Green', 'Blue', 'Red'] # LabelEncoder 객체 생성 encode..
AI
2023. 5. 14. 22:02