Skip to content
Draft
4 changes: 4 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@


# we do the hilighting outselves via `prism`
highlighter: none
8 changes: 8 additions & 0 deletions _includes/head-custom.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% comment %}
see https://github.com/jekyll/minima/blob/master/_includes/custom-head.html
{% endcomment %}

<link rel="stylesheet" href="{{ '/assets/css/prism.css' | relative_url }}">
<script defer src="{{ '/assets/js/prism.js' | relative_url }}"></script>

<meta data-foo="bar-10" />
1 change: 1 addition & 0 deletions assets/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*/prism.* linguist-vendored linguist-generated
3 changes: 3 additions & 0 deletions assets/css/prism.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions assets/js/prism.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions cdx/ai-ml.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ _Boolean value_ are `true` or `false`; case sensitive.

### Example: Using multiple languages

```jsonc
```json5
{
// ...
"components": [{
Expand Down Expand Up @@ -96,7 +96,7 @@ These following and similar values SHOULD be used on the `cdx:ai-ml:model:parame

The following pseudocode shows how you would include the defined (reserved) `count` and `tuning_method` model parameters on an ML model's model card:

```jsonc
```json5
{
// ...
"components": [{
Expand Down Expand Up @@ -133,7 +133,7 @@ The following pseudocode shows how you would include the defined (reserved) `cou

The following pseudocode shows how you would include a model parameter that is not currently listed in the AI/ML namespace taxonomy. Below, we introduce the metasyntactic parameter name `foo` with a value `bar`.

```jsonc
```json5
{
// ...
"components": [{
Expand Down Expand Up @@ -186,7 +186,7 @@ Each well-known property MAY be used once.

The following pseudocode shows how you would include the defined (reserved) `hidden_act`, `hidden_size` and `num_hidden_layers` model hyperparameters on an ML model's model card:

```jsonc
```json5
{
// ...
"components": [{
Expand Down Expand Up @@ -219,7 +219,7 @@ The following pseudocode shows how you would include the defined (reserved) `hid

The following pseudocode shows how to include a model hyperparameter that is not currently listed in the AI/ML namespace taxonomy. Below, we introduce the metasyntactic hyperparameter name `hamm` with a value `eggz`.

```jsonc
```json5
{
// ...
"components": [{
Expand Down Expand Up @@ -279,7 +279,7 @@ Each well-known property MAY be used once, if not stated otherwise.

The following pseudocode shows how you would include the defined (reserved) `eos_token` and `vocab_size` tokenizer hyperparameters on an ML model's model card:

```jsonc
```json5
{
// ...
"components": [{
Expand Down Expand Up @@ -310,7 +310,7 @@ The following pseudocode shows how you would include the defined (reserved) `eos

In the same way as shown in the model's `hyperparameter` example, the following pseudocode shows how you would include a tokenizer hyperparameter that is not currently listed in the AI/ML namespace taxonomy. Below, we introduce the metasyntactic hyperparameter name `baz` with a value `qux`.

```jsonc
```json5
{
// ...
"components": [{
Expand Down