You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your excellent project! But I am confused about the number of parameters. The paper said the parameter number is about 1.3M, but when I added some extra code to calculate parameter numbers, such as:
num_params = 0
for variable in tf.trainable_variables():
shape = variable.get_shape()
num_params += reduce(mul, [dim.value for dim in shape], 1)
print(num_params)
Hi Akara,
Thanks for your excellent project! But I am confused about the number of parameters. The paper said the parameter number is about 1.3M, but when I added some extra code to calculate parameter numbers, such as:
The output was:
Would you please tell me why?
The text was updated successfully, but these errors were encountered: