바뀜

756 바이트 추가됨 ,  2021년 4월 27일 (화) 08:17
118번째 줄: 118번째 줄:  
|
 
|
 
|
 
|
 +
|}
 +
 +
=== 활용 ===
 +
{| class="wikitable"
 +
!의도
 +
!설명
 +
!방법
 +
|-
 +
|데이터 시각화
 +
|TensorBoard. 로그데이터를 저장할 파일을 만들고 명령줄에서 <code>tensorboard --logdir=경로</code> 를 넣어주면 특정 포트에서 실행한다.
 +
2세대 언어는 이것과 다를텐데...
 +
|<syntaxhighlight lang="python">
 +
import tensorflow as tensorflow
 +
 +
tb = tf.summary.FileWriter("log_dir", graph=)
 +
</syntaxhighlight>
 +
|-
 +
|데이터 다운
 +
|MNIST에서 제공하는 데이터 따위를 손쉽게 다운받을 수 있다.
 +
|<syntaxhighlight lang="python">
 +
from tensorflow.examples.tutorials.mnist import input_data  # 손글씨 분류데이터를 받아온다.
 +
 +
DB = input_data.read_data_sets('저장경로/', one_hot=True)
 +
</syntaxhighlight>
 
|}
 
|}
 
= 에러 =
 
= 에러 =