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
When reproducing your code, I encountered an error at the step:python trainset.py --component RD
The error message is as follows:run() got an unexpected keyword argument 'num'
After inspecting your code, I found that the matcher mutual instance calls the run method with a parameter named num, which does not exist in the method definition. I suspect you intended to pass the keynum parameter, which does exist in the method. However, after modifying the parameter name to keynum, a new error occurred.
When running the same command with --component RD, the following error is raised:'Namespace' object has no attribute 'RD'
I am very interested in the content of your paper, and I would greatly appreciate it if you could help me resolve this issue.
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Dear Author,
When reproducing your code, I encountered an error at the step:python trainset.py --component RD
The error message is as follows:run() got an unexpected keyword argument 'num'
After inspecting your code, I found that the matcher mutual instance calls the run method with a parameter named num, which does not exist in the method definition. I suspect you intended to pass the keynum parameter, which does exist in the method. However, after modifying the parameter name to keynum, a new error occurred.
When running the same command with --component RD, the following error is raised:'Namespace' object has no attribute 'RD'
I am very interested in the content of your paper, and I would greatly appreciate it if you could help me resolve this issue.
Thank you in advance!
The text was updated successfully, but these errors were encountered: