You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/applications/FeTS_CLI_Segment.cxx
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ int main(int argc, char** argv)
135
135
hardcodedModelWeightPath = hardcodedOpenFLPath + "/bin/federations/weights/", // start with the common location
136
136
hardcodedPythonPath = hardcodedOpenFLPath + "/venv/bin/python", // this needs to change for Windows (wonder what happens for macOS?)
137
137
hardcodedPythonPath_fusion = fetsApplicationPath + "/LabelFusion/venv/bin/python", // this needs to change for Windows (wonder what happens for macOS?)
138
-
scriptToCall = hardcodedOpenFLPath + "/submodules/fets_ai/Algorithms/fets/bin/brainmage_validation_scores_to_disk.py"; // the script that does the inference and scoring
138
+
scriptToCall = hardcodedOpenFLPath + "/submodules/fets_ai/Algorithms/fets/bin/brainmage_validation_outputs_to_disk_newer.py"; // the script that does the inference and scoring
139
139
auto fets_dataDir = getCaPTkDataDir();
140
140
auto hardcodedFinalModelsWeightsPath = fets_dataDir + "/fets_consensus";
141
141
auto hardcodedFinalModelsSeriesWeightsPath = fets_dataDir + "/fets_consensus_models/";
@@ -260,13 +260,13 @@ int main(int argc, char** argv)
260
260
std::string command_to_run;
261
261
262
262
auto current_temp_output = cbica::createTmpDir();
263
-
auto current_subject_temp_output = current_temp_output + "/subject";
263
+
auto current_subject_temp_output = current_temp_output + "/" + subjectDirs[s];
0 commit comments