This is the method for running it in the
Colabenvironment.
-
Download the preprocessed necessary datasets from
datasetsdirectory. -
Upload the files to be used in the root directory of Google Drive.
-
Mount
Google DriveinGoogle Colab.from google.colab import drive drive.mount('/gdrive', force_remount=True)
-
Retrieve a CSV file from
Google Driveand split it into X and y values.import pandas as pd data = pd.read_csv('/gdrive/MyDrive/{file_name}') X = data.iloc[:, :-1] y = data.iloc[:, -1]
-
Proceed with the experiment by executing the given code in sequence.
