File size: 1,055 Bytes
0161e74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
#PJM -L rscgrp=b-batch
#PJM -L gpu=1
#PJM -L elapse=24:00:00
#PJM -N ccfm_baseline_ori_scdfm
#PJM -j
#PJM -o logs/ccfm_baseline_%j.out

module load cuda/12.2.2
module load cudnn/8.9.7
module load gcc-toolset/12

source /home/hp250092/ku50001222/qian/aivc/lfj/ori_scDFM_env/bin/activate
cd /home/hp250092/ku50001222/qian/aivc/lfj/transfer/code/ori_scDFM

export PYTHONPATH=./
export PYTORCH_CUDA_ALLOC_CONF=max_split_size_mb:256

python src/script/run.py \
    --batch_size=48 \
    --devices='0' \
    --model_type=origin \
    --lr=5e-5 \
    --steps=200000 \
    --data_name=norman \
    --d_model=128 \
    --eta_min=1e-6 \
    --fusion_method=differential_perceiver \
    --infer_top_gene=1000 \
    --n_top_genes=5000 \
    --perturbation_function=crisper \
    --noise_type=Gaussian \
    --mode=predict_y \
    --gamma=0.5 \
    --split_method=additive \
    --use_mmd_loss \
    --fold=1 \
    --topk=30 \
    --use_negative_edge \
    --print_every=10000 \
    --result_path=/home/hp250092/ku50001222/qian/aivc/lfj/transfer/CCFM_result