SushantGautam commited on
Commit
2dcbc67
·
1 Parent(s): 64e0d0d

Enhance CLI error handling and improve argument parsing for tasks

Browse files
medvqa/cli.py CHANGED
@@ -1,18 +1,41 @@
1
  import argparse
2
  import subprocess
 
 
 
 
 
 
 
 
 
3
 
4
  def main():
5
  print("MedVQA CLI")
6
  parser = argparse.ArgumentParser(description='MedVQA CLI')
7
- parser.add_argument('competition', type=str, help='Name of the competition (e.g., gi-2025)')
8
- parser.add_argument('task', type=int, choices=[1, 2], help='Task number (1 or 2)')
9
- parser.add_argument('submission_repo', type=str, help='Path to the submission repository')
 
 
10
 
11
  args = parser.parse_args()
 
12
 
13
- script_path = f'medvqa/{args.competition}/task{args.task}/run.py'
 
 
 
 
 
14
 
 
 
 
 
 
15
  subprocess.run(['python', script_path, args.submission_repo])
16
 
 
17
  if __name__ == '__main__':
18
  main()
 
1
  import argparse
2
  import subprocess
3
+ import os
4
+
5
+
6
+ report = '''\n⚠️⚠️⚠️\n
7
+ Try installing latest version of the library by running the following command:
8
+ \n pip install git+https://github.com/SushantGautam/MedVQA.git
9
+ \n If you cannot solve the problem add an issue at https://github.com/SushantGautam/MedVQA/issues and report the log above! We will try to solve the problem as soon as possible.\n
10
+ ⚠️⚠️⚠️'''
11
+
12
 
13
  def main():
14
  print("MedVQA CLI")
15
  parser = argparse.ArgumentParser(description='MedVQA CLI')
16
+ parser.add_argument('competition', type=str,
17
+ help='Name of the competition (e.g., gi-2025)')
18
+ parser.add_argument('task', type=str, help='Task number (1 or 2)')
19
+ parser.add_argument('submission_repo', type=str,
20
+ help='Path to the submission repository')
21
 
22
  args = parser.parse_args()
23
+ print("Running with arguments:", args)
24
 
25
+ # Check if competition directory exists
26
+ competition_dir = os.path.join(
27
+ '/Users/sgautam/Documents/MedVQA', args.competition)
28
+ if not os.path.isdir(competition_dir):
29
+ raise FileNotFoundError(
30
+ f"Competition '{args.competition}' does not exist! Need to update library?"+report)
31
 
32
+ # Check if task file exists
33
+ task_file = os.path.join(competition_dir, f'task{args.task}', 'run.py')
34
+ if not os.path.isfile(task_file):
35
+ raise FileNotFoundError(f"Task '{args.task}' does not exist!"+report)
36
+ script_path = f'medvqa/{args.competition}/task{args.task}/run.py'
37
  subprocess.run(['python', script_path, args.submission_repo])
38
 
39
+
40
  if __name__ == '__main__':
41
  main()
medvqa/gi-2025/task1/run.py CHANGED
@@ -2,19 +2,18 @@ import sys
2
  import argparse
3
 
4
 
5
- def get_parser():
6
- parser = argparse.ArgumentParser(description='Task 1 specific arguments')
7
- parser.add_argument('--example_arg', type=str,
8
- help='An example argument for Task 1')
9
- return parser
10
-
11
-
12
- def main(submission_repo, example_arg):
13
- print(
14
- f"Running GI-2025 Task 1 with repository: {submission_repo} and example_arg: {example_arg}")
15
 
16
 
17
  if __name__ == '__main__':
18
- parser = get_parser()
 
 
 
 
 
19
  args = parser.parse_args()
20
- main(args.submission_repo, args.example_arg)
 
2
  import argparse
3
 
4
 
5
+ def main(repo, task_name, verbose=False):
6
+ print(f"Running {task_name} with repository: {repo}")
7
+ if verbose:
8
+ print("Verbose mode is enabled")
 
 
 
 
 
 
9
 
10
 
11
  if __name__ == '__main__':
12
+ parser = argparse.ArgumentParser(description='Run GI-1015 Task 1 (VQA)')
13
+ parser.add_argument('repo1', type=str, help='Repository path')
14
+ parser.add_argument('task_name1', type=str, help='Name of the task')
15
+ parser.add_argument('--verbose1', action='store_true',
16
+ help='Enable verbose mode')
17
+
18
  args = parser.parse_args()
19
+ main(args.repo1, args.task_name1, args.verbose1)
medvqa/gi-2025/task2/run.py CHANGED
@@ -1,7 +1,19 @@
1
  import sys
 
 
 
 
 
 
 
2
 
3
- def main(repo):
4
- print(f"Running GI-2025 Task 2 with repository: {repo}")
5
 
6
  if __name__ == '__main__':
7
- main(sys.argv[1])
 
 
 
 
 
 
 
 
1
  import sys
2
+ import argparse
3
+
4
+
5
+ def main(repo, task_name, verbose=False):
6
+ print(f"Running {task_name} with repository: {repo}")
7
+ if verbose:
8
+ print("Verbose mode is enabled")
9
 
 
 
10
 
11
  if __name__ == '__main__':
12
+ parser = argparse.ArgumentParser(description='Run GI-2025 Task 1 (VQA)')
13
+ parser.add_argument('repo2', type=str, help='Repository path')
14
+ parser.add_argument('task_name2', type=str, help='Name of the task')
15
+ parser.add_argument('--verbose2', action='store_true',
16
+ help='Enable verbose mode')
17
+
18
+ args = parser.parse_args()
19
+ main(args.repo2, args.task_name2, args.verbose2)