You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
In the documentation, the example commands for MTSAC-MetaWorld do not seem to include task index as model's input, which means that the model has no way of identifying different tasks.
How to reproduce
Add this line to the encode() function in mtrl/agent/components/actor.py:
Should I add agent.multitask.should_use_task_encoder=True if I want to concat task id with state? Or can you provide example codes for running MTSAC with task id concated with state?
The text was updated successfully, but these errors were encountered:
Hi! The MTSAC uses different entropy regularizers for each task and hence task id is not passed to the encoder. I dont think we support concatenating task id. The closest thing is concatenating the task emebdding. For that, you can set agent.multitask.should_use_task_encoder=True
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
In the documentation, the example commands for MTSAC-MetaWorld do not seem to include task index as model's input, which means that the model has no way of identifying different tasks.
How to reproduce
Add this line to the encode() function in mtrl/agent/components/actor.py:
print(self.should_concatenate_task_info_with_encoder)
Then run the provided example commands for MTSAC-MetaWorld:
Stack trace / error message
It gives False.
Should I add agent.multitask.should_use_task_encoder=True if I want to concat task id with state? Or can you provide example codes for running MTSAC with task id concated with state?
The text was updated successfully, but these errors were encountered: