You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-8Lines changed: 27 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -7,45 +7,52 @@ Python specific core utilities for running models in the [BioImage Model Zoo](ht
7
7
### Via Conda
8
8
9
9
The `bioimageio.core` package can be installed from conda-forge via
10
+
10
11
```
11
12
conda install -c conda-forge bioimageio.core
12
13
```
14
+
13
15
if you don't install any additional deep learning libraries, you will only be able to use general convenience functionality, but not any functionality for model prediction.
14
16
To install additional deep learning libraries use:
15
17
16
18
* Pytorch/Torchscript:
19
+
17
20
```bash
18
21
# cpu installation (if you don't have an nvidia graphics card)
Note that the pytorch installation instructions may change in the future. For the latest instructions please refer to [pytorch.org](https://pytorch.org/).
25
27
28
+
Note that the pytorch installation instructions may change in the future. For the latest instructions please refer to [pytorch.org](https://pytorch.org/).
Run prediction for multiple images stored on disc:
91
+
80
92
```
81
93
bioimagei predict-images -m <MODEL> -i <INPUT_PATTERN> - o <OUTPUT_FOLDER>
82
94
```
83
-
`<INPUT_PATTERN>` is a `glob` pattern to select the desired images, e.g. `/path/to/my/images/*.tif`.
84
95
96
+
`<INPUT_PATTERN>` is a `glob` pattern to select the desired images, e.g. `/path/to/my/images/*.tif`.
85
97
86
98
## From python
87
99
88
100
`bioimageio.core` is a python library that implements loading models, running prediction with them and more.
89
101
To get an overview of this functionality, check out the example notebooks:
90
-
-[example/model_usage](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/model_usage.ipynb) for how to load models and run prediction with them
91
-
-[example/model_creation](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/model_creation.ipynb) for how to create bioimage.io compatible model packages
92
-
-[example/dataset_statistics_demo](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/dataset_statistics_demo.ipynb) for how to use the dataset statistics for advanced pre-and-postprocessing
102
+
103
+
*[example/model_usage](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/model_usage.ipynb) for how to load models and run prediction with them
104
+
*[example/model_creation](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/model_creation.ipynb) for how to create bioimage.io compatible model packages
105
+
*[example/dataset_statistics_demo](https://github.com/bioimage-io/core-bioimage-io-python/blob/main/example/dataset_statistics_demo.ipynb) for how to use the dataset statistics for advanced pre-and-postprocessing
93
106
94
107
## Model Specification
95
108
96
-
The model specification and its validation tools can be found at https://github.com/bioimage-io/spec-bioimage-io.
109
+
The model specification and its validation tools can be found at <https://github.com/bioimage-io/spec-bioimage-io>.
110
+
111
+
## Changelog
112
+
113
+
### 0.5.10
114
+
115
+
*[Fix critical bug in predict with tiling](https://github.com/bioimage-io/core-bioimage-io-python/pull/359)
0 commit comments