33[ ![ License] ( https://img.shields.io/badge/License-BSD%202--Clause-orange.svg )] ( https://opensource.org/licenses/BSD-2-Clause )
44[ ![ ] ( https://img.shields.io/badge/python-3.8|3.9|3.10|3.11|3.12-blue.svg )] ( https://www.python.org/downloads/ )
55[ ![ Paper] ( https://zenodo.org/badge/DOI/10.3389/fneur.2022.932219.svg )] ( https://www.frontiersin.org/articles/10.3389/fneur.2022.932219/full )
6+ [ ![ codecov] ( https://codecov.io/gh/dbouget/validation_metrics_computation/branch/master/graph/badge.svg?token=ZSPQVR7RKX )] ( https://codecov.io/gh/dbouget/validation_metrics_computation )
67[ ![ Open In Colab] ( https://colab.research.google.com/assets/colab-badge.svg )] ( https://colab.research.google.com/gist/dbouget/7560fe410db03e384a45ddc77bbe9a57/compute_validation_example.ipynb )
8+ [ ![ PyPI version] ( https://img.shields.io/pypi/v/raidionicsval.svg )] ( https://pypi.org/project/raidionicsval/ )
79
810The code corresponds to the Raidionics backend for running the k-fold cross-validation and metrics computation.
911The module can either be used as a Python library, as CLI, or as Docker container. It supports both 2D and 3D inputs,
@@ -16,20 +18,6 @@ the only hard requirement is the expected folder structure to use as input.
1618pip install git+https://github.com/dbouget/validation_metrics_computation.git
1719```
1820
19- ## [ Continuous integration] ( https://github.com/dbouget/validation_metrics_computation#continuous-integration )
20-
21- <div style =" display : flex ;" >
22- <div style =" flex : 1 ; margin-right : 20px ;" >
23-
24- | Operating System | Status |
25- | ------------------| --------------------------------------------------------------------------------------------------------------------|
26- | ** Windows** | [ ![ Build macOS] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_windows.yml/badge.svg )] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_windows.yml ) |
27- | ** Ubuntu** | [ ![ Build macOS] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_ubuntu.yml/badge.svg )] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_ubuntu.yml ) |
28- | ** macOS** | [ ![ Build macOS] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_macos.yml/badge.svg )] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_macos.yml ) |
29- | ** macOS ARM** | [ ![ Build macOS] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_macos_arm.yml/badge.svg )] ( https://github.com/dbouget/validation_metrics_computation/actions/workflows/build_macos_arm.yml ) |
30- </div >
31- </div >
32-
3321## [ Getting started] ( https://github.com/dbouget/validation_metrics_computation#getting-started )
3422
3523### [ Notebooks] ( https://github.com/dbouget/validation_metrics_computation#notebooks )
@@ -173,14 +161,13 @@ An example of its content is given below when **not** using an index-based namin
173161
174162### [ 2. Installation] ( https://github.com/dbouget/validation_metrics_computation#2-installation )
175163</summary >
176- Create a virtual environment using at least Python 3.8, and install all dependencies from
177- the requirements.txt file.
164+ Create a virtual environment using at least Python 3.8, and install the library.
178165
179166```
180167 cd /path/to/validation_metrics_computation
181168 virtualenv -p python3 venv
182169 source venv/bin/activate
183- TMPDIR=$PWD/venv pip install --cache-dir=$PWD/venv -r requirements.txt (--no-deps)
170+ TMPDIR=$PWD/venv pip install --cache-dir=$PWD/venv -e .
184171```
185172
186173Then the final step is to do the following in a terminal.
0 commit comments