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
fw.display() function doesn't show the inputs/outputs of a workflow, shows only the variables between steps.
Example: @is_fairworkflow(label='My Workflow for converting to Grayscale and adding text') def my_workflow(im1, text): """ A simple addition, subtraction, multiplication workflow """ im2 = rgb2gray_image(im1) im3 = add_text_to_image(im2, text) return im3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
fw.display() function doesn't show the inputs/outputs of a workflow, shows only the variables between steps.
Example:
@is_fairworkflow(label='My Workflow for converting to Grayscale and adding text')
def my_workflow(im1, text):
"""
A simple addition, subtraction, multiplication workflow
"""
im2 = rgb2gray_image(im1)
im3 = add_text_to_image(im2, text)
return im3
The text was updated successfully, but these errors were encountered: