Python2/정리
-
텐서플로 tf.cast 함수 사용법Python2/정리 2019. 3. 13. 13:17
tf.cast 함수는 보통 조건에 따른 True, False 의 판단 기준에 따라 True 면 1, False 면 0을 반환한다.즉, tf.cast("조건")조건에 따라 1 또는 0 이 반환된다.ex) x라는 변수값이 0.5 이상이면 1, 0.5 미만이면 0을 반환하고 싶을때 import tensorflow as tfx = tf.constant([-1, 3.5], tf.float32)c = tf.cast(x>0.5, tf.float32)sess = tf.Session()y = sess.run(c)print(y) > [ 0. 1. ]
-
pyplot 에서 그림 여러개 그리는법Python2/정리 2019. 3. 12. 16:11
한 화면에 행렬을 맞춰 그림을 여러개 그리고 싶을 때가 있다.subplot(abc) 함수를 이용하면된다.여기서 abc는a는 행 개수b는 열 개수c는 순서로 입력하면 된다. import matplotlib.pyplot as pltimport numpy as npx = np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])plt.subplot(221)plt.plot(x, x)plt.subplot(222)plt.plot(x, x**2)plt.subplot(223)plt.plot(x, x**3)plt.subplot(224)plt.plot(x, x**4)plt.show()