Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Add: test for lovo_split
Browse files Browse the repository at this point in the history
  • Loading branch information
esavary committed Mar 28, 2024
1 parent b4a18ad commit 3a96d51
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions test/test_splitting.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
#
# Copyright 2021 The NiPreps Developers <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# We support and encourage derived works from this project, please read
# about our expectations at
#
# https://www.nipreps.org/community/licensing/
#
"""Unit test testing the lovo_split function."""
import pytest
import numpy as np
from eddymotion.data.dmri import DWI
from eddymotion.data.splitting import lovo_split


def test_lovo_split(datadir):
"""
Test the lovo_split function.
Parameters:
- datadir: The directory containing the test data.
Returns:
None
"""
data = DWI.from_filename(datadir / "dwi.h5")

# Set zeros in dataobj and gradients of the dwi object
data.dataobj[:] = 0
data.gradients[:] = 0

# Select a random index
index = np.random.randint(len(data))

# Set 1 in dataobj and gradients of the dwi object at this specific index
data.dataobj[..., index] = 1
data.gradients[..., index] = 1

# Apply the lovo_split function at the specified index
(train_data, train_gradients), \
(test_data, test_gradients) = lovo_split(data, index)

# Check if the test data contains only 1s
# and the train data contains only 0s after the split
assert np.all(test_data == 1)
assert np.all(train_data == 0)
assert np.all(test_gradients == 1)
assert np.all(train_gradients == 0)

0 comments on commit 3a96d51

Please sign in to comment.