Skip to content

Commit

Permalink
test transform
Browse files Browse the repository at this point in the history
  • Loading branch information
gjhuizing committed Jul 8, 2024
1 parent 4bfac10 commit f5d88af
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def test_model_explicit():
batch_size=50,
max_iter=5,
)
model.transform(adata, omics_key="X_pca", tau=1.0, batch_size=50)


def test_model_linear():
Expand All @@ -47,6 +48,7 @@ def test_model_linear():
batch_size=50,
max_iter=5,
)
model.transform(adata, omics_key="X_pca", tau=1.0, batch_size=50)


def test_model_10steps():
Expand All @@ -60,6 +62,7 @@ def test_model_10steps():
batch_size=50,
max_iter=5,
)
model.transform(adata, omics_key="X_pca", tau=1.0, batch_size=50)


def test_model_ICNN_implicit():
Expand All @@ -73,6 +76,7 @@ def test_model_ICNN_implicit():
batch_size=50,
max_iter=5,
)
model.transform(adata, omics_key="X_pca", tau=1.0, batch_size=50)


def test_model_monge_implicit():
Expand All @@ -86,3 +90,4 @@ def test_model_monge_implicit():
batch_size=50,
max_iter=5,
)
model.transform(adata, omics_key="X_pca", tau=1.0, batch_size=50)

0 comments on commit f5d88af

Please sign in to comment.