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
I'll create a task like Function that won't be saved.
for example
importgokartclassPipeline(gokart.TaskOnKart):
defrequires(self):
data=LoadData()
features= [MakeFeatureA(data=data), MakeFeatureB(data=data), MakeFeatureC(data=data)]
# `Flatten` is a Task, but we don't want to dump result because the data will be too large :(feature=Flatten(features=features, axis=1)
model=TrainModel(feature=feature)
returnmodel
The text was updated successfully, but these errors were encountered:
Function's result will not be dumped to TASK_WORKSPACE, but will be temporarily stored in a tmp file.
In the second runs, There is no file, but it will be skipped judgment for whether the task has been executed.
I'll create a task like
Function
that won't be saved.for example
The text was updated successfully, but these errors were encountered: