You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
filter datasets by attribute name (is this part of dc.datasets() and DatasetInfo?)
- like ds.datasets().filter(func.or_(func.array.contains("attribute", "NLP"), func.array.contains("attribute", "Natural Language Processing") )
- like ds.datasets().filter(func.array.contains("descr", "chatgpt"))
filter datasets by attribute names with values
- like ds.datasets().filter(func.array.contains("attribute", "location=US"))
- like ds.datasets().filter(func.array.contains("attribute", "location=*")) # I'd appreciate ideas how to generalize this
Make sure all from the above work in CLI
Make sure all from the above work in Studio
Make sure all from the above work in CLI where datasets are in Studio
The text was updated successfully, but these errors were encountered:
Description
labels
toattributes
and allow adding values #1015- like
ds.datasets().filter(func.or_(func.array.contains("attribute", "NLP"), func.array.contains("attribute", "Natural Language Processing") )
- like
ds.datasets().filter(func.array.contains("descr", "chatgpt"))
- like
ds.datasets().filter(func.array.contains("attribute", "location=US"))
- like
ds.datasets().filter(func.array.contains("attribute", "location=*"))
# I'd appreciate ideas how to generalize thisThe text was updated successfully, but these errors were encountered: