首页 程序笔记 AUC is not defined when there is no positive class in the data (Parameter 'PosSample')

AUC is not defined when there is no positive class in the data (Parameter 'PosSample')

使用ML.NET训练模型后,使用测试数据评估模型,验证模型的性能。执行Evaluate方法时报错:AUC is not defined when there is no positive class in the data (Parameter 'PosSample')。

这个错误信息也不知道什么原因,调试检查了很久发现predictions对象的InputSchema多了一个column。

我是加载的txt文件作为数据源,每一列是","隔开的,可能因为某一列值里有空格,所以这里指定分隔符。

IDataView dataView = mlContext.Data.LoadFromTextFile<DayData>(_testDataPath, hasHeader: false);
// 增加separatorChar: ','参数,设置分隔符为 ","
IDataView dataView = mlContext.Data.LoadFromTextFile<DayData>(_testDataPath, hasHeader: false, separatorChar: ',');

这样问题就解决了。

3

站心网

使用ML.NET训练模型后,使用测试数据评估模型,验证模型的性能。执行Evaluate方法时报错:AUC is not defin..

为您推荐

无法加载文件或程序集 'XXXXX' 或其依赖项。访问被拒绝

遇到 “无法加载文件或程序集 'XXXXX' 或其依赖项。访问被拒绝” 错误时,通常是由于权限问题或文件夹、程序集引用配置不当所引起。下面是一些常见的原因及解决方法:1. 文件或程序集权限问题如果服务器或..

'gb2312' is not a supported encoding name. For information on defining a custom encoding

.NET Core使用HttpClinet抓取网页,使用Encoding.GetEncoding("gb2312").GetString(arr)方法获取网页内容时报错:'gb2312' is not a supported encoding name. For information on defining a custom encoding, see ..

C#把文本中的data:image转成图片

在C#中,要将文本中的 data:image 数据转换为图片,你需要执行以下步骤:解码 Base64 字符串: data:image URI 包含了图像的 Base64 编码数据,因此首先需要提取 Base64 部分,并对其进行解码。保存为图片文件: 解..

c++运行时报错误:there is a mismatch in alloc and dealloc

问题描述在运行一个c/c++的程序时,报如下错误:ERROR: AddressSanitizer: alloc-dealloc-mismatch (operator new [] vs operator delete)。代码如下:void DemoFunc(char *pBuf){char* val2 = new char[256];for (i..

C#中自定义class在调试时如何定制对象显示的内容

问题描述在C#中,单步调试程序时,鼠标指上去就可以看到对象的值,比如string类型,鼠标指上去就可以看到字符串的类容,而自定义的class,当鼠标指向对象时默认是看不到类的属性的值的,只能将类展开才能看到,有没..

C#正则表达式去除网页标签的id class style

要从HTML中去除所有标签的id、class和style属性,你可以使用正则表达式来实现。以下是一个简单的示例:using System;using System.Text.RegularExpressions;class Program{static void Main(){string htmlContent = ..

EF Core 8 (EF8) Contains报错:Microsoft.Data.SqlClient.SqlException (0x80131904): 关键字 'WITH' 附近有语法错误。

最近将原来.NET6的项目升级到.NET8,用的EF Core版本也相应升级到EF8版本,在查询数据的时候使用Contains运算符的地方报错了。Microsoft.Data.SqlClient.SqlException (0x80131904): 关键字 'WITH' 附近有语法错误。..

使用 Let's Encrypt 在 Ubuntu 22.04 上安装 CyberPanel

CyberPanel 是一个构建在 OpenLiteSpeed Web 服务器上的开源控制面板。它作为开源解决方案发布,整个团队都提供支持。 CyberPanel 提供一键式设置来安装流行的 Web 框架,例如 Joomla、WordPress、Drupal、Mautic 等..

git RPC failed; curl 18 transfer closed with outstanding read data remaining 是什么错误?

错误消息 "RPC failed; curl 18 transfer closed with outstanding read data remaining" 是与 Git 操作的网络传输相关的错误。这通常是由于网络问题引起的,可能是由于网络连接不稳定、网络防火墙配置问题、代理设..

System.ArgumentOutOfRangeException: Token 2000000 is not valid in the scope of module System.ModuleHandle. (Parameter 'typeToken')

运行.NET Core MVC站点的时候报错:System.ArgumentOutOfRangeException: Token 2000000 is not valid in the scope of module System.ModuleHandle. (Parameter 'typeToken')这个异常通常在 .NET 平台中出现,特别..

Qt编译报错:error: LNK1181: cannot open input file 'debugmain.obj'

问题描述拿到一个别人提供的Qt工程,编译时报错:error: LNK1181: cannot open input file ‘debugmain.obj’,Google上搜索了一下,找到问题的原因,这里记录备忘。解决办法我这个项目报这个错误的主要原因是项目的..

QT编译时报错 error: lnk1158: cannot run 'rc.exe'

问题描述拿到别人写的一个Qt程序,编译时报错: -1: error: lnk1158: cannot run ‘rc.exe’,折腾了一下,找到解决的办法如下。解决办法通过路径找到rc.exe,不过,这个有两个版本,一个是x86和x64。可以在windows中..

富文本编辑器里多个data:image图片上传

批量上传富文本编辑器中的多个 data:image 图片,一般需要以下步骤:提取 Data URI: 从富文本编辑器中获取内容,并提取所有的 data:image 图片的 Data URI。这可能需要使用正则表达式或其他方法来解析 HTML 并提取..

Qt编译C++报错:error: 'nullptr' was not declared in this scope

问题描述网上下载了一个Qt项目了的源码,在Linux中执行qmake,再执行make时编译报错:error: ‘nullptr’ was not declared in this scope,其中“nullptr”是C++中的关键字,这里居然找不到,在google中搜索了一下..

javascript中的function与class用法

当涉及到JavaScript中的函数和类时,它们是用来组织和结构化代码的重要工具。让我为你简要概括一下它们的用法:函数(Function)函数声明:function greet(name) {return `Hello, ${name}!`;}这是定义一个简单的函数..

解决ueditor编辑器复制微信文章section标签丢失class和style样式问题

在复制微信的文章格式到ueditor时发现section标签中的style和class属性丢失,严重影响美观。原文格式,排版清晰段落分明赏心悦目:复制到ueditor后的格式。。。这跟原文是没法比了于是打开代码模式,发现section的属..

飞飞cmsAccess denied for user 'root'@'localhost' (using password: YES)

[pfc]删除runtime以下目录的两个文件,同时再重新修改下config.php的权限为777试试runtime/~app.php~runtime.php[/pfc]

发表回复

返回顶部