-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scanalyzer #24
base: main
Are you sure you want to change the base?
Scanalyzer #24
Conversation
I like the added documentation, but I think it's best not to include binary files (such as the PDF) in the repo. |
-h, --help show this help message and exit | ||
--use-half-segments If present, each segment is split in half and moves independently. | ||
--seed SEED random seed | ||
--output OUTPUT output file name. If not provided, it writes to the stdout. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--output OUTPUT output file name. If not provided, it writes to the stdout. | |
--output OUTPUT output file name. If not provided, it writes to stdout. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the binary file and add a link to the PDF to the README instead: https://doi.org/10.1609/icaps.v20i1.13431 .
action="store_true", | ||
help="If present, each segment is split in half and moves independently.") | ||
parser.add_argument("--seed", type=int, default=1, help="random seed") | ||
parser.add_argument("--output", default=None, help="output file name. If not provided, it writes to the stdout.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parser.add_argument("--output", default=None, help="output file name. If not provided, it writes to the stdout.") | |
parser.add_argument("--output", default=None, help="output file name. If missing, write to stdout.") |
No description provided.