Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goliaro committed Jan 14, 2024
1 parent 621c20c commit 74163df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inference/utils/download_hf_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def parse_args():

def main(args):
if args.full_precision_only:
data_types = ff.DataType.DT_FLOAT
data_types = (ff.DataType.DT_FLOAT,)
elif args.half_precision_only:
data_types = ff.DataType.DT_HALF
data_types = (ff.DataType.DT_HALF,)
else:
data_types = (ff.DataType.DT_FLOAT, ff.DataType.DT_HALF)

Expand Down

0 comments on commit 74163df

Please sign in to comment.