Skip to content

Commit d40104a

Browse files
Changed _obscure to _undefined
Signed-off-by: Steve Springett <steve@springett.us>
1 parent ad38768 commit d40104a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cdx/ai-ml.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Model properties reflect on the methods used to control the model's parameter co
7575
| -------- | ----------- |
7676
| `cdx:ai-ml:model:parameter:count` | Total number of learned parameters for the model. This reflects the model's design and structure (e.g., number of layers in a neural network, nodes, and connectivity). </br> The value SHOULD use the industry-standard naming convention of number followed by one of the letters: `M` (Million), `B` (Billion) or `T` (Trillion). May appear once. |
7777
| `cdx:ai-ml:model:parameter:tune_method` | Describes how the model was fine-tuned on or adapted to new data. This property MAY appear multiple times. Value SHOULD be of industry-standard keywords such as those [listed in the section below](#names-of-industry-standard-fine-tuning-methods). Value MUST be a single keyword (e.g., `lora`) or a comma separated list of keywords (e.g., `sft,rlhf`). </br> This property MAY occur multiple times. |
78-
| `cdx:ai-ml:model:parameter:_obscure:<NAME>` | `<NAME>` placeholder, used to provide an arbitrary model parameter name. Arbitrarty value and meaning. |
78+
| `cdx:ai-ml:model:parameter:_undefined:<NAME>` | `<NAME>` placeholder, used to provide an arbitrary model parameter name. Arbitrarty value and meaning. |
7979

8080
### Names of industry-standard fine-tuning methods
8181

@@ -144,7 +144,7 @@ The following pseudocode shows how you would include a model parameter that is n
144144
"modelParameters": {
145145
"properties": [
146146
{
147-
"name": "cdx:ai-ml:model:parameter:_obscure:foo",
147+
"name": "cdx:ai-ml:model:parameter:_undefined:foo",
148148
"value": "bar"
149149
}
150150
]
@@ -178,7 +178,7 @@ Given that there are some commonly agreed-upon model configuration property name
178178
| `cdx:ai-ml:model:hyperparameter:quantization` | Defines the numerical precision (number of bits) used to store a model's weights (as tensors) (e.g., `bf16`, `q4_k_m`, `q8_0`, etc.). |
179179
| `cdx:ai-ml:model:hyperparameter:tokenizer_class` | The specific software class (i.e., implementation) used to convert raw text into token IDs and back (e.g., `GPT2Tokenizer`, `LlamaTokenizer`, etc. ). |
180180
| `cdx:ai-ml:model:hyperparameter:vocab_size` | The size of the token vocabulary. |
181-
| `cdx:ai-ml:model:hyperparameter:_obscure:<NAME>` | `<NAME>` placeholder, used to provide an arbitrary model hyperparameter name. Arbitrarty value and meaning. |
181+
| `cdx:ai-ml:model:hyperparameter:_undefined:<NAME>` | `<NAME>` placeholder, used to provide an arbitrary model hyperparameter name. Arbitrarty value and meaning. |
182182

183183
Each well-known property MAY be used once.
184184

@@ -230,7 +230,7 @@ The following pseudocode shows how to include a model hyperparameter that is not
230230
"modelParameters": {
231231
"properties": [
232232
{
233-
"name": "cdx:ai-ml:model:hyperparameter:_obscure:hamm",
233+
"name": "cdx:ai-ml:model:hyperparameter:_undefined:hamm",
234234
"value": "eggz"
235235
},
236236
]
@@ -265,7 +265,7 @@ Given that there are some commonly agreed-upon tokenizer configuration property
265265
| `cdx:ai-ml:tokenizer:hyperparameter:tokenizer_class` | The named tokenizer (class) implementation configured for the model when the tokenizer support multiple possible implementations. |
266266
| `cdx:ai-ml:tokenizer:hyperparameter:unk_token` | The special token configured in a tokenizer to replace any input character or word that is not found in the model's vocabulary. |
267267
| `cdx:ai-ml:tokenizer:hyperparameter:vocab_size` | The configured size of the token vocabulary. Please note this value SHOULD match the `vocab_size` model hyperparameter value if both are declared on the same model card. |
268-
| `cdx:ai-ml:tokenizer:hyperparameter:_obscure:<NAME>` | `<NAME>` placeholder, used to provide an arbitrary tokenizer hyperparameter name. Arbitrarty value and meaning. |
268+
| `cdx:ai-ml:tokenizer:hyperparameter:_undefined:<NAME>` | `<NAME>` placeholder, used to provide an arbitrary tokenizer hyperparameter name. Arbitrarty value and meaning. |
269269

270270
Each well-known property MAY be used once, if not stated otherwise.
271271

@@ -323,7 +323,7 @@ In the same way as shown in the model's `hyperparameter` example, the following
323323
"value": "LLMTokenizer"
324324
},
325325
{
326-
"name": "cdx:ai-ml:tokenizer:hyperparameter:_obscure:baz",
326+
"name": "cdx:ai-ml:tokenizer:hyperparameter:_undefined:baz",
327327
"value": "qux"
328328
}
329329
]

0 commit comments

Comments
 (0)