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
I had a notebook main.ipynb that imports a function from the file inference.py
main.ipynb
inference.py
The script generated main is going to fail because the ipython2cwl doesn't copy the inference.py file
main
ipython2cwl
#!/usr/bin/env ipython """ def main(cameraType, siteID, modelPath): import numpy as np import inference, hpwren
$ ls main
The text was updated successfully, but these errors were encountered:
Dear @mosoriob , thanks for this report
Please try adding something like local_script: 'CWLFilePathInput' = 'inference.py' towards the beginning of each cell that needs inference.py?
local_script: 'CWLFilePathInput' = 'inference.py'
By the way, if you can share your notebook then that will make it easier to help you.
Sorry, something went wrong.
Hi @mr-c
The notebook is available at https://github.com/iperezx/edge-plugin-smokedetect
A full description of the issue is here
mintproject/mic#344
I don't like the idea of exposing the inference.py as input because the user who runs the model is not always the author.
No branches or pull requests
I had a notebook
main.ipynb
that imports a function from the fileinference.py
The script generated
main
is going to fail because theipython2cwl
doesn't copy theinference.py
fileThe text was updated successfully, but these errors were encountered: