-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add lisi score calculation and annotations
- Loading branch information
ranzhang
authored and
ranzhang
committed
Dec 2, 2024
1 parent
2d0f203
commit 3e3a517
Showing
2 changed files
with
195 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
#!/bin/bash | ||
# | ||
#conda activate tf_gpu | ||
|
||
input_h5ad=../data/example.h5ad | ||
outdir=./ | ||
|
||
## train the model | ||
for learning_rate in 0.001 0.0001 | ||
do | ||
python ./run_pred.py --input_h5ad $input_h5ad --outdir $outdir --train train --predict embedding --learning_rate $learning_rate | ||
python ./run_pred.py --input_h5ad $input_h5ad --outdir $outdir --train train --predict embedding --learning_rate $learning_rate --dis dis | ||
python ./run_pred.py --input_h5ad $input_h5ad --outdir $outdir --train train --predict embedding --learning_rate $learning_rate --group celltype | ||
python ./run_pred.py --input_h5ad $input_h5ad --outdir $outdir --train train --predict embedding --learning_rate $learning_rate --group celltype --dis dis | ||
done | ||
|
Oops, something went wrong.