TimVeenboer commited on
Commit ·
69cbc86
1
Parent(s): f643a7e
docs(tap-hf): processor warning & versioning
Browse files- README.md +7 -0
- preprocessor_config.json +1 -0
README.md
CHANGED
|
@@ -54,6 +54,13 @@ with torch.no_grad():
|
|
| 54 |
|
| 55 |
### Usage with Preprocessor, loading CT volumes & sliding window inference
|
| 56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
```python
|
| 58 |
import numpy as np
|
| 59 |
import SimpleITK as sitk
|
|
|
|
| 54 |
|
| 55 |
### Usage with Preprocessor, loading CT volumes & sliding window inference
|
| 56 |
|
| 57 |
+
**Recommended environment:**
|
| 58 |
+
- Python >= 3.11
|
| 59 |
+
- torch >= 2.8
|
| 60 |
+
- numpy >= 2.35
|
| 61 |
+
- SimpleITK >= 2.52
|
| 62 |
+
- monai >= 1.4.0
|
| 63 |
+
|
| 64 |
```python
|
| 65 |
import numpy as np
|
| 66 |
import SimpleITK as sitk
|
preprocessor_config.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"image_processor_type": "TAPCTProcessor",
|
|
|
|
| 3 |
"resize_dims": [224, 224],
|
| 4 |
"divisible_pad_z": 4,
|
| 5 |
"clip_range": [-1008.0, 822.0],
|
|
|
|
| 1 |
{
|
| 2 |
"image_processor_type": "TAPCTProcessor",
|
| 3 |
+
"use_fast": false,
|
| 4 |
"resize_dims": [224, 224],
|
| 5 |
"divisible_pad_z": 4,
|
| 6 |
"clip_range": [-1008.0, 822.0],
|