-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Training without network mode #94
Comments
Hello, because on gpu, it should be fast. |
also you can try parallel training, this simulation is suitable for that purpose. |
Thank you very much for your reply! |
Hello, if you want, you can prevent a lot of information from being sent during communication by managing the state. This might help to improve speed. However, such delays should not occur in communication. Can you try with and without this function. |
I haven't tried changing this function, I've always set it like this: |
Now I have tried this function,I set this: |
yes that is exactly async mode. when you send states, on the background it continue to run simulation. but if you activate it, it waits action information to take step. |
Thank you very much for your advice. I will check my project again. |
You welcome. Yes we made our all tests in ubuntu. |
The need for an async mode could be solved in several ways. |
Excuse me, Is there any method that does not require network mode training?
Because I think the network communication time may affect the execution speed of each step in RL and thus affect the training time.
I'm training MARL now and each step takes about 100-200ms (I have already set this: df.set_renderless_mode(True)), is this speed normal?
I think the training speed is too slow
The text was updated successfully, but these errors were encountered: