Skip to content

Commit

Permalink
feat: capitilize model name
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtek11530 committed Dec 17, 2021
1 parent 8173a5c commit 7a977d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DynaBERT/gather_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def gather_results(model_dir: str, task_name: str, depth_mult: float, width_mult

data['parameters'] = parameters_num
data['name'] = os.path.basename(model_dir)
data['model_name'] = 'dynabert_d_' + str(depth_mult) + '_w_' + str(width_mult)
data['model_name'] = 'Dynabert_d_' + str(depth_mult) + '_w_' + str(width_mult)
print(data)
return data

Expand Down

0 comments on commit 7a977d6

Please sign in to comment.