-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[WIP] feat: update mlflow UI #12334
base: master
Are you sure you want to change the base?
[WIP] feat: update mlflow UI #12334
Conversation
<Typography.Title level={3}>Model Details</Typography.Title> | ||
<InfoItemContainer justifyContent="left"> | ||
{/* TODO: should use versionProperties? */} | ||
<InfoItem title="Version"> |
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.
@RyanHolstien should we use the versionProperties.version for this as well? are we going to deprecate the properties.version?
""" | ||
Represents lineage information for ML entities. | ||
""" | ||
type MLModelLineageInfo { |
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.
let me know if this is valid approach @shirshanka
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 looks right, just needs to have the backend mapping on the resolvers.
}; | ||
|
||
const renderTrainingJobs = () => { | ||
const lineageTrainingJobs = model?.properties?.mlModelLineageInfo?.trainingJobs || []; |
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.
let me know if this is a valid approach @shirshanka
would there be any difference between pulling properties > trainingjobs or pulling relationships > trained by?
</InfoItem> | ||
<InfoItem title="Aliases"> | ||
<InfoItemContent> | ||
{/* use versionProperties for aliases */} |
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.
commenting this out until this get merged : #12166
…at/update-mlflow-ui
Checklist