Skip to content

Commit c91824d

Browse files
[DOCS] Health Suite review port to 2026.0 (#1917)
1 parent fb5e98a commit c91824d

File tree

5 files changed

+18
-54
lines changed

5 files changed

+18
-54
lines changed

health-and-life-sciences-ai-suite/multi_modal_patient_monitoring/docs/user-guide/get-started.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GPU, or NPU.
77
Before you begin, review the [System Requirements](./get-started/system-requirements.md) to
88
ensure your environment meets the recommended hardware and software prerequisites.
99

10-
## Clone the Repository
10+
## 1. Clone the Repository
1111

1212
> **Note:** Make sure you are in the `multi_modal_patient_monitoring` directory before running
1313
> the commands in this guide.
@@ -28,7 +28,7 @@ git checkout release-2026.0.0
2828
cd health-and-life-sciences-ai-suite/multi_modal_patient_monitoring
2929
```
3030

31-
## Configure Hardware Target
31+
## 2. Configure Hardware Target
3232

3333
Each AI workload uses a device environment variable to select its OpenVINO target device.
3434
These are defined in `configs/device.env`:
@@ -50,7 +50,9 @@ When you run `make run` or `make run REGISTRY=false`, the compose file reads
5050
inference engine compiles its OpenVINO model on the requested device, with automatic fallback
5151
to CPU when necessary.
5252

53-
## Run Using Pre‑Built Images (Registry Mode)
53+
## 3. Run the Sample
54+
55+
### Run Using Pre‑Built Images (Registry Mode)
5456

5557
If you want to use pre‑built images from a container registry, run:
5658

@@ -64,7 +66,7 @@ This will:
6466
- Start all services defined in `docker-compose.yaml` in detached mode.
6567
- Print the URL of the UI (for example, `http://<HOST_IP>:3000`).
6668

67-
## Run Using Locally Built Images
69+
### Run Using Locally Built Images
6870

6971
If you prefer to build the images locally instead of pulling from a registry, run the following
7072
commands from the `multi_modal_patient_monitoring` directory:
@@ -80,13 +82,13 @@ make run REGISTRY=false
8082
The Makefile wraps the underlying `docker compose` commands and ensures that all dependent
8183
components (MDPnP, DDS bridge, AI services, and UI) are started with the correct configuration.
8284

83-
To tear everything down when you are done:
85+
To stop and remove all containers when you are done:
8486

8587
```bash
8688
make down
8789
```
8890

89-
## Access the UI
91+
## 4. Access the UI
9092

9193
By default, the UI service exposes port 3000 on the host:
9294

@@ -95,7 +97,7 @@ By default, the UI service exposes port 3000 on the host:
9597
From there you can observe heart rate and respiratory rate estimates, along with waveforms
9698
produced by the rPPG service and aggregated by the patient‑monitoring‑aggregator.
9799

98-
## Control RPPG Streaming
100+
## 5. Control RPPG Streaming
99101

100102
The rPPG service provides a simple HTTP control API (hosted by an internal FastAPI server) to
101103
start and stop streaming:
@@ -108,7 +110,7 @@ start and stop streaming:
108110
Exact URLs and endpoints may differ slightly depending on how the control API is exposed in
109111
your environment; refer to the rPPG service documentation for details.
110112

111-
## View Hardware Metrics
113+
## 6. View Hardware Metrics
112114

113115
The metrics-collector service writes telemetry (GPU, NPU, CPU, power, and other metrics) into
114116
the `metrics` directory on the host, and may also expose summarized metrics via its own API:

health-and-life-sciences-ai-suite/multi_modal_patient_monitoring/docs/user-guide/get-started/system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This section lists the hardware, software, and network requirements for running
5050

5151
## AI Models and Workloads
5252

53-
The application bundles several AI workloads, each with its own model(s) and inputs/outputs:
53+
The application bundles several AI workloads, each with its own model and inputs or outputs:
5454

5555
- **RPPG (Remote Photoplethysmography) Workload:**
5656
- **Model:** MTTS‑CAN (Multi‑Task Temporal Shift Convolutional Attention Network)

health-and-life-sciences-ai-suite/multi_modal_patient_monitoring/docs/user-guide/how-it-works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ observability of AI workloads:
7878
can expose summarized metrics via its own API.
7979

8080
These metrics are useful for validating that AI workloads are correctly utilizing Intel
81-
accelerators and for performance benchmarking.
81+
accelerators, and for performance benchmarking.
8282

8383
### UI Service
8484

health-and-life-sciences-ai-suite/multi_modal_patient_monitoring/docs/user-guide/index.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ hide_directive-->
1111

1212
# Multi-Modal Patient Monitoring
1313

14-
The Multi-Modal Patient Monitoring application is a reference workload that demonstrates how multiple AI pipelines can run simultaneously on a single Intel® platform, providing
14+
The Multi-Modal Patient Monitoring application is a reference workload that demonstrates how
15+
multiple AI pipelines can run simultaneously on a single Intel® platform, providing
1516
consolidated monitoring for a virtual patient.
1617

1718
It combines several AI services:
@@ -20,14 +21,16 @@ It combines several AI services:
2021
from facial video.
2122
- **3D-Pose Estimation:** 3D human pose detection from video.
2223
- **AI-ECG:** ECG rhythm classification from simulated ECG waveforms.
23-
- **MDPNP:** Getting metrics of three simulated devices such as ECG, BP and CO2
24+
- **MDPNP (Medical Device Plug-and-Play):** Getting metrics of three simulated devices such
25+
as ECG, BP and CO2
2426
- **Patient Monitoring Aggregator:** Central service that collects and aggregates vitals from
2527
all AI workloads.
2628
- **Metrics Collector:** Gathers hardware and system telemetry (CPU, GPU, NPU, power) from
2729
the host.
2830
- **UI:** Web-based dashboard for visualizing waveforms, numeric vitals, and system status.
2931

30-
Together, these components illustrate how vision- and signal-based AI workloads can be orchestrated, monitored, and visualized in a clinical-style scenario.
32+
Together, these components illustrate how vision- and signal-based AI workloads can be
33+
orchestrated, monitored, and visualized in a clinical-style scenario.
3134

3235
## Supporting Resources
3336

@@ -45,7 +48,6 @@ Together, these components illustrate how vision- and signal-based AI workloads
4548
4649
get-started.md
4750
how-it-works.md
48-
run-multi-modal-app.md
4951
release-notes.md
5052
5153
:::

health-and-life-sciences-ai-suite/multi_modal_patient_monitoring/docs/user-guide/run-multi-modal-app.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)