BAAI-Agents / Cradle

The Cradle framework is a first attempt at General Computer Control (GCC). Cradle supports agents to ace any computer task by enabling strong reasoning abilities, self-improvment, and skill curation, in a standardized general environment with minimal requirements.
https://baai-agents.github.io/Cradle/
MIT License
1.56k stars 141 forks source link

How to calculate the game time? #19

Closed ChenVoid closed 2 months ago

ChenVoid commented 2 months ago

Thanks for your great work! I wonder how to get the game time in this paper. Looking forward to your relpy.

WeihaoTan commented 2 months ago

Thank you for reaching out. Could you elaborate on which game time you are referring to? If you are referring to the 40 mins gameplay, it is the time that a fresh human player needs to finish the first two missions.

ChenVoid commented 2 months ago

image Thank you for your reply. I would like to ask how the 10-minute game time mentioned in the paper is calculated? Is there a place in the game where I can obtain this information? Thank you.

WeihaoTan commented 2 months ago

The 10 minutes mentioned refers to the cumulative time spent by the agent performing actions in the game, representing the actual time elapsed in the game without any pauses. We just record and accumulate the time for executing each action (the time between unpause and pause) and check whether it reaches the limit.

ChenVoid commented 2 months ago

The 10 minutes mentioned refers to the cumulative time spent by the agent performing actions in the game, representing the actual time elapsed in the game without any pauses. We just record and accumulate the time for executing each action (the time between unpause and pause) and check whether it reaches the limit.

Oh, I have known how to calculate it. Thanks for your reply.