gpt4 book ai didi

python - CNN 可学习参数的数量 - Python/TensorFlow

转载 作者:太空狗 更新时间:2023-10-29 22:24:38 24 4
gpt4 key购买 nike

在 TensorFlow 中,是否有任何功能可以让我找出网络中学习参数的数量?

最佳答案

没有我知道的功能,但您仍然可以在 tf.trainable_variables():

上使用 for 循环计算自己
total_parameters = 0
for variable in tf.trainable_variables():
variable_parameters = 1
for dim in variable.get_shape():
variable_parameters *= dim.value
total_parameters += variable_parameters

print("Total number of trainable parameters: %d" % total_parameters)

关于python - CNN 可学习参数的数量 - Python/TensorFlow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47310132/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com