I am getting a problem with the display_artifacts function. I have had 110/120. I wonder if the problem is not somewhere else because i have tried everything from deleting the pipeline folder to rewriting the entire notebook.
Here is the error I am getting:
AttributeError Traceback (most recent call last)
in
6
7 # Display the results
----> 8 display_artifacts(store, parent_artifacts, base_dir)
~/work/util.py in display_artifacts(store, artifacts, base_dir)
45 table = {‘artifact id’: , ‘type’: , ‘uri’: }
46 for a in artifacts:
—> 47 table[‘artifact id’].append(a.id)
48 artifact_type = store.get_artifact_types_by_id([a.type_id])[0]
49 table[‘type’].append(artifact_type.name)
I think you are really close. The last thing to do is get the artifacts, so you might want to try another method other than the “get_events_by_artifact_ids.”