-
Notifications
You must be signed in to change notification settings - Fork 40
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
Updates to the Croissant turtle definition to align with the spec, and… #634
Conversation
… introduce ML-specific constructs.
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
@marcenacp @ccl-core can you pls take a look at this PR? Thanks! |
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.
Thanks!
croissant:BoundingBox a rdf:class ; | ||
rdfs:label "Label" ; | ||
rdfs:comment "A data type representing a bounding box." ; | ||
rdfs:subClassOf schema:Text . |
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.
schema: StructuredValue
instead of schema: Text
?
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.
Hmm... I'm not sure, because we're providing the values as a single string, and not as a set of properties.
In fact there is already schema.org/GeoShape, with a "box" property of type Text. It's cumbersome to use directly in Croissant because it's a property and not a class.
croissant:Label a rdf:class ; | ||
rdfs:label "Label" ; | ||
rdfs:comment "A machine learning label." ; | ||
rdfs:subClassOf schema:Intangible . |
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.
Can it still be used even if it's Intangible?
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.
Yes, see https://schema.org/Intangible for other examples of Intangible subclasses.
… introduce ML-specific constructs.