IISPL
Intelligent Information & Signal Procesing Lab.
Dept. of Computer Engineering, Hanbat National University, South Korea
[
로그인
]
Lab. Info.
About
Services
About me
Research
Members
Projects
IRP
Course
LecturelList
Schedule
Student list
Info.
Lecture Board
LabInfo
Membership
Log in
Regist
Modify
Find account
Gallery
Learning Gallery
YJK'S Gallery
Links
Mypage
Sechedule
커뮤니티
게시판전체
Python
Python/TensorFlow
NOTICE
자유게시판
강좌게시판
WEB-PROG
DP 알림판
C.P.
WebSC
SR Board(V)
OS전체
COMPILER
SSE
DSP
Multimedia
C#
Notice
데이터로표현하는세상
CMPLg RPT
방명록
자료모음
LAB Board
Python/TensorFlow
제목:
Tensorflow 2.0
956 김윤중
import tensorflow as tf
Tensorflow 2.0 변경된 점들
https://provia.tistory.com/78
eager
https://www.tensorflow.org/guide/eager
tf.executing_eagerly() #True #텐서플로 2.0에서 즉시 실행은 기본으로 활성화되어 있습니다.
#일부 모델은 즉시 실행을 활성화한 경우 추가연산비용(overhead)이 증가한 경우도 있습니다.
x = [[2.]]
m = tf.matmul(x, x)
print("hello, {}".format(m)