Pytorch 笔记 torch.cat()在给定维度上对输入的张量序列进行连接操作 Args tensors (sequence of Tensors): any python sequence of tensors of the same type. 任意 Tensor 类型的 python 序列,序列中的数据是任意相同 shape 的同类型的Tensor Non-empty tensors provided m 2022-02-21 深度学习 #pytorch #python
Lua API lua_gettable1void lua_gettable(lua_State *L, int index); 把 t[k] 值压入堆栈, 这里的 t 是指有效索引 index 指向的值, 而 k 则是栈顶放的值。这个函数会弹出堆栈上的 key(把结果放在栈上相同位置),在 Lua 中这个函数可能触发对应 __index 事件的元方法 lua_settable1void lua 2022-01-14 Lua #lua