process.py: error: unrecognized arguments:

process.py: error: unrecognized arguments:  

  By: xiongfengzhu on Dec. 10, 2021, 3:07 p.m.

Hello, I tried to run . ./test.sh at node21_detection_baseline, but it went wrong. Can you please give some suggestions to solve it? Thanks!

Successfully built b92c8b933c21 Successfully tagged noduledetector:latest noduledetection-output WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. parameters are usage: process.py [-h] [--train] [--retrain] [--retest] input_dir output_dir process.py: error: unrecognized arguments: cat: /output/nodules.json: No such file or directory Expecting value: line 1 column 1 (char 0) Traceback (most recent call last): File "", line 1, in FileNotFoundError: [Errno 2] No such file or directory: '/output/nodules.json' Expected output was not found... noduledetection-output

Re: process.py: error: unrecognized arguments:  

  By: cxk340 on Dec. 11, 2021, 6:10 a.m.

I had to make this change in line 4 of entrypoint.sh and the test script ran without errors.

python3.7 process.py /input/ /output/ $params

 Last edited by: cxk340 on Aug. 15, 2023, 12:55 p.m., edited 1 time in total.

Re: process.py: error: unrecognized arguments:  

  By: xiongfengzhu on Dec. 11, 2021, 1:18 p.m.

Thank you very much for your kind reply!