https://github.com/wangta69/py_tensorflow
https://github.com/wangta69/py_tensorflow
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wangta69/py_tensorflow
- Owner: wangta69
- Created: 2021-12-20T08:29:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-25T07:06:46.000Z (over 3 years ago)
- Last Synced: 2025-02-05T05:29:18.720Z (4 months ago)
- Language: Python
- Size: 357 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)