我有以下代码,def latency(i): layer_macc = profile(model) #new_list=[float(i) for i in layer_macc] macc_layer=layer_macc[i] return macc_layer/(3.84*pow(10,11))当我尝试运行代码时出现以下错误TypeError: unsupported operand type(s) for /: 'list' and 'float'. 我试图将列表转换为浮点数,但仍然无法正常工作。
添加回答
举报
0/150
提交
取消