Skip to content

Commit

Permalink
fix model name in shapeembed output csv
Browse files Browse the repository at this point in the history
  • Loading branch information
afoix committed Jul 22, 2024
1 parent cecde4e commit 344cff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/shapeembed/shapeembed.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
def tag_cols(params):
cols = []
cols.append(('dataset', params.dataset.name))
cols.append(('model', model_str(params)))
cols.append(('model', params.model_name))
for k, v in vars(params.model_args).items(): cols.append((k, v))
cols.append(('compression_factor', params.compression_factor))
cols.append(('latent_dim', params.latent_dim))
Expand Down

0 comments on commit 344cff1

Please sign in to comment.