Skip to content

Commit

Permalink
Fix typos in script comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bfhealy committed Apr 4, 2024
1 parent 32f1cd2 commit 12c3c47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/run_inference_slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def main():
logsDir = os.path.join(dirpath, 'logs')
os.makedirs(logsDir, exist_ok=True)

# Main script to run feature generation
# Main script to run inference
fid = open(os.path.join(slurmDir, 'slurm.sub'), 'w')
fid.write('#!/bin/bash\n')
fid.write(f'#SBATCH --job-name={jobname}.job\n')
Expand Down
2 changes: 1 addition & 1 deletion tools/train_algorithm_slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def main():
logsDir = os.path.join(dirpath, 'logs')
os.makedirs(logsDir, exist_ok=True)

# Main script to run feature generation
# Main script to run training
fid = open(os.path.join(slurmDir, 'slurm.sub'), 'w')
fid.write('#!/bin/bash\n')
fid.write(f'#SBATCH --job-name={jobname}.job\n')
Expand Down

0 comments on commit 12c3c47

Please sign in to comment.