This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import print_function, division | |
| import numpy as np | |
| import tensorflow as tf | |
| import matplotlib.pyplot as plt | |
| num_epochs = 100 | |
| total_series_length = 50000 | |
| truncated_backprop_length = 15 | |
| state_size = 4 | |
| num_classes = 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # 절대 임포트 설정 | |
| from __future__ import absolute_import | |
| from __future__ import print_function | |
| # 필요한 라이브러리들을 임포트 | |
| import collections | |
| import math | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # Inception-v3 모델을 이용한 Image Classification | |
| # 절대 임포트 설정 | |
| from __future__ import absolute_import | |
| from __future__ import division | |
| from __future__ import print_function | |
| # 필요한 라이브러리들을 임포트 | |
| import os.path |