Skip to content
Open
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
Empty file modified .github/CODEOWNERS
100644 → 100755
Empty file.
Empty file modified .github/workflows/release.yml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .gitmodules
100644 → 100755
Empty file.
Empty file modified .python-version
100644 → 100755
Empty file.
157 changes: 157 additions & 0 deletions ARCHITECTURE_DIAGRAM.txt

Large diffs are not rendered by default.

Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified MODEL_ACCEPTABLE_USE_POLICY.md
100644 → 100755
Empty file.
Empty file modified MODEL_LICENSE.md
100644 → 100755
Empty file.
19 changes: 19 additions & 0 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,25 @@ options:
-h, --help show this help message and exit
```

### Double Perturbation Analysis

Generate double perturbation sweeps against a baseline core cell batch:

```bash
uv run state tx double \
--output-dir /path/to/training/run \
--target-cell-type RPE1 \
--checkpoint last.ckpt
```

Key arguments:
- `--target-cell-type`: cell type used to seed the core control cells
- `--checkpoint`: checkpoint filename inside `<output-dir>/checkpoints`
- `--results-dir`: optional override for where to dump results; defaults to `<output-dir>/eval_<checkpoint>`
- `--phase-one-only`: stop after saving single-perturbation predictions

The command emits `.npy` snapshots, AnnData files, and metric reports mirroring the single-perturbation heatmap command.

## State Transition Model (ST)

To start an experiment, write a TOML file (see `examples/zeroshot.toml` or
Expand Down
Loading