Docs: install from GitHub via conda + editable .[dev], not PyPI
Browse files
README.md
CHANGED
|
@@ -64,10 +64,20 @@ Released inference YAMLs pin **exactly one** \(R\) and **one** ACS (default vali
|
|
| 64 |
| 8× | `[8]` | `[0.04]` |
|
| 65 |
| 16× | `[16]` | `[0.02]` |
|
| 66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
## Usage
|
| 68 |
|
| 69 |
```bash
|
| 70 |
-
pip install direct-recon # or: https://github.com/NKI-AI/direct
|
| 71 |
hf download NKI-AI/direct-modulated-convolution --local-dir ./modconv
|
| 72 |
|
| 73 |
direct predict ./predictions \
|
|
|
|
| 64 |
| 8× | `[8]` | `[0.04]` |
|
| 65 |
| 16× | `[16]` | `[0.02]` |
|
| 66 |
|
| 67 |
+
## Install DIRECT
|
| 68 |
+
|
| 69 |
+
```bash
|
| 70 |
+
git clone https://github.com/NKI-AI/direct.git
|
| 71 |
+
cd direct
|
| 72 |
+
conda create --name direct python=3.12
|
| 73 |
+
conda activate direct
|
| 74 |
+
pip install meson-python meson ninja
|
| 75 |
+
pip install --no-build-isolation -e ".[dev]"
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
## Usage
|
| 79 |
|
| 80 |
```bash
|
|
|
|
| 81 |
hf download NKI-AI/direct-modulated-convolution --local-dir ./modconv
|
| 82 |
|
| 83 |
direct predict ./predictions \
|