Ahmad Mustafa Anis

Results 16 comments of Ahmad Mustafa Anis

https://colab.research.google.com/drive/1EPF-BDLjwY4AATwCOvmo65uNPzClM4fc?usp=sharing This is my notebook. The environment seems to have some conflicting packages maybe.

Do you have yours, or anyone else's notebook for colab available? This would be a lot more easier for me.

I am getting the same error for my simple code. Here is my code ```python3 from zenml.steps import step, Output @step def data_loader() -> Output(x_train=np.ndarray, y_train=np.ndarray, x_test=np.ndarray, y_test=np.ndarray): """ return...

@dudeperf3ct I am still getting this error. ``` StepInterfaceError: Unable to find materializer for output 'untrained_model' of type `` in step 'initialize_model'. Please make sure to either explicitly set a...

Yes I installed it via pip, not integrated via zenml. I guess that's the issue, I'll try with zenml integration this weekend.

@dnth Thanks, working like charm now. This means that almost every object, that is a output from a zenml step(or input to), needs to be installed via `zenml integration install`...