sxie78-dd commited on
Commit
259fc14
·
verified ·
1 Parent(s): 9e1c80e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -7
README.md CHANGED
@@ -10,7 +10,7 @@ tags:
10
  - arfbench
11
  - observability
12
  paper:
13
- - Link to Paper
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 (`series`, `padding_mask`, `id_mask`, `timestamp_seconds`, `time_interval_seconds`),
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
- # Replace this import with your runtime package/module that provides:
69
- # - TotoAnomalyQAModel
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 = "Which component is most likely causing the anomaly?"
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(