Skip to content

Commit

Permalink
Merge pull request #6 from phillies/fix/init_bits
Browse files Browse the repository at this point in the history
fix bits parameter in init function
  • Loading branch information
jacobkimmel committed Jun 3, 2020
2 parents 81e32b4 + cf99a04 commit 60c98d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytorch_modelsize.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, model, input_size=(1,1,32,32), bits=32):
'''
self.model = model
self.input_size = input_size
self.bits = 32
self.bits = bits
return

def get_parameter_sizes(self):
Expand Down

0 comments on commit 60c98d3

Please sign in to comment.