import os # Read in the train and test sets. os.chdir("/content/drive/My Drive/Colab Notebooks/Toxic Comments Data") train_df = pd.read_csv("train.csv") test_df = pd.read_csv("test.csv") # Look at a few entries from the dataset train_df.head()