Support Vector Machines for Multiple-Instance Learning

本文介绍了如何运用支持向量机(SVM)解决多实例学习(MIL)问题,提出mi-SVM和MI-SVM算法。在MIL中,学习者处理的是包含多个未单独标记实例的标签包。文章讨论了MIL的基本概念,并通过数学描述解释了如何在图像样本中应用这些算法来区分含人与不含人的图像。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

引用次数700+
文章中利用SVM解决multiple-instance learning问题,提出了mi-SVM及MI-SVM算法。

1、什么是multiple-instance learning?
Multiple-instance learning (MIL) is a variation on supervised learning. Instead of receiving a set of instances which are individually labeled, the learner receives a set of labeled bags, each containing many instances. In the simple case of multiple-instance binary classification, a bag may be labeled negative if all the instances in it are negative. On the other hand, a bag is labeled positive if there is at least one instance in it which is positive. From a collection of labeled bags, the learner tries to either (i) induce a concept that will label individual instances correctly or (ii) learn how to label bags without inducing the concept(来自Wiki)
数学描述:
假设我们有一些图像样本,图像中含有人的图片为正样本,不含有人的为负样本。整个图像就可以视为一个bag,假设我们有m个图像,用 B1,B2,...,Bm 代表这些图像,用 YI 表示 BI 的正负。在这些图像中,我们利用滑动的矩形窗切取小的图像,从而可以得到n个pattern xi ,那么 BI={

### 支持向量机学术文献引用 对于支持向量机(Support Vector Machines, SVMs)的学术研究,了解如何高效阅读并引用相关论文至关重要。为了有效获取和理解SVM的相关文献,可以遵循一些特定策略[^1]。 #### 如何寻找高质量的支持向量机文献 利用数据库如Google Scholar、IEEE Xplore以及ACM Digital Library等平台可以帮助找到大量有关SVM的研究成果。通过这些资源能够访问到原始出版物及其引用情况,从而更好地把握领域内的最新进展和技术细节。 #### 关键期刊与会议 某些顶级国际会议和期刊经常发表高水平的支持向量机研究成果,例如: - **NeurIPS (Conference on Neural Information Processing Systems)**:涵盖了机器学习各个方面的广泛主题,包括但不限于SVM理论发展。 - **Journal of Machine Learning Research (JMLR)**:作为开放存取期刊之一,在线提供详尽的技术报告和支持向量方法论文章。 - **Pattern Recognition Letters** 和 **Machine Learning Journal** :专注于模式识别及分类算法方面的工作,其中也包含了众多关于改进传统SVM性能的文章。 #### 文献管理工具的应用 采用EndNote或者Zotero这样的文献管理系统有助于整理收集来的资料,并自动生成符合不同出版社要求格式的标准参考列表。这不仅提高了工作效率还减少了手动输入错误的可能性。 ```python import scholarly def search_svm_papers(): query = 'Support Vector Machines' results = [] for item in scholarly.search_publication(query): title = item['bib']['title'] authors = ', '.join(item['bib'].get('author', [])) year = str(item['bib'].get('pub_year', 'N/A')) result_str = f"{title} ({year}) by {authors}" results.append(result_str) return results[:5] print(search_svm_papers()) ``` 该Python脚本展示了如何使用`scholarly`库来自动化搜索前五篇与支持向量机相关的热门论文摘要信息。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值