-
Notifications
You must be signed in to change notification settings - Fork 356
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
feat: exclude Array
type columns
#9808
Conversation
✅ Deploy Preview for determined-ui ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9808 +/- ##
==========================================
- Coverage 54.27% 50.00% -4.27%
==========================================
Files 1261 938 -323
Lines 155642 126338 -29304
Branches 3536 3535 -1
==========================================
- Hits 84475 63176 -21299
+ Misses 71029 63024 -8005
Partials 138 138
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@keita-determined How do I add metadata to a run/create a run with metadata? |
i ususually use this API For example: curl -X 'POST' \
'http://latest-main.determined.ai:8080/api/v1/runs/46434/metadata' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"runId": 46434,
"metadata": {
"aa": 1,
"a": "test",
"b" : "ff"
}
}' |
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.
Works, though it displays arrays like this [1,2,3,[2,4]]
with all the spaces removed, which looks a little cramped.
yep |
Ticket
ET-654
Description
excluding ARRAY type columns from filter and sort
How to Add Metadata❓
If you wanna add metadata, look at this comment
Test Plan
[1, 2, 3, [2, 4]]
Checklist
docs/release-notes/
See Release Note for details.