File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,17 +87,17 @@ def validate(gold_file: str, pred_file: str) -> list[str]:
8787def main (
8888 predictions_file : Annotated [
8989 str ,
90- typer .Option (help = "Path to the prediction file." ),
90+ typer .Option ("-p" , help = "Path to the prediction file." ),
9191 ],
9292 goldstandard_folder : Annotated [
9393 str ,
9494 typer .Option (
95- help = "Path to the folder containing the goldstandard file." ,
95+ "-g" , help = "Path to the folder containing the goldstandard file." ,
9696 ),
9797 ],
9898 output_file : Annotated [
9999 str ,
100- typer .Option (help = "Path to save the results JSON file." ),
100+ typer .Option ("-o" , help = "Path to save the results JSON file." ),
101101 ] = "results.json" ,
102102):
103103 """Validates the predictions file in preparation for evaluation."""
You can’t perform that action at this time.
0 commit comments