Learning • Types of Machine Learning • Understand the problem • Data Collection and Preprocessing • Model selection and training • Model evaluation • Real life examples • Conclusion
pandas as pd import numpy as np import matplotlib.pyplot as plt from sklearn.model_selection import train_test_split from sklearn.preprocessing import StandardScaler from sklearn.linear_model import LinearRegression from sklearn.metrics import mean_squared_error