2
我是一個初學者machine learning
和scikit-learn
所以這可能是一個愚蠢的問題..瞭解,並將其應用在新的數據
我試圖做這樣的事情:
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'
這可能使用scikit學習?
在此先感謝!