快捷方式

torcharrow.functional.id_overlap_count

torcharrow.functional.id_overlap_count(input_ids: ListColumn, matching_ids: ListColumn)

返回两个 ID 列表之间的重叠数量。

参数:
  • input_ids (第一个 ID 列表) –

  • matching_ids (第二个 ID 列表) –

示例

>>> import torcharrow as ta
>>> from torcharrow import functional
>>> input_ids = ta.column([[1, 2, 3],[5,8],[13]])
>>> matching_ids = ta.column([[1],[2,3],[13]])
>>> functional.id_overlap_count(input_ids, matching_ids)
0  3
1  0
2  1
dtype: Float32(nullable=True), length: 3, null_count: 0

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取针对初学者和高级开发者的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源