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
The voting stage before it votes, runs stage_register_templates to register all templates to the subjects. This is the longest step and frequently has issues with both memory and walltime.
Currently we store these results in self.temp_dir which means that every time the job fails, we lose the results and have to restart from scratch.
The voting stage before it votes, runs
stage_register_templates
to register all templates to the subjects. This is the longest step and frequently has issues with both memory and walltime.Currently we store these results in
self.temp_dir
which means that every time the job fails, we lose the results and have to restart from scratch.The key line is:
We could just remove self.temp_dir, which would cause the files to be generated in
registrations/
or perhaps a subdir, such asvoting
@raihaan Can you help me with a play dataset to test such a change?
The text was updated successfully, but these errors were encountered: