Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ tags:
|
|
| 10 |
- arfbench
|
| 11 |
- observability
|
| 12 |
paper:
|
| 13 |
-
-
|
| 14 |
datasets:
|
| 15 |
- Datadog/ARFBench
|
| 16 |
leaderboards:
|
|
@@ -56,7 +56,7 @@ This model repository stores inference artifacts, including:
|
|
| 56 |
|
| 57 |
The example below assumes you already have:
|
| 58 |
|
| 59 |
-
- time-series tensors
|
| 60 |
- one or more image paths,
|
| 61 |
- a text question.
|
| 62 |
|
|
@@ -65,10 +65,8 @@ import torch
|
|
| 65 |
from transformers import AutoProcessor
|
| 66 |
from qwen_vl_utils import process_vision_info
|
| 67 |
|
| 68 |
-
#
|
| 69 |
-
|
| 70 |
-
# - TimeSeriesData
|
| 71 |
-
from your_runtime_package import TotoAnomalyQAModel, TimeSeriesData
|
| 72 |
|
| 73 |
repo_id = "Datadog/Toto-1.0-QA-Experimental"
|
| 74 |
|
|
@@ -90,7 +88,7 @@ id_mask = ... # torch.Tensor, shape: [n_channels, n_timesteps], float/bool
|
|
| 90 |
timestamp_seconds = ... # torch.Tensor, shape: [n_channels, n_timesteps]
|
| 91 |
time_interval_seconds = ... # torch.Tensor, shape: [n_channels]
|
| 92 |
group_names = ... # list[str], length n_channels
|
| 93 |
-
question = "
|
| 94 |
image_paths = ["./image_1.png", "./image_2.png"]
|
| 95 |
|
| 96 |
ts_data = TimeSeriesData(
|
|
|
|
| 10 |
- arfbench
|
| 11 |
- observability
|
| 12 |
paper:
|
| 13 |
+
- https://arxiv.org/abs/2604.21199
|
| 14 |
datasets:
|
| 15 |
- Datadog/ARFBench
|
| 16 |
leaderboards:
|
|
|
|
| 56 |
|
| 57 |
The example below assumes you already have:
|
| 58 |
|
| 59 |
+
- time-series tensors,
|
| 60 |
- one or more image paths,
|
| 61 |
- a text question.
|
| 62 |
|
|
|
|
| 65 |
from transformers import AutoProcessor
|
| 66 |
from qwen_vl_utils import process_vision_info
|
| 67 |
|
| 68 |
+
# From our Github repository (https://github.com/DataDog/arfbench)
|
| 69 |
+
from model.toto_vlm_components import TotoAnomalyQAModel, TimeSeriesData
|
|
|
|
|
|
|
| 70 |
|
| 71 |
repo_id = "Datadog/Toto-1.0-QA-Experimental"
|
| 72 |
|
|
|
|
| 88 |
timestamp_seconds = ... # torch.Tensor, shape: [n_channels, n_timesteps]
|
| 89 |
time_interval_seconds = ... # torch.Tensor, shape: [n_channels]
|
| 90 |
group_names = ... # list[str], length n_channels
|
| 91 |
+
question = "In the following time-series, does the anomaly in this time-series correlate with the anomaly in the other time-series, if anomalies exist??"
|
| 92 |
image_paths = ["./image_1.png", "./image_2.png"]
|
| 93 |
|
| 94 |
ts_data = TimeSeriesData(
|