Skip to content

Commit 23ab5af

Browse files
committed
feat: Implement dynamic statistical testing framework
1 parent 4917c1f commit 23ab5af

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ phantoms/MR_XCAT_qMRI/*.txt
4141
tests/IVIMmodels/unit_tests/models
4242
models
4343
test_output.csv
44+
proposed_statistical_config.yml

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ pytest-json-report
1919
statsmodels
2020
ivimnet
2121
nlopt
22-
pyyaml
22+
pyyaml
23+
statsmodels

tests/IVIMmodels/unit_tests/test_statistical_comparison.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def generate_config_for_algorithm(algorithm):
4646

4747
print(f"Generating reference data for {algorithm}")
4848

49-
if "NET" in algorithm or "DC" in algorithm:
50-
print(" Skipping deep learning algorithm")
49+
if "NET" in algorithm or "DC" in algorithm or "MATLAB" in algorithm:
50+
print(" Skipping deep learning or MATLAB algorithm")
5151
return None
5252

5353
new_config_entry[algorithm] = {}

0 commit comments

Comments
 (0)