tensorflow 获取模型所有参数总和数量的方法
时间:2022-02-21 10:57:01|栏目:Python代码|点击: 次
实例如下所示:
from functools import reduce from operator import mul def get_num_params(): num_params = 0 for variable in tf.trainable_variables(): shape = variable.get_shape() num_params += reduce(mul, [dim.value for dim in shape], 1) return num_params
上一篇:利用python对excel中一列的时间数据更改格式操作
栏 目:Python代码
本文标题:tensorflow 获取模型所有参数总和数量的方法
本文地址:http://www.codeinn.net/misctech/194064.html