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
- localization
- docker
- I18N
- gettext_windows
- AI
- 국제화
- gettext
- internationalization
- coursera
- andrew ng
- deeplearning.ai
- 현지화
- Python
Archives
- Today
- Total
JMANI
Data Scaler 본문
Normalizer
row(행)마다 정규화
유클리드 거리가 1이 되도록 조정
from sklearn.preprocessing import Normalizer
X = [[4, 1, 2, 2],
[1, 3, 9, 3],
[5, 7, 5, 1]]
transformer = Normalizer().fit(X) # fit does nothing.
transformer
transformer.transform(X)
'AI' 카테고리의 다른 글
YOLOX: Exceeding YOLO Series in 2021 (0) | 2022.05.26 |
---|---|
Variational Autoencoders by 이활석(NAVER) (0) | 2021.11.04 |
Comments