반응형
import tensorflow as tf
x = tf.placeholder(tf.float32)
y = tf.cond(x<0, lambda : -x, lambda: x)
with tf.Session() as sess:
for i in [ -1, -2, -77, 0, 1, 99]:
print(sess.run(y, feed_dict={x:i}))
1.0 2.0 77.0 0.0 1.0 99.0
맞게 하는 건지는 모르겠지만 암튼 이렇게 하면 절대값은 나오더라.
tf.__version__ = 1.0.1
728x90
'프로그래밍 > AI:ML:DL' 카테고리의 다른 글
[GENSIM] "You must specify either total_examples or total_words, for proper job parameters updation (0) | 2018.04.03 |
---|---|
[KERAS] Live Loss Plot (0) | 2018.03.28 |
[TensorFlow] tensorflow 1.6.0 No module named '_pywrap_tensorflow_internal' 에러 (1) | 2018.03.22 |
[번역] 이동 중앙값 분해를 통한 비정상 탐지 Dectect Anomaly with Moving Median Decomposition (0) | 2018.03.12 |
[Tensorfow] 초간단 회귀모형 변형 (0) | 2017.05.16 |