用 AI 驱动的类别建议革新商标创建
发布: (2026年3月1日 GMT+8 04:01)
4 分钟阅读
原文: Dev.to
Source: Dev.to
概览
通过在我们庞大的数百万条 USPTO 商标记录数据库上微调自定义大型语言模型(LLM),我们开发了业内最准确、高性能的商标类别建议工具。
商标注册中最棘手的环节之一是确定正确的尼斯分类。选择错误的类别可能导致申请延误、官方行动,甚至被完全驳回。为了解决这一问题,我们推出了 /v1/suggestClass 接口——一个 AI 驱动的引擎,旨在弥合业务描述与 USPTO 认可分类之间的差距。
工作原理
/v1/suggestClass 端点利用先进的自然语言处理(NLP)技术来分析您的业务背景。不同于简单的关键词匹配,引擎能够理解您商品或服务的意图和性质,并提供带有置信度分数的类别推荐。
必需参数
您需要提供以下 一个 参数;提供更多上下文可获得更高的精度。
| 参数 | 描述 |
|---|---|
description(推荐) | 对您业务活动的纯文本叙述。这是 AI 最强大的输入。 |
keyword | 特定的品牌名称或行业术语。 |
owner | 实体的名称,使 AI 能够分析历史备案以获取相似上下文。 |
serial_number | USPTO 序列号,用于查找相似或相关的分类。 |
提示
- 2–3 句的业务描述通常能提供最高的 “High” 置信度匹配。
- 使用
confidence字段决定是自动选择类别还是标记为人工审查。 - 组合参数(例如同时使用
keyword和description)有助于 AI 在服务模型的同时理解品牌上下文。
示例:茶庇护所
请求上下文
description: "Step into a sanctuary where rich, artisanal teas from around the world meet a warm, cozy ambiance..."
AI 推荐
{
"recommendations": [
{
"class_code": "30",
"description": "Teas and infusions are specifically listed in Class 30.",
"confidence": "High",
"official_description": "Coffee, tea, cocoa... yeast, baking-powder; salt, seasonings, spices..."
},
{
"class_code": "43",
"description": "The description mentions a 'sanctuary' with a 'cozy ambiance', strongly suggesting a cafe or restaurant service.",
"confidence": "High",
"official_description": "Services for providing food and drink; temporary accommodation."
}
]
}
示例:TrademarkSearch 关键字
请求上下文
keyword: "TrademarkSearch"
AI 推荐
{
"recommendations": [
{
"class_code": "35",
"description": "Services related to business management, advertising, and commercial information, which includes trademark search services.",
"confidence": "High"
},
{
"class_code": "45",
"description": "Legal services, including intellectual property services and trademark registration.",
"confidence": "Medium"
}
]
}
使用指南
- /v1/suggestClass 接口是高级实用工具。由于它在实时 AI 推理中使用了大量计算资源,每次调用会消耗 10 倍积分,相较于标准搜索接口。
- 为获得最佳结果,请优先提供详细描述,但精心挑选的关键词仍能产生有价值的建议。
- 将置信度分数纳入工作流,以实现对高置信度结果的自动选择,并将低置信度结果转交人工审查。
好处
- 降低用户摩擦 – 申报人可立即获得准确的类别建议。
- 最小化分类错误 – 减少因类别错误导致的延误或被拒风险。
- 改进申报工作流 – 将类别建议无缝集成到您的应用流程中,提升非专业用户的使用体验。