I imagine this has been answered, but I could not find.
I am attempting to use:
with open('file:///absolute/path/to/file') as fn:
csv-stuff
however, I am getting Error :
"[Errno 2] No such file or directory: 'file:///absolute/path/to/file'"
The absolute file path is being generated within the following commands from os and mlflow:
data_uri = os.path.join(run.info.artifact_uri, "data")
where "data" was logged without a artifact_path specified with:
mlflow.log_artifact(tempfile_path,"data")
I have been stuck on this for a few days and have not figured out the issue yet. Thanks for the help!
P.S. This is my first post, feel free to tell me if I am doing something wrong. Thanks.