Skip to content

Commit 3cb0549

Browse files
Merge pull request #512 from validmind/update-staging-11711889754
Merge main into staging
2 parents 1cac087 + cafc976 commit 3cb0549

File tree

8 files changed

+51
-13
lines changed

8 files changed

+51
-13
lines changed
Loading

site/developer/model-documentation/work-with-test-results.qmd

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,35 @@ After you have added a test result to your document, you can view the following
5555

5656
4. Locate the test result whose metadata you want to view.
5757

58-
5. Under the test result's name, click on the row indicating the date of the latest changes.
58+
5. Under the test result's name, click on the row indicating the currently [Active]{.green-bg} test result.
5959

6060
- On the test result timeline, click on the **{{< fa chevron-down >}}** associated with a test run to expand for details.
6161
- When you are done, you can either click **Cancel** or **{{< fa x >}}** to close the metadata menu.
6262

6363
![Detail expansion of test runs on the test result timeline](test-run-details.gif){width=85% fig-alt="A gif showcasing detail expansion of test runs on the test result timeline" class="screenshot"}
6464

65+
#### Filter historical test results
66+
67+
By default, test result metadata are sorted by date run in descending order. The latest result is automatically indicated as [Active]{.green-bg}.
68+
69+
To narrow down test runs, you can apply some filters:
70+
71+
1. On the detail expansion for test result metadata, click **{{< fa filter >}} Filter**.
72+
73+
2. On the **Select Your Filters** dialog that opens, enter your filtering criteria for:
74+
75+
- Date range
76+
- Model
77+
- Dataset
78+
- Run by
79+
80+
3. Click **Apply Filters**.
81+
82+
Filters can be removed from the list of test result metadata by clicking on the {{< fa xmark >}} next to them.
83+
84+
<!-- ## Pin historical test results -->
85+
86+
<!-- This functonality has been hidden for now: https://github.com/validmind/frontend/pull/1039#pullrequestreview-2363666887 -->
6587

6688
## What's next
6789

site/guide/model-documentation/_collaborate-with-others-comments.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
### Resolve comments
1818

19-
1. Click the highlighted text portion to view the thread, then click <span style="color: green">{{< fa check >}}</span> to resolve the thread.
19+
1. Click the highlighted text portion to view the thread, then click [{{< fa check >}}]{.green} to resolve the thread.
2020

2121
2. To view the resolved comment thread, click the **{{< fa envelope-circle-check >}} Comments archive** button in the toolbar.
2222

site/guide/model-documentation/collaborate-with-others.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ While working with content blocks in documentation,[^4] you can suggest changes
4141

4242
### Resolve changes
4343

44-
1. Suggested changes appear in <span style="color: green">green</span> or <span style="color: red">~~red~~</span> highlighted text, depending on if the change is adding or removing content respectively.
44+
1. Suggested changes appear in [green]{.green} or [~~red~~]{.red} highlighted text, depending on if the change is adding or removing content respectively.
4545

46-
- To accept or decline a change, click the highlighted text, then click <span style="color: green">{{< fa check >}}</span> or <span style="color: red">{{< fa xmark >}}</span>.
46+
- To accept or decline a change, click the highlighted text, then click [{{< fa check >}}]{.green} or [{{< fa xmark >}}]{.red}.
4747
- You can also reply to a suggested change.
4848

4949
2. To mass accept or decline suggestions, click the dropdown arrow next to the **{{< fa file-pen >}} Track changes** button and select one of the options:

site/guide/model-validation/view-filter-model-findings.qmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,15 @@ To view findings linked to a specific model:
8888

8989
## Filter model findings
9090

91-
By default, model findings for all models are displayed and sorted by creation date, with the latest findings displayed first.
91+
By default, model findings for all models are listed by creation date in descending order.
9292

93-
To narrow down the findings to only those you want to see, you can apply some filters:
93+
To narrow down the findings, you can apply some filters:
9494

9595
1. In the left sidebar, click **{{< fa triangle-exclamation >}} Model Findings** for the list of all model findings.
9696

97-
2. Click {{< fa filter >}} **Filter**.
97+
2. Click **{{< fa filter >}} Filter**.
9898

99-
3. On the **Select Your Filters** dialog that opens, select your filtering criteria for:
99+
3. On the **Select Your Filters** dialog that opens, enter your filtering criteria for:
100100

101101
- Status
102102
- Model inventory

site/index.qmd

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,6 @@ a:hover {
145145

146146
::: {.w-30-ns .mr2 .mb4}
147147

148-
<!-- :::: {.f1}
149-
<span style="color: #de257e">Valid</span>**Mind**
150-
:::: -->
151-
152148
:::: {.f3}
153149
The **purpose-built platform** for model risk management teams to test, document, validate, and govern Generative AI, AI, and statistical models with speed and confidence.
154150
::::
@@ -318,7 +314,7 @@ Gain **hands-on experience** and explore what ValidMind has to offer with our in
318314
![](assets/img/icon-trust.svg)
319315

320316
:::: {.f3}
321-
<span style="color: #de257e">Be</span>**Valid.**
317+
[Be]{.pink}**Valid.**
322318
::::
323319

324320
:::: {.f4}

site/python-docs.zip

-876 Bytes
Binary file not shown.

site/styles.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,26 @@ figcaption {
467467
text-align: center;
468468
}
469469

470+
.green-bg {
471+
background-color: #bbe1afff;
472+
padding: 5px;
473+
border-radius: 3px;
474+
color: #0f3b02ff;
475+
font-size: smaller;
476+
}
477+
478+
.pink {
479+
color: #DE257E;
480+
}
481+
482+
.green {
483+
color: green;
484+
}
485+
486+
.red {
487+
color: red;
488+
}
489+
470490
.bubble {
471491
border: 1px solid #222222;
472492
padding: 5px;

0 commit comments

Comments
 (0)