mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-26 17:03:45 +02:00
more friendly messages in the python evaluation script to make it more easy for the users to understand what is happening
This commit is contained in:
parent
1f11b3bf55
commit
088b71a99a
1 changed files with 3 additions and 2 deletions
|
@ -179,7 +179,8 @@ def check_folder_results(folder_path):
|
||||||
|
|
||||||
# Print summary
|
# Print summary
|
||||||
print("\n=== Evaluation Results ===")
|
print("\n=== Evaluation Results ===")
|
||||||
print(f"Total tasks evaluated: {results['total']}")
|
print("\nEvaluating Tasks!")
|
||||||
|
print(f"Results so far: {results['total']}")
|
||||||
|
|
||||||
if "construction" not in folder_path:
|
if "construction" not in folder_path:
|
||||||
print(f"Successful tasks: {results['successful']}")
|
print(f"Successful tasks: {results['successful']}")
|
||||||
|
@ -517,7 +518,7 @@ def make_ops(agent_names, session_name):
|
||||||
if agents_op:
|
if agents_op:
|
||||||
print("Agents are operators! You are good to go :D")
|
print("Agents are operators! You are good to go :D")
|
||||||
else:
|
else:
|
||||||
print("Agents are not operators! Something went wrong :(")
|
print("Agents are not operators! We will need to try making them operators again!")
|
||||||
make_ops(agent_names, session_name)
|
make_ops(agent_names, session_name)
|
||||||
|
|
||||||
def check_agent_ops(agent_names, ops_file="ops.json"):
|
def check_agent_ops(agent_names, ops_file="ops.json"):
|
||||||
|
|
Loading…
Add table
Reference in a new issue