Dear Group,
I am trying to study NLTK Naive Bayes Classifier source code,
as given in,
# Natural Language Toolkit: Naive Bayes Classifiers
#
# Copyright (C) 2001-2012 NLTK Project
# Author: Edward Loper <
edl...@gradient.cis.upenn.edu>
I am using Python2.7 with Windows 7.
Here, I could import the following files,
from collections import defaultdict
from nltk.probability import FreqDist, DictionaryProbDist, ELEProbDist, sum_logs
I can import even,
from nltk import ClassifierI
but I could not,
from api import ClassifierI
If you can kindly let me know how should I do it?
Regards,
Subhabrata Banerjee.