快捷方式

torcharrow.functional.firstx

torcharrow.functional.firstx(col: ListColumn, num_to_copy: int)

返回输入列头部的前 x 个值

参数:
  • col (包含值列表的列) –

  • num_to_copy (从列表头部返回的元素数量) –

示例

>>> import torcharrow as ta
>>> from torcharrow import functional
>>> a = ta.column([[1, 2, 3],[5,8],[13]])
>>> functional.firstx(a, 3)
0  [1, 2, 3]
1  [5, 8]
2  [13]
dtype: List(Int64(nullable=True), nullable=True), length: 3, null_count: 0

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源