首页 \ 问答 \ 测试聚类算法的最佳方法(Best way to test a clustering algorithm)

测试聚类算法的最佳方法(Best way to test a clustering algorithm)

测试聚类算法的最佳方法是什么? 我正在使用具有停止标准的凝聚聚类算法。 我如何测试集群是否正确形成?


What is the best way to test a clustering algorithm? I am using an agglomerative clustering algorithm with a stop criterion. How do I test if the clusters are formed correctly or not?


原文:https://stackoverflow.com/questions/10278581
更新时间:2022-03-26 06:03

最满意答案

是的,POI 3.5(尽管强烈建议您使用3.9,或者等待一周左右获得3.10测试版)

POI使用官方ISO XML模式文件来处理XML文件,因此默认情况下使用严格(官方)表单。 两者之间并没有太大的不同,但是如果存在重要的差异,POI将会使用代码来跳过低级XML跳过模式通常所说的内容。


Yes, and POI 3.5 (though you'd be strongly advised to use 3.9, or wait about a week for a 3.10 beta)

POI uses the official ISO XML schema files to process the XML files, so by default works with the strict (official) form. There's not that much different between the two, but where there is such a difference that matters, POI will have code to munge the low level XML skipping what the schema would normally say.

相关问答

更多
  • 测试结果在我的机器上: HSSF:2秒 SXSSF:5秒 XSSF:27秒 机器规格: CPU: Intel i3-2100, 3.10 GHz, 4-cores RAM: 16GB OS: Windows 7 64bit JDK: 1.7.0_76 我进行了分析,发现由于xmlbeans和poi-ooxml-schemas库中的同步方法, xmlbeans速度很慢。 您可以通知poi开发人员并要求检查此案例。 Test results on my machine: HSSF: 2 sec SXSSF: ...
  • 可以按CTRL-ALT-F9手动在Excel中强制重新评估所有公式。 这里有个诀窍让它在工作簿打开时自动运行。 将以下内容添加到您的公式中: +(NOW()*0) 例如,我的SUMPRODUCT在上面变成了 =SUMPRODUCT((DS!B:B="IN_THIS_ONLY")*(DS!D:D="New trade"))+(NOW()*0) 这工作! Excel现在重新计算我公开的特殊公式单元格。 原因是NOW()是一个易失性函数。 这里是我学习这个的地方: http : //msdn.microsof ...
  • 对于什么值得,Herb Sutter写了一篇关于这个问题的文章,在评论中有一个很好的讨论: http://herbsutter.com/2010/03/03/where-can-you-get-the-iso-c-standard-and-what-does-open-standard-mean/ 如他所说,“开放”并不一定意味着“无成本”。 对于有限财务手段的学生或其他人可能想要免费版本的文件,请注意: 许多学生可能想要的参考(甚至被要求访问)不是免费的 对于大多数工作,标准根本不是一个要求 - 有大量免 ...
  • 我是ISO 14496-10或ITU-T h.264。 I is ISO 14496-10 or ITU-T h.264.
  • 是的,POI 3.5(尽管强烈建议您使用3.9,或者等待一周左右获得3.10测试版) POI使用官方ISO XML模式文件来处理XML文件,因此默认情况下使用严格(官方)表单。 两者之间并没有太大的不同,但是如果存在重要的差异,POI将会使用代码来跳过低级XML跳过模式通常所说的内容。 Yes, and POI 3.5 (though you'd be strongly advised to use 3.9, or wait about a week for a 3.10 beta) POI uses th ...
  • 不,Android目前不提供ISO 15693主机卡仿真的任何API支持。 通过单线协议(+ HCI)支持基于UICC的卡仿真的设备可能支持专有(?)扩展,以使UICC仿真ISO 15693,但通常情况并非如此(请注意,这将是设备制造商特定的以及超出AOSP目前提供的范围)。 No, Android currently does not offer any API support for ISO 15693 host card emulation. Devices that support UICC-bas ...
  • 任何人都可以向我建议我应该去哪一个? Apache POI和Aspose有哪些限制? 这是非常困难和普遍的问题,只能有非常普遍的答案。 每个软件项目都有不同的要求和功能。 对于每个项目来说,使用第三方组件的可行性很可能也不同。 要选择不同的第三方很困难,因为您需要做更多或更少的事情 需求评估(哪个产品符合您的要求或者紧密满足) 在购买产品之前和之后看看客户支持有多好 第三方产品的功能比较 找到多少稳定的产品。 检查他们发布了多少个版本。 新版本有错误修复,新功能? 独立来源的任何奖项 API和文档的总体可用 ...
  • 您现在看到的版本是已完成批准的规范。 它不再是草案了。 他们在2011年9月发布的“完成的规范”中发表了“维基百科中提到的是他们发布完成的规范时,以及当它正式命名为”C ++ 11“时。 在此之前,当它仍然是草稿时,它被称为C ++ 0x。 另见: http : //www2.research.att.com/~bs/C++0xFAQ.html The version you see now is the finished ratified specification. It is no longer a ...
  • 我们当然可以在Android中移植Apache POI API。 我做的示例代码是在Apache POI的帮助下计算功率点演示中的幻灯片数量。 We can certainly port Apache POI API in Android. The example code that i made is to count the number of slides in a power point presentation with the help of Apache POI.
  • 我同意中心答案,但我想添加几行代码。 您说您正在使用XSSF实现。 因此,对于要保存的工作簿,请执行以下更改:更改XSSFWorkbook x = new XSSFWorkbook(); 到Workbook x = new HSSFWorkbook(); 从org.apache.poi.ss.usermodel.Workbook;导入Workbook的位置org.apache.poi.ss.usermodel.Workbook; 同样改变XSSFRow实例化 XSSFRow r = newXSSF(); ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)