我能够为Random Forest
分类器中的每一行获取单独的预测值。
有没有办法获得每一行的预测分数?
我能够获得整个数据的预测准确度分数。但我每行都需要它。
答案 0 :(得分:0)
只需比较数组就可以轻松完成。无需一行一行地进行。
export interface ResponseModel {
statusCode: number;
other: string;
thing: string;
}
this.http.post<ResponseModel>(url, loginModel).subscribe(result => {
// Where you can consume result as ResponseModel type.
});
False表示在这种情况下预测是错误的。