Deep Learning & Machine Learning/강좌&예제 코드2018. 8. 30. 22:35예제로 배우는 텐서플로우 강좌 - 5. Linear Regression
텐서플로우로 구현한 Linear Regression입니다. 다음 사이트에 있는 텐서플로우 예제들을 공부한 결과를 비정기적으로 올릴 예정입니다.https://github.com/aymericdamien/TensorFlow-Examples 텐서플로우 2.0에서 텐서플로우 1.x 코드를 실행하는 방법을 설명합니다. Tensorflow 2.0에서 Tensorflow 1.x 코드 실행하기https://webnautes.tistory.com/1393 # 수정 및 주석 : webnautes from __future__ import print_function import tensorflow as tf import numpy # 파이썬 리스트로 제공되는 입력을 NumPy 배열로 바꾸기 위해 사용됩니다. import ma..