我想将句子分类为正面,负面或中立。我有用java编写的代码,但我不知道如何使用我的文件的代码。在上面的代码中,我应该使用我的文件,每个句子的结果应该是积极的,消极的和中立的。请指导我。
In [4]: def test(x): return x
In [5]: tmp.iloc[0]
Out[5]:
item 1.0
score 0.0
Name: 0, dtype: float64
In [6]: tmp.apply(test, axis=1)
Out[6]:
item score
0 1.0 0.0
1 2.0 0.0
2 3.0 0.0
}