I have the following datasets... dataset
I have load the data using this
import numpy as np
import pandas as pd
input_file = "C:/Users/User/Documents/R/exp.csv"
df = pd.read_csv(input_file, header = 0)
Now, I am trying to do this...
classifier = nltk.NaiveBayesClassifier.train(labeled_featuresets)
How can i reach there ?