-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
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
Please post any comments on the pydra notebooks here. #147
Comments
I didn't see any examples of tasks made from imported functions (rather than decorators applied at function definition) in the notebooks. For example, to create a task for the import function # To convert an existing function into a task
# NOTE: Does not work with ufuncs
import numpy as np
import pydra
fft = pydra.mark.annotate({'a': np.ndarray, 'return': float})(np.fft.fft)
fft = pydra.mark.task(fft) |
@tsalo - thank you! will add it! |
@djarecka - has this been added to the tutorial? if so please close this. |
I will |
I also ran into the same bug as @nicolocin. I'm going through the binder notebooks and everything worked up until DockerTask |
Thanks @nicolocin and @jsmentch . I'm updating the tutorials and will make sure that this works! |
actually this example will not work with binder, have to make this clear. At least the current docker container we're using with binder doesn't run docker inside. @nicolocin - you didn't say where are you running the notebook. Could you please confirm that this was with binder as well? |
@djarecka yes got that error on binder! If it doesn't work with binder should we exclude that from the tutorial then? Or at least a note saying that for now |
we would like to collect feedback in one place. if you test things out yourself or through binder, please post any comments here.
The text was updated successfully, but these errors were encountered: