【发布时间】:2018-04-06 01:57:48
【问题描述】:
我是 AI 新手,想进行以下练习。您能否建议使用python实现它的方法:
场景 - 我有一些公司的业务列表如下:
1. AI
2. Artificial Intelligence
3. VR
4. Virtual reality
5. Mobile application
6. Desktop softwares
并希望将它们分类如下:
Technology ---> Category
1. AI ---> Category Artificial Intelligence
2. Artificial Intelligence ---> Category Artificial Intelligence
3. VR ---> Category Virtual Reality
4. Virtual reality ---> Category Virtual Reality
5. Mobile application ---> Category Application
6. Desktop softwares ---> Category Application
即当我收到类似 AI 或 Artificial Intelligence 之类的文本时,它必须将 AI 和 AI 识别为相同,并将两个关键字都放在 AI 类别下.
我遵循的当前方法是使用查找表,但我想使用 python 对上述输入应用 TEXT CLASSIFICATION 技术/业务,我可以隔离技术而不是使用查找表。
请建议我任何相关的方法。
【问题讨论】:
-
你可以训练多少数据?换句话说,你有很多数据吗?
-
大约1000条记录
标签: python machine-learning artificial-intelligence text-mining text-analysis