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 Nov 3, 2023. It is now read-only.
I am interested in generating regression tests for a multi-task learning scenario.
While I am able to train or interact with the agents (ex: parlai dd -t task1,task2 ), when I try to create a regression test in a similar manner, I run into an exception while running pytest.
This becomes especially problematic when I have task-specific arguments that I want to include. For instance, in a perfect world, my test would look like the following:
class TestMultitask(AutoTeacherTest):
task = "task1:arg1=x,arg2=y,task2:arg3=a,arg4=b"
I believe the problem is that commas are overloaded with multiple meanings -- 1) to indicate multiple tasks and 2) to indicate multiple arguments.
For what it's worth, the traceback I have when running pytest is as following:
I suppose I could try removing the task-specific arguments in my regression test to see if multitask regression tests can be made, and that could narrow down the scope.
This issue has not had activity in 30 days. Please feel free to reopen if you have more issues. You may apply the "never-stale" tag to prevent this from happening.
Hi,
I am interested in generating regression tests for a multi-task learning scenario.
While I am able to train or interact with the agents (ex:
parlai dd -t task1,task2
), when I try to create a regression test in a similar manner, I run into an exception while runningpytest
.This becomes especially problematic when I have task-specific arguments that I want to include. For instance, in a perfect world, my test would look like the following:
I believe the problem is that commas are overloaded with multiple meanings -- 1) to indicate multiple tasks and 2) to indicate multiple arguments.
For what it's worth, the traceback I have when running
pytest
is as following:Thanks!
The text was updated successfully, but these errors were encountered: