배터리
2020-08-24 10:07:15
자동차
2020/08/22
▼ more
2020/08/22
그래서 통화중인 휴대폰의 빨갛고 탐스러운 버튼을 어루만진다.
대화는 종결된다.
물론 아빠가 집에 있을때도 아빠에게 통화를 하기를 원하는 건 덤.
reference url: https://scipy-lectures.org/packages/scikit-learn/auto_examples/plot_tsne.html
from matplotlib import pyplot as plt
plt.figure(figsize=(6, 5))
from sklearn.manifold import TSNE
tsne = TSNE(n_components=2, random_state=0) # I can not really undearstand 3-D images..
#a=list
a=np.array(a)
a.shape #(N, n)
b = tsne.fit_transform(a)
b.shape #(N, 2)
for bb in b:
plt.scatter(bb[0], bb[1])
plt.show()
'엄마는 할머니되지마~나계속 이렇게 있을게~'- 큰딸
오늘은 일찍 퇴근해야겠다.