Spaces:
Runtime error
Runtime error
Update main_backend.py
Browse files- main_backend.py +1 -1
main_backend.py
CHANGED
@@ -111,7 +111,7 @@ def main():
|
|
111 |
parser = argparse.ArgumentParser(description="Run auto evaluation with optional reproducibility feature")
|
112 |
|
113 |
# Optional arguments
|
114 |
-
parser.add_argument("--reproduce", type=bool, default=
|
115 |
parser.add_argument("--model", type=str, default=None, help="Your Model ID")
|
116 |
parser.add_argument("--precision", type=str, default="float16", help="Precision of your model")
|
117 |
parser.add_argument("--publish", type=bool, default=False, help="whether directly publish the evaluation results on HF")
|
|
|
111 |
parser = argparse.ArgumentParser(description="Run auto evaluation with optional reproducibility feature")
|
112 |
|
113 |
# Optional arguments
|
114 |
+
parser.add_argument("--reproduce", type=bool, default=False, help="Reproduce the evaluation results")
|
115 |
parser.add_argument("--model", type=str, default=None, help="Your Model ID")
|
116 |
parser.add_argument("--precision", type=str, default="float16", help="Precision of your model")
|
117 |
parser.add_argument("--publish", type=bool, default=False, help="whether directly publish the evaluation results on HF")
|