Skip to content

Commit 4d6090b

Browse files
authored
Merge pull request #186 from gsingh91/main
2 parents 68635e7 + 87aca39 commit 4d6090b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vetiver/templates/model_card.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ A [model card](https://doi.org/10.1145/3287560.3287596) provides brief, transpar
4545
```{python}
4646
#| echo: false
4747
model_desc = v.description
48-
num_features = len(v.ptype.construct().dict())
48+
num_features = len(v.prototype.construct().dict())
4949
5050
display(Markdown(f"""
5151
- A {model_desc} using {num_features} feature{'s'[:num_features^1]}.
@@ -91,7 +91,7 @@ display(Markdown(f"""
9191
- The training dataset for this model has the "prototype" or signature:
9292
```{python}
9393
#| echo: false
94-
v.ptype.construct().schema().get("properties")
94+
v.prototype.construct().schema().get("properties")
9595
```
9696

9797
- The evaluation dataset used in this model card is ...

0 commit comments

Comments
 (0)