Learn practical skills, build real-world projects, and advance your career

Movie Rating Predictor

Use the "Run" button to execute the code.

!pip install numpy pandas matplotlib seaborn plotly opendatasets jovian --quiet
import jovian
import opendatasets as od
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.impute import SimpleImputer
from sklearn.preprocessing import MinMaxScaler
from sklearn.preprocessing import OneHotEncoder
from sklearn.tree import DecisionTreeRegressor
from sklearn.ensemble import RandomForestRegressor
import joblib
# Execute this to save new versions of the notebook
jovian.commit(project="movie-rating-predictor")
jovian.commit()