Multivariate prompter pipeline #47
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Introducing a new pipeline to handle multivariate time series.
Prompt: "Below is a multivariate time series of {} dimensions with the following format "{example of data format}". Your job is to detect ranges of anomalies in this time series, in terms of the x-axis coordinates. List one by one in a list.\nFor example, if ranges (including two endpoints) [5, 12], [71, 74], and [105, 131], are anomalies, then output "[[5,12], [71, 74], [105, 131]]". If no anomalies are found, respond with 'no anomalies'. Be concise, do not write code, do not perform any calculations, just give your answers as told"
Data Format:
The input is a multivariate time series consisting of timestamp and values.
The pipeline will process the input to create an interleaving representation where each parenthesis marks the input of one timestamp. This would transform the above input to a representation equivalent to
"(0.555, 2.345) (1.501, 5.903) (9.116, 3.068) (7.432, 4.532) (0.324, 1.432)".