File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,10 @@ The following terms are used in this section:
5959
6060 A URL to get the source code or resources needed to build or understand the model's implementation.
6161
62+ - ** datasetsURL** _ array of string_ , OPTIONAL
63+
64+ A list of links or references to datasets that the model was trained upon.
65+
6266 - ** revision** _ string_ , OPTIONAL
6367
6468 The source control revision identifier for the model.
@@ -163,6 +167,7 @@ Here is an example model artifact configuration JSON document:
163167 "description": "xyz is a large language model.",
164168 "docURL": "https://www.xyz.com/get-started/",
165169 "sourceURL": "https://github.com/xyz/xyz3",
170+ "datasetsURL": ["https://www.xyz.com/datasets/"],
166171 "revision": "1234567890",
167172 "licenses": [
168173 "Apache-2.0"
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ type ModelDescriptor struct {
7373 // The URL to get source code for building the model
7474 SourceURL string `json:"sourceURL,omitempty"`
7575
76+ // The URLs to reference to datasets that the model was trained upon.
77+ DatasetsURL []string `json:"datasetsURL,omitempty"`
78+
7679 // The version of the packaged software
7780 Version string `json:"version,omitempty"`
7881
You can’t perform that action at this time.
0 commit comments