배터리
2020-08-24 10:07:15

2020/08/22

▼ more
딸아이는 아빠와 통화를 좋아한다.
2020-06-30 18:36:31

그래서 통화중인 휴대폰의 빨갛고 탐스러운 버튼을 어루만진다.

대화는 종결된다.

물론 아빠가 집에 있을때도 아빠에게 통화를 하기를 원하는 건 덤.

▼ more
the simplest t-sne example
2020-06-26 21:52:42

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()

▼ more
그럴수만 있다면 얼마나 좋을까.
2020-05-20 13:52:04

'엄마는 할머니되지마~나계속 이렇게 있을게~'- 큰딸

오늘은 일찍 퇴근해야겠다.

▼ more