add explanations to the text-seg task
Browse files
README.md
CHANGED
|
@@ -63,6 +63,10 @@ imgs = npz[‘imgs’]
|
|
| 63 |
print(npz[‘text_prompts’])
|
| 64 |
```
|
| 65 |
|
|
|
|
| 66 |
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
|
|
|
|
| 63 |
print(npz[‘text_prompts’])
|
| 64 |
```
|
| 65 |
|
| 66 |
+
Remarks:
|
| 67 |
|
| 68 |
+
1. To ensure rotation consistency, all testing cases will be preprocessed to standard rotation by https://nipy.org/nibabel/reference/nibabel.funcs.html#nibabel.funcs.as_closest_canonical
|
| 69 |
+
2. Some datasets don't have text prompts, please simply exclude them during model training.
|
| 70 |
+
3. For instance labels, the evaluate metric is [F1 score](https://github.com/JunMa11/NeurIPS-CellSeg/blob/main/baseline/compute_metric.py) where the order of instance id doesn't matter.
|
| 71 |
|
| 72 |
|