I'm a beginner to machine learning and scikit-learn so this might be a stupid question..
I'm trying to do something like this:
features = [['adam'], ['james'], ['amy']] labels = ['hello adam', 'hello james', 'hello amy'] clf = clf.fit(features, labels) print clf.predict(['john']) # This should give out 'hello john' Is this possible using scikit-learn?
Thanks in advance!