print函数移位输出结果
print function shifts the output result
我不知道标题中是否明确但我想打印一个classification_report
。
我想这样写它属于Test set
:
print(f'Test classification report :{classification_report(y_test, y_pred)}')
但是它给出了这个输出,其中 4 个列名称被移动了:
Test classification report : precision recall f1-score support
0 0.68 0.50 0.57 187
1 0.79 0.89 0.84 407
accuracy 0.77 594
macro avg 0.74 0.69 0.71 594
weighted avg 0.76 0.77 0.76 594
谢谢
\n
是要走的路
它添加了一个新行
我不知道标题中是否明确但我想打印一个classification_report
。
我想这样写它属于Test set
:
print(f'Test classification report :{classification_report(y_test, y_pred)}')
但是它给出了这个输出,其中 4 个列名称被移动了:
Test classification report : precision recall f1-score support
0 0.68 0.50 0.57 187
1 0.79 0.89 0.84 407
accuracy 0.77 594
macro avg 0.74 0.69 0.71 594
weighted avg 0.76 0.77 0.76 594
谢谢
\n
是要走的路
它添加了一个新行