Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
uses: actions/checkout@v4
with:
path: src
- name: Setup Python 3.10
- name: Setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.12'
architecture: 'x64'
cache: 'pip' # caching pip dependencies
- name: Install package
Expand Down
2 changes: 1 addition & 1 deletion CorpusCallosum/data/generate_fsaverage_centroids.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

import nibabel as nib
import numpy as np
from read_write import calc_ras_centroids_from_seg, convert_numpy_to_json_serializable

import FastSurferCNN.utils.logging as logging
from CorpusCallosum.data.read_write import calc_ras_centroids_from_seg, convert_numpy_to_json_serializable

logger = logging.get_logger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion FastSurferCNN/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def eval(
Returns
-------
int, float, ndarray
median miou [value].
Median mean IOU value.
"""
logger.info(f"Evaluating model at epoch {epoch}")
self.model.eval()
Expand Down
Loading