Skip to content

Commit 38057ba

Browse files
Vitalii Kleshchevnikovclaude
andcommitted
Phase 1A: modality-balanced encoder init + decoder variance-target scaling
Two new init toggles on RegularizedMultimodalVI, both off by default so in-flight runs are byte-identical: - use_modality_balanced_encoder_init (F1): rebalance per-modality mean_encoder/var_encoder weights so per-element variance equals 1/(3·total_n_hidden) — equivalent to a single virtual Linear of fan_in = sum_m n_hidden_m. Counters per-modality posterior collapse driven by Kaiming's fan-in-only normalisation in multimodal encoders. - decoder_init_variance_target_fraction (F2, plus burst_size_head variant): rescale per-feature decoder weight rows so the pre-softplus output variance lands at fraction × clip_per_feature_variance_to_theta_bounds( excess_biological_g, mean_g, theta_min, theta_max). Symmetric to z_loc_init_scale on the encoder side; lifts decoder output variance off the Kaiming default 1/3 toward the per-gene biological excess. Supporting changes: - _compute_theta exposes excess_biological in diagnostics with np.maximum(..., eps**2) floor (single source of truth). - compute_bursting_init reads excess_biological from diagnostics and uses the new clip_per_feature_variance_to_theta_bounds helper for the stochastic_v_scale clip — byte-identical to the prior inline form. - ValueError if decoder fraction is set with dispersion_init not in {data, variance_burst_size}; LayerNorm warning if decoder LayerNorm is disabled (Var(h_dim) ≈ 1 assumption broken). Tests: 11 new (5 F1 + 6 F2); full suite 406/406. Phase 1B sweep TSV (8 conditions × 3 datasets = 24 rows) with F1 always on, F2 main fraction in {0.2, 0.02} and burst_size r = main / 10 for bursting variants. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f8edb08 commit 38057ba

7 files changed

Lines changed: 655 additions & 5 deletions

File tree

docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@
116116
"use_softplus_var_activation = True\n",
117117
"use_ard_z_sigma_scale = False\n",
118118
"z_loc_init_scale = 1.0\n",
119+
"# Phase 1A: modality-balanced encoder init (F1) and decoder weight init scaled\n",
120+
"# by per-feature biological variance (F2). Defaults preserve in-flight runs.\n",
121+
"use_modality_balanced_encoder_init = False\n",
122+
"decoder_init_variance_target_fraction = None\n",
123+
"decoder_burst_size_init_variance_target_fraction = None\n",
119124
"decoder_weight_l2 = 0\n",
120125
"batch_size = 1024\n",
121126
"# --- Attribution ---\n",
@@ -427,6 +432,12 @@
427432
" use_softplus_var_activation=(use_softplus_var_activation, bool),\n",
428433
" use_ard_z_sigma_scale=(use_ard_z_sigma_scale, bool),\n",
429434
" z_loc_init_scale=(z_loc_init_scale, float),\n",
435+
" use_modality_balanced_encoder_init=(use_modality_balanced_encoder_init, bool),\n",
436+
" decoder_init_variance_target_fraction=(decoder_init_variance_target_fraction, \"float_or_none\"),\n",
437+
" decoder_burst_size_init_variance_target_fraction=(\n",
438+
" decoder_burst_size_init_variance_target_fraction,\n",
439+
" \"float_or_none\",\n",
440+
" ),\n",
430441
" batch_size=(batch_size, int),\n",
431442
" attribution_batch_size=(attribution_batch_size, int),\n",
432443
" attribution_method=(attribution_method, str),\n",
@@ -484,6 +495,9 @@
484495
"use_softplus_var_activation = params[\"use_softplus_var_activation\"]\n",
485496
"use_ard_z_sigma_scale = params[\"use_ard_z_sigma_scale\"]\n",
486497
"z_loc_init_scale = params[\"z_loc_init_scale\"]\n",
498+
"use_modality_balanced_encoder_init = params[\"use_modality_balanced_encoder_init\"]\n",
499+
"decoder_init_variance_target_fraction = params[\"decoder_init_variance_target_fraction\"]\n",
500+
"decoder_burst_size_init_variance_target_fraction = params[\"decoder_burst_size_init_variance_target_fraction\"]\n",
487501
"batch_size = params[\"batch_size\"]\n",
488502
"attribution_batch_size = params[\"attribution_batch_size\"]\n",
489503
"attribution_method = params[\"attribution_method\"]\n",
@@ -612,6 +626,9 @@
612626
" use_softplus_var_activation=use_softplus_var_activation,\n",
613627
" use_ard_z_sigma_scale=use_ard_z_sigma_scale,\n",
614628
" z_loc_init_scale=z_loc_init_scale,\n",
629+
" use_modality_balanced_encoder_init=use_modality_balanced_encoder_init,\n",
630+
" decoder_init_variance_target_fraction=decoder_init_variance_target_fraction,\n",
631+
" decoder_burst_size_init_variance_target_fraction=decoder_burst_size_init_variance_target_fraction,\n",
615632
")"
616633
]
617634
},
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name template output queue mem priority decoder_type_rna decoder_type_atac decoder_type_spliced decoder_type_unspliced burst_size_intercept dispersion_init dispersion_init_bio_frac n_hidden n_latent results_folder wandb_name wandb_group wandb_project z_sparsity_prior n_active_latent_per_cell decoder_hidden_l1 hidden_activation_sparsity n_active_hidden_per_cell n_epochs_kl_warmup use_kl_z run_name early_stopping_min_delta_per_feature batch_size horseshoe_latent_z_prior_type horseshoe_latent_z_encoder_fraction horseshoe_posterior_init_loc horseshoe_posterior_init_scale dispersion_hyper_prior_mean dispersion_hyper_prior_alpha dispersion_prior_direction var_init_scale use_softplus_var_activation use_ard_z_sigma_scale decoder_weight_l2 z_loc_init_scale max_epochs early_stopping_patience exclude_datasets n_hidden_rna n_hidden_atac n_hidden_spliced n_hidden_unspliced n_latent_rna n_latent_atac n_latent_spliced n_latent_unspliced library_log_means_centering_sensitivity use_modality_balanced_encoder_init decoder_init_variance_target_fraction decoder_burst_size_init_variance_target_fraction
2+
embryo_4mod_balencode /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_out.ipynb gpu-huge 220000 99 expected_RNA expected_RNA expected_RNA expected_RNA - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True - -
3+
embryo_4mod_balencode_zloc50x /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_zloc50x_out.ipynb gpu-huge 220000 99 expected_RNA expected_RNA expected_RNA expected_RNA - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_zloc50x balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_zloc50x - - - - - - - - inverse_sqrt 0.1 1 - 0 50 - - - - - - - - - - - - True - -
4+
embryo_4mod_balencode_decscale02 /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_decscale02_out.ipynb gpu-huge 220000 99 expected_RNA expected_RNA expected_RNA expected_RNA - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_decscale02 balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_decscale02 - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.2 -
5+
embryo_4mod_balencode_decscale02_zloc50x /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_decscale02_zloc50x_out.ipynb gpu-huge 220000 99 expected_RNA expected_RNA expected_RNA expected_RNA - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_decscale02_zloc50x balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_decscale02_zloc50x - - - - - - - - inverse_sqrt 0.1 1 - 0 50 - - - - - - - - - - - - True 0.2 -
6+
embryo_4mod_balencode_decscale002 /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_decscale002_out.ipynb gpu-huge 220000 99 expected_RNA expected_RNA expected_RNA expected_RNA - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_decscale002 balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_decscale002 - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.02 -
7+
embryo_4mod_balencode_burst /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_burst_out.ipynb gpu-huge 220000 99 burst_frequency_size expected_RNA burst_frequency_size burst_frequency_size 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_burst balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True - -
8+
embryo_4mod_balencode_decscale02_burst /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_decscale02_burst_out.ipynb gpu-huge 220000 99 burst_frequency_size expected_RNA burst_frequency_size burst_frequency_size 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_decscale02_burst balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_decscale02_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.2 0.02
9+
embryo_4mod_balencode_decscale002_burst /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_atac_spliced_unspliced_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_4mod_balencode_decscale002_burst_out.ipynb gpu-huge 220000 99 burst_frequency_size expected_RNA burst_frequency_size burst_frequency_size 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_4mod_balencode_decscale002_burst balenc_decvar regularizedvi_embryo - - - - - - - embryo_4mod_balencode_decscale002_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.02 0.002
10+
embryo_rna_balencode /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_out.ipynb gpu-normal 100000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True - -
11+
embryo_rna_balencode_zloc50x /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_zloc50x_out.ipynb gpu-normal 100000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_zloc50x balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_zloc50x - - - - - - - - inverse_sqrt 0.1 1 - 0 50 - - - - - - - - - - - - True - -
12+
embryo_rna_balencode_decscale02 /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_decscale02_out.ipynb gpu-normal 100000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_decscale02 balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_decscale02 - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.2 -
13+
embryo_rna_balencode_decscale02_zloc50x /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_decscale02_zloc50x_out.ipynb gpu-normal 100000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_decscale02_zloc50x balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_decscale02_zloc50x - - - - - - - - inverse_sqrt 0.1 1 - 0 50 - - - - - - - - - - - - True 0.2 -
14+
embryo_rna_balencode_decscale002 /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_decscale002_out.ipynb gpu-normal 100000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_decscale002 balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_decscale002 - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.02 -
15+
embryo_rna_balencode_burst /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_burst_out.ipynb gpu-normal 100000 99 burst_frequency_size - - - 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_burst balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True - -
16+
embryo_rna_balencode_decscale02_burst /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_decscale02_burst_out.ipynb gpu-normal 100000 99 burst_frequency_size - - - 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_decscale02_burst balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_decscale02_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.2 0.02
17+
embryo_rna_balencode_decscale002_burst /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/embryo_rna_only_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results/embryo_rna_balencode_decscale002_burst_out.ipynb gpu-normal 100000 99 burst_frequency_size - - - 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/cell2state_embryo/notebooks/benchmark/regularizedvi/results embryo_rna_balencode_decscale002_burst balenc_decvar regularizedvi_embryo - - - - - - - embryo_rna_balencode_decscale002_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - - - - - - - - - - - True 0.02 0.002
18+
immune_rna_balencode /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_out.ipynb gpu-normal 60000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode balenc_decvar regularizedVI - - - - - - - immune_rna_balencode - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - tea_seq - - - - - - - - - True - -
19+
immune_rna_balencode_zloc50x /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_zloc50x_out.ipynb gpu-normal 60000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_zloc50x balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_zloc50x - - - - - - - - inverse_sqrt 0.1 1 - 0 50 - - tea_seq - - - - - - - - - True - -
20+
immune_rna_balencode_decscale02 /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_decscale02_out.ipynb gpu-normal 60000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_decscale02 balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_decscale02 - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - tea_seq - - - - - - - - - True 0.2 -
21+
immune_rna_balencode_decscale02_zloc50x /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_decscale02_zloc50x_out.ipynb gpu-normal 60000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_decscale02_zloc50x balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_decscale02_zloc50x - - - - - - - - inverse_sqrt 0.1 1 - 0 50 - - tea_seq - - - - - - - - - True 0.2 -
22+
immune_rna_balencode_decscale002 /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_decscale002_out.ipynb gpu-normal 60000 99 expected_RNA - - - - data - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_decscale002 balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_decscale002 - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - tea_seq - - - - - - - - - True 0.02 -
23+
immune_rna_balencode_burst /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_burst_out.ipynb gpu-normal 60000 99 burst_frequency_size - - - 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_burst balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - tea_seq - - - - - - - - - True - -
24+
immune_rna_balencode_decscale02_burst /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_decscale02_burst_out.ipynb gpu-normal 60000 99 burst_frequency_size - - - 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_decscale02_burst balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_decscale02_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - tea_seq - - - - - - - - - True 0.2 0.02
25+
immune_rna_balencode_decscale002_burst /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/docs/notebooks/immune_integration/bm_pbmc_rna_training_v3_slurm.ipynb /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar/immune_rna_balencode_decscale002_burst_out.ipynb gpu-normal 60000 99 burst_frequency_size - - - 1.0 variance_burst_size - - - /nemo/lab/briscoej/home/users/kleshcv/my_packages/regularizedvi/results/immune_balenc_decvar immune_rna_balencode_decscale002_burst balenc_decvar regularizedVI - - - - - - - immune_rna_balencode_decscale002_burst - - - - - - - - inverse_sqrt 0.1 1 - 0 10 - - tea_seq - - - - - - - - - True 0.02 0.002

0 commit comments

Comments
 (0)