Skip to content

Commit

Permalink
fix(test): lower down sample size for test
Browse files Browse the repository at this point in the history
  • Loading branch information
CaibinSh committed Aug 12, 2024
1 parent 7363753 commit 4c86c1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scar/test/test_scar.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_scar(self):
feature_type="sgRNAs",
)

scarObj.train(epochs=40, batch_size=64)
scarObj.train(epochs=40, batch_size=32)

scarObj.inference()

Expand Down Expand Up @@ -58,7 +58,7 @@ def test_scar_citeseq(self):
feature_type="ADTs",
)

citeseq_scar.train(epochs=200, batch_size=64, verbose=False)
citeseq_scar.train(epochs=200, batch_size=32, verbose=False)
citeseq_scar.inference()

dist = euclidean_distances(
Expand Down

0 comments on commit 4c86c1b

Please sign in to comment.