Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Liblinear 实现为 Accord.Net 的分类(任何模型)指定类权重。此外,我可以将自动平衡用于类似于 sciKit.Learn 的实现的不平衡数据。
提前致谢
Accord.NET 中几乎所有的 SVM 学习算法都提供 NegativeWeight 和 PositiveWeight 属性,您可以将它们设置为数据中负数和正数的比率。例如,如果每个正例有 2 个负例,则可以将 NegativeWeight 设置为 2,将 PositiveWeight 设置为 1。
此外,您还可以将 UseClassProportions 属性设置为 true,从而实现类似于 Scikit-learn 实现的行为。