Skip to content

Commit 0ee1488

Browse files
dbougetdbouget
andauthored
Ci (#14)
* Testing new ci [skip ci] --------- Co-authored-by: dbouget <david.bouget@sintef.no>
1 parent fc083ce commit 0ee1488

File tree

8 files changed

+5
-379
lines changed

8 files changed

+5
-379
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
shell: bash
144144

145145
- name: Test CLI
146-
run: raidionicsseg --help
146+
run: raidionicsval --help
147147

148148
- name: Clone repo
149149
uses: actions/checkout@v4

.github/workflows/build_macos.yml

Lines changed: 0 additions & 84 deletions
This file was deleted.

.github/workflows/build_macos_arm.yml

Lines changed: 0 additions & 79 deletions
This file was deleted.

.github/workflows/build_ubuntu.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

.github/workflows/build_windows.yml

Lines changed: 0 additions & 80 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
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

810
The code corresponds to the Raidionics backend for running the k-fold cross-validation and metrics computation.
911
The 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.
1618
pip 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

186173
Then the final step is to do the following in a terminal.

requirements.txt

-200 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)