Tensorflow linear classifier – example 1

December 20, 2019 admin 0

EN201220191421 Source of data: poliaxid In [1]: import pandas as pd import numpy as np import matplotlib.pyplot as plt df = pd.read_csv(‘c:/2/poliaxid.csv’, index_col=0) del df[‘nr.’] df.head(5) […]

Linear regression with TensorFlow

November 26, 2019 admin 0

Part one: Numpy method In [1]: import pandas as pd import tensorflow as tf import itertools   Source of data: https://archive.ics.uci.edu/ml/datasets/combined+cycle+power+plant   Combined Cycle Power […]