An open API service indexing awesome lists of open source software.

https://github.com/wangta69/py_tensorflow


https://github.com/wangta69/py_tensorflow

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# tensorflow 이야기

## 기본
### 모델종류
[설명](basic/model.md)
### keras
[설명](basic/keras.md)
### activaion functions
[설명](basic/activation.md)

## 케라스 샘플
https://tensorflow.blog/케라스-딥러닝 참조 \
[movie review](keras_sample/movie_review.md)

## 패키지 인스톨
```
pip install numpy
pip install matplotlib
pip install scipy
pip install tensorflow
pip install python-mnist
```
## 간단한 예제
### LinearRegression 을 이용한 숫자 예측
from sklearn.linear_model import LinearRegression

[예제](linearregression_basic/README.md)
### Keras를 이용한 숫자 예측
[예제](tensorflow_keras_basic/README.md)

## Tensorflow 예제 - 초보자
### 기본 이미지 분류
https://www.tensorflow.org/tutorials/keras/classification?hl=ko
[예제](tutorial_classificaion/README.md)
### 기본 테스트 분류
https://www.tensorflow.org/tutorials/keras/text_classification?hl=ko
[예제](tutorial_text_classification/README.md)