标签: lua torch
假设有一个名为a的变量, print(a)的输出为nngraph.Node(来自torch7包) 和 print(type(a))的输出为table
a
print(a)
nngraph.Node
print(type(a))
table
如何使用if来确定变量是否为nngraph.Node
if
声明
if a== nngraph.Node then
或
if a== "nngraph.Node" then
都不正确!