Skip to content

Commit 8aa6dad

Browse files
updated train data SNR and added exceptions for DL testing to prevent errors after merge :)
1 parent efcd3f4 commit 8aa6dad

File tree

5 files changed

+577
-573
lines changed

5 files changed

+577
-573
lines changed

conftest.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -243,9 +243,8 @@ def algorithmlist(algorithmFile):
243243
algorithms = algorithm_information["algorithms"]
244244
for algorithm in algorithms:
245245
algorithm_dict = algorithm_information.get(algorithm, {})
246-
if not algorithm_dict.get('deep_learning', False):
247-
requires_matlab = algorithm_dict.get("requires_matlab", False)
248-
yield algorithm, requires_matlab
246+
requires_matlab = algorithm_dict.get("requires_matlab", False)
247+
yield algorithm, requires_matlab, algorithm_dict.get('deep_learning', False)
249248

250249
def bound_input(datafile,algorithmFile):
251250
# Find the algorithms from algorithms.json

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ pandas
1515
sphinx
1616
sphinx_rtd_theme
1717
pytest-json-report
18-
ivimnet
18+
ivimnet
19+
super_ivim_dc

0 commit comments

Comments
 (0)