We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Figure out the pickle issue mentioned here: facebookresearch/fairseq#5315
conf.zip
@hydra.main(config_path="conf", config_name="generate_multi_full") def main(config: DictConfig) -> None: launcher = hydra.utils.instantiate(config.launcher) module = GenerateMultiModule(config) asyncio.run(module.run()) # asyncio.run(tabulate(config))
and modify the run method of GenerateMultiModule class by prepending it with the following:
run
GenerateMultiModule
jobs = self.array() for iteration_value in jobs:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Figure out the pickle issue mentioned here:
facebookresearch/fairseq#5315
Conf file
conf.zip
Current workaround:
and modify the
run
method ofGenerateMultiModule
class by prepending it with the following:The text was updated successfully, but these errors were encountered: