[TensorFlow] 문자열 출력 Start

BioinformaticsAndMe









[TensorFlow] 문자열 출력

: TensorFlow 2.0 으로 'hello world' 문자열을 출력하는 간단한 예제

# 텐서플로우 라이브러리 임포트 import tensorflow as tf

# "hello world" 문자열을 가지는 Tensor 생성 (Tensor: 다차원배열)

hello_tensor = tf.constant("hello world") print(hello_tensor)

tf.Tensor(b'hello world', shape=(), dtype=string)

# Tensor 값에 접근하기 위해, numpy 형태로 변환하여 출력

print(hello_tensor.numpy())

b'hello world'

# Tensor 클래스 변환 (bytes → str)

print(hello_tensor.numpy().decode('utf-8'))

hello world




#Reference

1) https://github.com/aymericdamien/TensorFlow-Examples/tree/master/tensorflow_v2

2) https://colab.research.google.com/notebooks/mlcc/hello_world.ipynb






[TensorFlow] 문자열 출력 End

BioinformaticsAndMe

'Machine Learning' 카테고리의 다른 글

[TensorFlow] Linear Regression  (0) 2019.10.05
[TensorFlow] 기본 연산  (0) 2019.10.04
경사하강법 종류  (0) 2019.09.26
학습률 (Learning rate)  (0) 2019.09.24
경사하강법 (Gradient descent)  (0) 2019.09.18

+ Recent posts