Hi, is it possible to wrap a flyte task within a w...
# ask-the-community
a
Hi, is it possible to wrap a flyte task within a wrapper class implementation. When I tried calling the fit_classifier task from an object of the class I get an error message. Do you have any recommendation on how to wrap a flyte task in a class implementation?
Copy code
class model_wrapper:
    @task
    def fit_classifier(self, train: pd.DataFrame,
                       val: pd.DataFrame) -> JoblibSerializedFile:

        # fetch the features and target columns from the train dataset
        x = train[train.columns[1:]]
        y = train[train.columns[0]]

        # fetch the features and target columns from the validation dataset
        eval_x = val[val.columns[1:]]
        eval_y = val[val.columns[0]]

        m = self.xgb_classifier()
        # fit the model to the train data
        m.fit(x, y, eval_set=[(eval_x, eval_y)])

        working_dir = flytekit.current_context().working_directory

        fname = os.path.join(working_dir, "model.joblib.dat")
        joblib.dump(m, fname)

        # return the serialized model
        return JoblibSerializedFile(path=fname)
Error message
Copy code
...
raise _user_exceptions.FlyteAssertion("Input was not specified for: {} of type {}".format(k, var.type))
flytekit.exceptions.user.FlyteAssertion: Input was not specified for: self of type simple: NONE
e
@Adedeji Ayinde we should sync tomorrow on what you want to do. There is probably a Flyte friendly alternative way to get what you want or a good opportunity to try UnionML, which is a conscience wrapper for ML Pipelines in Flyte.
n
I can help! You basically have to write a custom task resolver
would be happy to show off UnionML too of course, but also happy to talk through the more general solution if you want to roll your own task constructs
e
Just for clarification…adedeji and I work together!
Learning about rolling our own task constructs would be really interesting
n
cool, lemme know if you want to set up a time to chat this week, you can invite me
<mailto:niels@union.ai|niels@union.ai>
@Evan Sadler @Adedeji Ayinde if you’re curious about how to write your own task resolvers you can join the UnionML OSS planning and we can discuss there! https://us06web.zoom.us/j/85830795287 It’s at 12pm EST/9am PST if you can make it!
154 Views