Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,7 @@ tensorboard/
*.parquet

perturbench_data/
assets/
assets/

# anything containing "tmp"
*tmp*
14 changes: 14 additions & 0 deletions cluster/note.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
#SBATCH --output=logs/log_files/info_%j.out
#SBATCH --error=logs/log_files/info_%j.err
#SBATCH --time=02:00:00
#SBATCH --ntasks=1
#SBATCH --mem-per-cpu=16G
#SBATCH --gpus=1
#SBATCH --gres=gpumem:20g


module load stack/2024-06 cuda/12.8.0
eval "$(micromamba shell hook -s bash)"
micromamba activate causalcell
python src/perturbench/modelcore/train.py experiment=neurips2024/frangieh21/cpa_best_params_frangieh21
14 changes: 14 additions & 0 deletions cluster/submit_hpo_job.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
#SBATCH --output=/cluster/scratch/fluebeck/perturbench_logs/log_files/hpo_%j.out
#SBATCH --error=/cluster/scratch/fluebeck/perturbench_logs/log_files/hpo_%j.err
#SBATCH --time=48:00:00
#SBATCH --ntasks=1
#SBATCH --job-name=latent_hpo_norman19_scgpt

export HYDRA_FULL_ERROR=1
module load stack/2024-06 cuda/12.8.0
eval "$(micromamba shell hook -s bash)"
micromamba activate causalcell

# Submit HPO job
python src/perturbench/modelcore/train.py hpo=latent_additive_hpo experiment=neurips2024/norman19/latent_scgpt_best_params_norman19
15 changes: 15 additions & 0 deletions cluster/submit_job_euler.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
#SBATCH --output=/cluster/scratch/fluebeck/perturbench_logs/log_files/info_%j.out
#SBATCH --error=/cluster/scratch/fluebeck/perturbench_logs/log_files/info_%j.err
#SBATCH --time=06:00:00
#SBATCH --ntasks=1
#SBATCH --mem-per-cpu=64G
#SBATCH --gpus=1
#SBATCH --gres=gpumem:40g


export HYDRA_FULL_ERROR=1
module load stack/2024-06 cuda/12.8.0
eval "$(micromamba shell hook -s bash)"
micromamba activate causalcell
python te.py #src/perturbench/modelcore/train.py experiment=neurips2024/frangieh21/latent_embedding_best_params_frangieh21
14 changes: 14 additions & 0 deletions environment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: causalcell
channels:
- nvidia
- pytorch
- conda-forge
# channel_priority: strict
dependencies:
- python=3.11
- ipykernel
- pandas
- numpy
- matplotlib
- seaborn
- pip
Loading