Guest User

Untitled

a guest
Feb 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3.  
  4. from __future__ import absolute_import, division, print_function, unicode_literals
  5.  
  6. # tensorflow와 tf.keras를 임포트합니다
  7. import tensorflow as tf
  8. from tensorflow import keras
  9.  
  10. # 헬퍼(helper) 라이브러리를 임포트합니다
  11. import numpy as np
  12. import matplotlib.pyplot as plt
  13.  
  14. print(tf.__version__)
Add Comment
Please, Sign In to add comment