Skip to content

Commit

Permalink
fix function naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtsemiY committed Dec 18, 2023
1 parent e097088 commit d8d40f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/DLToolModuleTemplate.m
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
% Case #1: DL tool is cloned from GitHub repository
% (with dependencies being installed by user in the separate conda env)
% Example tool: IsoNet
function command_output = executeDLToolCommand(obj, params_string)
function command_output = executeDLToolCommand_1(obj, params_string)
python_run_script_snippet = "PYTHONPATH=" + fullfile(obj.configuration.repository_path, '..');

% Add to command string non-interactive conda environment call
Expand All @@ -174,7 +174,7 @@
% Case #2: DL tool is installed via conda as a package
% (with dependencies coming along with the tool in the same conda env)
% Example tool: crYOLO
function command_output = executeDLToolCommand(obj, params_string, tool_script)
function command_output = executeDLToolCommand_2(obj, params_string, tool_script)

% Add to command string non-interactive conda environment call
if obj.configuration.use_conda == true
Expand Down

0 comments on commit d8d40f7

Please sign in to comment.