我无法弄清楚这是哪种机器学习:
训练集:由带有对象短语对象标签的句子组成示例:
"This is a black chair. It is next to a large bed."
短语'This', 'black chair', 'it'
用 label 注释"chair"
,短语'large bed'
用 label 注释'bed'
。可以分配 18 个可用标签。
对于未注释的句子,我想预测句子中每个短语的标签。
例如:
There is a study table in the corner of the room, behind it is a small chair.
我希望模型为表示上述句子中的对象的每个短语预测一个标签(可用 18 个标签)。
预期输出:
'study table', 'it' -----> label 'table'
'small chair' -----------> label 'chair'
这是分类、回归还是其他类型的问题?