A classification model to detect whether a piece of news is "REAL" or "FAKE".
The dataset we will use for this is a csv file named 'news.csv'. It has three columns namely, Title, Text and Labels, and 6,335 examples/rows.
To install necessary libraries needed for this project:
-
First open Terminal/Command Line.
-
Run the following command
pip3 install pandas sklearn
-
Installation should be complete.
-
To verify whether the installation is correct and/or to view information about the installation run the following command
pip3 show pandas sklearn