
Data standardization – Tensorflow linear regression model
EN231220191405 Theoretical explanation The standardization of data for machine learning models involves the transformation of primary data so that their distribution has an average value […]
EN231220191405 Theoretical explanation The standardization of data for machine learning models involves the transformation of primary data so that their distribution has an average value […]
There is no excerpt because this is a protected post.
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) […]
EN121220190807 Practice makes perfect In [1]: import pandas as pd import tensorflow as tf import matplotlib.pyplot as plt Exercise 1: Perform the following equation on the […]
EN111220192126 Exercises on matrix operations in TensorFlow 1.4 Practice makes perfect In [1]: import pandas as pd import tensorflow as tf import matplotlib.pyplot as plt Exercise […]
There is no excerpt because this is a protected post.
[B2/1] How to survive on the Titanic? Long time I was thinking, that this sample is a something as any railway statistic or other theoretical […]
There is no excerpt because this is a protected post.
Parking Birmingham occupancy Source of data: https://archive.ics.uci.edu/ml/datasets/Parking+Birmingham In [35]: import pandas as pd df = pd.read_csv(‘c:/TF/ParkingBirmingham.csv’) df.head(3) Out[35]: SystemCodeNumber Capacity Occupancy LastUpdated 0 BHMBCCMKT01 577 61 […]
In the previous part, we tried to build a model by trying to explain the level of carbon monoxide pollution based on temperature and pressure. […]
We continue to learn how to build multiple linear regression models. This time we will build a model using the Tensorflow library. As before, the […]
Part 1. Preliminary data preparation AirQualityUCI Source of data: https://archive.ics.uci.edu/ml/datasets/Air+Quality In [1]: import pandas as pd df = pd.read_csv(‘c:/TS/AirQualityUCI.csv’, sep=’;’) df.head(3) Out[1]: Date […]
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 […]
Copyright © 2023 | WordPress Theme by MH Themes