Expand entity type synonyms for better graph node categorization
This commit is contained in:
parent
bc893db8ed
commit
bdb29b0497
1 changed files with 23 additions and 3 deletions
|
|
@ -25,6 +25,8 @@ const TYPE_SYNONYMS: Record<string, string> = {
|
||||||
'model': 'concept',
|
'model': 'concept',
|
||||||
'project': 'concept',
|
'project': 'concept',
|
||||||
'condition': 'concept',
|
'condition': 'concept',
|
||||||
|
'rule': 'concept',
|
||||||
|
'law': 'concept',
|
||||||
'概念': 'concept',
|
'概念': 'concept',
|
||||||
'对象': 'concept',
|
'对象': 'concept',
|
||||||
'类别': 'concept',
|
'类别': 'concept',
|
||||||
|
|
@ -32,6 +34,8 @@ const TYPE_SYNONYMS: Record<string, string> = {
|
||||||
'模型': 'concept',
|
'模型': 'concept',
|
||||||
'项目': 'concept',
|
'项目': 'concept',
|
||||||
'条件': 'concept',
|
'条件': 'concept',
|
||||||
|
'规则': 'concept',
|
||||||
|
'法律': 'concept',
|
||||||
|
|
||||||
'method': 'method',
|
'method': 'method',
|
||||||
'process': 'method',
|
'process': 'method',
|
||||||
|
|
@ -39,33 +43,46 @@ const TYPE_SYNONYMS: Record<string, string> = {
|
||||||
'过程': 'method',
|
'过程': 'method',
|
||||||
|
|
||||||
'artifact': 'artifact',
|
'artifact': 'artifact',
|
||||||
'technology': 'technology',
|
'technology': 'artifact',
|
||||||
'tech': 'technology',
|
'tech': 'artifact',
|
||||||
|
'product': 'artifact',
|
||||||
'equipment': 'artifact',
|
'equipment': 'artifact',
|
||||||
'device': 'artifact',
|
'device': 'artifact',
|
||||||
'stuff': 'artifact',
|
'stuff': 'artifact',
|
||||||
|
'component': 'artifact',
|
||||||
|
'material': 'artifact',
|
||||||
|
'chemical': 'artifact',
|
||||||
'weapon': 'artifact',
|
'weapon': 'artifact',
|
||||||
'arms': 'artifact',
|
'arms': 'artifact',
|
||||||
'人工制品': 'artifact',
|
'人工制品': 'artifact',
|
||||||
'人造物品': 'artifact',
|
'人造物品': 'artifact',
|
||||||
'技术': 'technology',
|
'技术': 'technology',
|
||||||
'科技': 'technology',
|
'科技': 'technology',
|
||||||
|
'产品': 'artifact',
|
||||||
'设备': 'artifact',
|
'设备': 'artifact',
|
||||||
'装备': 'artifact',
|
'装备': 'artifact',
|
||||||
'物品': 'artifact',
|
'物品': 'artifact',
|
||||||
|
'材料': 'artifact',
|
||||||
|
'化学': 'artifact',
|
||||||
'武器': 'artifact',
|
'武器': 'artifact',
|
||||||
'军火': 'artifact',
|
'军火': 'artifact',
|
||||||
|
|
||||||
'naturalobject': 'naturalobject',
|
'naturalobject': 'naturalobject',
|
||||||
'natural': 'naturalobject',
|
'natural': 'naturalobject',
|
||||||
|
'phenomena': 'naturalobject',
|
||||||
|
'substance': 'naturalobject',
|
||||||
'自然对象': 'naturalobject',
|
'自然对象': 'naturalobject',
|
||||||
'自然物体': 'naturalobject',
|
'自然物体': 'naturalobject',
|
||||||
'自然现象': 'naturalobject',
|
'自然现象': 'naturalobject',
|
||||||
|
'物质': 'naturalobject',
|
||||||
'物体': 'naturalobject',
|
'物体': 'naturalobject',
|
||||||
'现象': 'naturalobject',
|
|
||||||
|
|
||||||
'data': 'data',
|
'data': 'data',
|
||||||
|
'figure': 'data',
|
||||||
|
'value': 'data',
|
||||||
'数据': 'data',
|
'数据': 'data',
|
||||||
|
'数字': 'data',
|
||||||
|
'数值': 'data',
|
||||||
|
|
||||||
'content': 'content',
|
'content': 'content',
|
||||||
'book': 'content',
|
'book': 'content',
|
||||||
|
|
@ -91,8 +108,11 @@ const TYPE_SYNONYMS: Record<string, string> = {
|
||||||
'person': 'person',
|
'person': 'person',
|
||||||
'people': 'person',
|
'people': 'person',
|
||||||
'human': 'person',
|
'human': 'person',
|
||||||
|
'role': 'person',
|
||||||
'人物': 'person',
|
'人物': 'person',
|
||||||
|
'人类': 'person',
|
||||||
'人': 'person',
|
'人': 'person',
|
||||||
|
'角色': 'person',
|
||||||
|
|
||||||
'creature': 'creature',
|
'creature': 'creature',
|
||||||
'animal': 'creature',
|
'animal': 'creature',
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue