I’m unsure what’s wrong with the pipeline I built.
I verified that all the outputs from the transform preprocessing match with the expected outputs
however when I ran the tensorflow extended Transform component I recieved
InvalidArgumentError: Cannot find the given id 1
when it attempted to run context.run(transform, enable_cache=False)
I’m quite sure I have set the example schema and file path correctly
Fixed my own issues after shuffling through a lot of old posts, apparently I needed to run it with context.run
for all of the generators. I was initially running with InteractiveContext().run(generator)
at least in the first exercise and I guess the grader never caught that I was performing the wrong operations as after that I noticed didn’t fully understand that you will need to perform context.run(generator)
and how the InteractiveContext
object works.
Safe to say I should have read the feature Engineering pipeline lab more carefully as this would have alleviated any issue I had in the first place.