|
|
|
|
|
|
print( |
|
|
|
f"Running training with python={python_version or latest} and c#={csharp_version or latest}" |
|
|
|
) |
|
|
|
nn_file_expected = f"./results/{run_id}/3DBall.nn" |
|
|
|
output_dir = "models" if python_version else "results" |
|
|
|
nn_file_expected = f"./{output_dir}/{run_id}/3DBall.nn" |
|
|
|
if os.path.exists(nn_file_expected): |
|
|
|
# Should never happen - make sure nothing leftover from an old test. |
|
|
|
print("Artifacts from previous build found!") |
|
|
|