-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
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
Fix dataset factory patterns in Experiment Tracking #1588
Conversation
Signed-off-by: ravi-kumar-pilla <[email protected]>
Signed-off-by: ravi-kumar-pilla <[email protected]>
Signed-off-by: ravi-kumar-pilla <[email protected]>
""" | ||
for pipeline in pipelines.values(): | ||
# Temporary try/except block so the Kedro develop branch can work with Viz. | ||
try: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might catch other exceptions. You could try if hasattr(pipeline, 'data_set
):`
Is this ready to be reviewed or still in draft? |
I reverted it to draft PR in favor of 1491 . Apologies for the confusion |
…x/et-dataset_factory Signed-off-by: ravi-kumar-pilla <[email protected]>
Signed-off-by: ravi-kumar-pilla <[email protected]>
Signed-off-by: ravi-kumar-pilla <[email protected]>
Signed-off-by: ravi-kumar-pilla <[email protected]>
…x/et-dataset_factory Signed-off-by: ravi-kumar-pilla <[email protected]>
Signed-off-by: ravi-kumar-pilla <[email protected]>
Hi @noklam, this is now ready for review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM :)
Signed-off-by: ravi-kumar-pilla <[email protected]>
…/kedro-viz into fix/et-dataset_factory Signed-off-by: ravi-kumar-pilla <[email protected]>
For reference, @rashidakanchwala shared an alternative solution here. @ravi-kumar-pilla What was the reason that this wasn't accepted, is it because of some edge case? I guess I don't understand why |
Hi @noklam , Thanks for mentioning it here. @rashidakanchwala and I had a discussion on this. So, based on what I understood from this PR -
Let me know what do you think of this. Thank you |
I think this is a good point, thanks for clarifying. |
This is minor release with big backend refactoring work and some bug fixes. Bug fixes and other changes Refactor flowchart dataclasses to pydantic base models. (Refactor Flowchart models from dataclass to pydantic base models #1565) Fix dataset factory patterns in Experiment Tracking. (Fix dataset factory patterns in Experiment Tracking #1588) Update demo-project to use OmegaConfigLoader. (Update demo project to use OmegaConfigLoader #1590) Improve feedback for copy to clipboard feature. (Add tooltip to shareable urls copy button #1614) Ensure Kedro-Viz works when hosted on a URL subpath. (Fix: Kedro-Viz doesn't work when hosted via a URL subpath #1621) Bump fastapi upper bounds. (Bump FAST API upper bounds #1634) Fix shareable URL modal to appear across the app. (Make shareable URL modal open globally across the app. #1639) Add Kedro-Viz CLI command deprecation warning. (Add kedro viz deprecation warning for CLI #1641)
Description
Resolves #1480
Development notes
Example patterns -
QA notes
kedro run
, you should see the factory pattern datasets in the experiment tracking runChecklist
RELEASE.md
file