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.
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
Empty file modified assets/generalization_task.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified examples/fewshot.toml
100644 → 100755
Empty file.
Empty file modified examples/mixed.toml
100644 → 100755
Empty file.
Empty file modified examples/random.h5ad
100644 → 100755
Empty file.
Empty file modified examples/zeroshot.toml
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions pyproject.toml
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "arc-state"
version = "0.9.31"
version = "0.9.32"
description = "State is a machine learning model that predicts cellular perturbation response across diverse contexts."
readme = "README.md"
authors = [
Expand All @@ -13,7 +13,7 @@ authors = [
requires-python = ">=3.10,<3.13"
dependencies = [
"anndata>=0.11.4",
"cell-load>=0.8.3",
"cell-load>=0.8.5",
"numpy>=2.2.6",
"pandas>=2.2.3",
"pyyaml>=6.0.2",
Expand Down
Empty file modified ruff.toml
100644 → 100755
Empty file.
Loading