Skip to content

Commit

Permalink
remove dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiWaldrant committed Jul 4, 2024
1 parent 3f40a9c commit aaf70b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/metrics/mse/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
input_denoised = ad.read_h5ad(par['input_prediction'])
input_test = ad.read_h5ad(par['input_test'])

test_data = ad.AnnData(X=input_test.layers["counts"], dtype="float")
denoised_data = ad.AnnData(X=input_denoised.layers["denoised"], dtype="float")
test_data = ad.AnnData(X=input_test.layers["counts"])
denoised_data = ad.AnnData(X=input_denoised.layers["denoised"])

print("Normalize data", flush=True)

Expand Down

0 comments on commit aaf70b5

Please sign in to comment.