Hi,

You should provide the link to your Github repo in the github url entry in the submission page. It is only for the organizers to know which repository that your algorithm is based on. As mentioned in the challenge overview, every solution should be linked to a public github repository. So this repository should contain all the necessary files to build your docker container.

Your algorithm failed on a case with the following error:

2021-12-22T12:57:22+00:00 Could not load nodules.json using . 2021-12-22T12:57:27+00:00 Traceback (most recent call last): 2021-12-22T12:57:27+00:00 File "/usr/local/lib/python3.7/runpy.py", line 193, in _run_module_as_main 2021-12-22T12:57:27+00:00 "main", mod_spec) 2021-12-22T12:57:27+00:00 File "/usr/local/lib/python3.7/runpy.py", line 85, in _run_code 2021-12-22T12:57:27+00:00 exec(code, run_globals) 2021-12-22T12:57:27+00:00 File "/opt/algorithm/process.py", line 126, in 2021-12-22T12:57:27+00:00 Nodulegeneration().process() 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/evalutils/evalutils.py", line 183, in process 2021-12-22T12:57:27+00:00 self.process_cases() 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/evalutils/evalutils.py", line 191, in process_cases 2021-12-22T12:57:27+00:00 self._case_results.append(self.process_case(idx=idx, case=case)) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/evalutils/evalutils.py", line 273, in process_case 2021-12-22T12:57:27+00:00 segmented_nodules = self.predict(input_image=input_image) 2021-12-22T12:57:27+00:00 File "/opt/algorithm/process.py", line 86, in predict 2021-12-22T12:57:27+00:00 metadata = pd.read_csv(cxr_info_path) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/util/_decorators.py", line 311, in wrapper 2021-12-22T12:57:27+00:00 return func(args, kwargs) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/parsers/readers.py", line 586, in read_csv 2021-12-22T12:57:27+00:00 return _read(filepath_or_buffer, kwds) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/parsers/readers.py", line 482, in _read 2021-12-22T12:57:27+00:00 parser = TextFileReader(filepath_or_buffer, *kwds) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/parsers/readers.py", line 811, in init 2021-12-22T12:57:27+00:00 self._engine = self._make_engine(self.engine) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/parsers/readers.py", line 1040, in _make_engine 2021-12-22T12:57:27+00:00 return mappingengine # type: ignore[call-arg] 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 51, in init 2021-12-22T12:57:27+00:00 self._open_handles(src, kwds) 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/parsers/base_parser.py", line 229, in _open_handles 2021-12-22T12:57:27+00:00 errors=kwds.get("encoding_errors", "strict"), 2021-12-22T12:57:27+00:00 File "/home/algorithm/.local/lib/python3.7/site-packages/pandas/io/common.py", line 707, in get_handle 2021-12-22T12:57:27+00:00 newline="", 2021-12-22T12:57:27+00:00 FileNotFoundError: [Errno 2] No such file or directory: '/cxr_patch/metadata_nodule.csv'

Best, Ecem