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
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?
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?