반응형
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 |
Tags
- 재귀함수
- web 용어
- broscoding
- classification
- 데이터전문기관
- web 사진
- 웹 용어
- postorder
- 머신러닝
- KNeighborsClassifier
- Keras
- discrete_scatter
- 자료구조
- web 개발
- web
- C언어
- html
- mglearn
- paragraph
- CES 2O21 참가
- java역사
- tensorflow
- cudnn
- vscode
- inorder
- bccard
- pycharm
- 대이터
- 결합전문기관
- CES 2O21 참여
Archives
- Today
- Total
bro's coding
sklearn.datasets.load_digits 본문
반응형
import numpy as np
import matplotlib.pyplot as plt
from sklearn.datasets import load_digits
mnist=load_digits()
display(mnist.keys())
display(dir(mnist))
plt.figure(figsize=[10,10])
for i in range(100):
plt.subplot(10,10,i+1)
plt.imshow(mnist.images[i],cmap='gray_r')
plt.axis('off')
반응형
'[AI] > python.sklearn' 카테고리의 다른 글
sklearn.model_selection.cross_val_score (0) | 2020.04.24 |
---|---|
sklearn.manifold. TSNE (0) | 2020.04.23 |
sklearn.neighbors.KNeighborsClassifier.mnist (0) | 2020.04.23 |
sklearn.PCA(2)를 이용한 digit data visualization (0) | 2020.04.23 |
sklearn.decomposition.PCA.picture.recover (0) | 2020.04.22 |
sklearn.datasets.fetch_lfw_people (0) | 2020.04.22 |
sklearn.naive_bayes.BernoulliNB (0) | 2020.04.21 |
sklearn.ensemble .GradientBoostingClassifier (0) | 2020.04.21 |
Comments