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
TaskOnKart.fix_random_seed_value
Following code reproduces the error.
class EachTask(gokart.TaskOnKart): serialized_task_definition_check = True user = luigi.IntParameter() def run(self): print(self.user) self.dump(self.user) class RunTask(gokart.TaskOnKart): serialized_task_definition_check = True def run(self): for i in range(5): done = yield EachTask(user=i) print("result", self.load(done)) self.dump("done") gokart.build(RunTask(), log_level=logging.INFO, reset_register=False)
ValueError: invalid literal for int() with base 10: 'None'
The text was updated successfully, but these errors were encountered:
Need OptionalIntParameter, which is very recent and not released feature 😿
OptionalIntParameter
spotify/luigi#3079
Sorry, something went wrong.
Hi-king
Successfully merging a pull request may close this issue.
Following code reproduces the error.
The text was updated successfully, but these errors were encountered: