Skip to content

Commit

Permalink
fix method ids (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood authored Jan 10, 2025
1 parent b333268 commit cbd7afa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/methods/novel/novel_predict/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
shape=outputs.shape,
uns={
'dataset_id': input_test_mod1.uns['dataset_id'],
'method_id': meta['name'],
'method_id': "novel",
},
)
adata.write_h5ad(par['output'], compression = "gzip")
Expand Down
2 changes: 1 addition & 1 deletion src/methods/simple_mlp/simple_mlp_predict/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def _predict(model,dl):
shape=y_pred.shape,
uns={
'dataset_id': input_test_mod1.uns['dataset_id'],
'method_id': meta['functionality_name'],
'method_id': "simple_mlp",
},
)

Expand Down

0 comments on commit cbd7afa

Please sign in to comment.