Wallaroo MLOps API Essentials Guide: Assays Management
Enablement Management
Enablement Management allows users to see what Wallaroo features have been activated.
List Enablement Features
Lists the enablement features for the Wallaroo instance.
List Enablement Features Parameters
An empty set {}
List Enablement Features Returns
Field | Type | Description |
---|---|---|
features | String | Enabled features. |
name | String | Name of the Wallaroo instance. |
is_auth_enabled | Boolean | Whether authentication is enabled. |
# List enablement features
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/features/list"
data = {
}
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
response
{'features': {'plateau': 'true'},
'name': 'Wallaroo Dev',
'is_auth_enabled': True}
!curl {wl.api_endpoint}/v1/api/features/list \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{{}}'
{"features":{"plateau":"true"},"name":"Wallaroo Dev","is_auth_enabled":true}
Assays
Create Baseline Summary Statistics
- Endpoint:
/v1/api/assays/summarize
Generate static baseline summary stats for a vector or windowed data. For windows data, this requires that inferences have been performed in the target pipeline. For vector data, a numpy array is used.
Create Baseline Summary Statistics Parameters
Field | Type | Description | ||
---|---|---|---|---|
baseline | Baseline (Required) | The baseline for the assay consisting of the following options. Options are vector and fixed_window . | ||
fixed_window | (AssayFixConfiguration) (Required) | The fixed configuration for the assay window baseline with the set baseline start and end dates. | ||
interval | String (Required) | The interval of data to gather for the baseline in the format {Integer} {Unit }, with Unit being minutes , hours , and days . | ||
model_name | String (Required) | The name of the model to track inference data for the baseline from. | ||
path | String (Required) | The input/output path in the format `{input | ||
pipeline_name | String (Required) | The name of the pipeline with the baseline data. | ||
start | String (Optional) | The DateTime of the baseline start date. | ||
width | String (Required) | The amount of data from inference results to gather in the format {Integer} {Unit }, with Unit being minutes , hours , and days . | ||
workspace_id | Integer (Required) | The numerical identifier of the workspace. | ||
workspace_id | List[String] (Optional) | A list of locations, including edge locations. An empty list [] defaults to the Wallaroo Ops pipeline location. | ||
vector | List[Float] | A numpy array of values for the baseline. | ||
summarizer | (AssaySummerizer) (REQUIRED) | The summarizer type for the array aka “advanced settings” in the Wallaroo Dashboard UI. | ||
type | String (Required) | Type of summarizer. | ||
bin_mode | String (Required) | The binning model type. Values are: Quantile and Equal | ||
aggregation | String (Required) | Aggregation type. Values are: Cumulative , Density , and Edges . | ||
metric | String (Required) | Metric type. Values are: PSI , MaxDiff (Maximum Difference of Bins), and SumDiff (Sum of the Difference of Bins) | ||
num_bins | *Integer (Required) | The number of bins. Recommended values are between 5 and 14. | ||
type | String (Required) | Bin type. Values are: UnivariateContinuous | ||
bin_weights | *List[float] (Optional) | The weights assigned to the assay bins. | ||
bin_width | List[float] (Optional) | The width assigned to the assay bins. | ||
provided_edges | List[float] (Optional) | The edges used for the assay bins. |
Create Baseline Summary Statistics Returns
Field | Type | Description |
---|---|---|
count | Integer | The number of inference results collected. |
min | Float | The minimum values from the baseline. |
max | Float | The maximum values from the baseline. |
mean | Float | The mean values from the baseline. |
median | Float | The median values from the baseline. |
std | Float | The standard deviation score. |
edges | List[Float] | The defined bin edges. |
edges | List[String] | The bin names. |
aggregated_values | List[Float] | The aggregated values of the baseline. |
aggregation | String | Aggregation type. Values are: Cumulative , Density , and Edges . |
start | String | The datetime stamp of when the baseline data started. |
end | String | The datetime stamp of when the baseline data started. |
Create Baseline Summary Statistics Examples
The following example code will:
- Create a workspace for our assay values.
- Upload a model and create a pipeline with the model as a pipeline step.
- Perform sample inference and use the inference results create the baseline summary data.
# create a new workspace using the Wallaroo SDK
workspace = wl.get_workspace("sample-api-workspace-assays", create_if_not_exist=True)
display(workspace)
wl.set_current_workspace(workspace)
workspace_id = workspace.id()
workspace_id
{'name': 'sample-api-workspace-assays', 'id': 6, 'archived': False, 'created_by': 'fb2916bc-551e-4a76-88e8-0f7d7720a0f9', 'created_at': '2024-07-29T18:49:03.544471+00:00', 'models': [{'name': 'api-sample-model', 'versions': 2, 'owner_id': '""', 'last_update_time': datetime.datetime(2024, 7, 29, 18, 52, 41, 834943, tzinfo=tzutc()), 'created_at': datetime.datetime(2024, 7, 29, 18, 49, 4, 879661, tzinfo=tzutc())}], 'pipelines': [{'name': 'sample-api-pipeline-with-models', 'create_time': datetime.datetime(2024, 7, 29, 18, 49, 5, 277194, tzinfo=tzutc()), 'definition': '[]'}]}
6
# upload the model via the Wallaroo SDK
example_model_name = f"api-sample-model"
pipeline_name = "sample-api-pipeline-with-models"
model = wl.upload_model(example_model_name,
'./models/ccfraud.onnx',
framework=wallaroo.framework.Framework.ONNX)
# create the pipeline
pipeline = wl.build_pipeline(pipeline_name)
pipeline.add_model_step(model)
# deploy the pipeline
assay_start = datetime.datetime.now(datetime.timezone.utc)
pipeline.deploy()
# sample inferences
results = pipeline.infer_from_file('./data/cc_data_api_1k.df.json')
results
time | in.dense_input | out.dense_1 | anomaly.count | |
---|---|---|---|---|
0 | 2024-07-29 19:48:49.235 | [-1.0603297501, 2.3544967095, -3.5638788326, 5... | [0.99300325] | 0 |
1 | 2024-07-29 19:48:49.235 | [-1.0603297501, 2.3544967095, -3.5638788326, 5... | [0.99300325] | 0 |
2 | 2024-07-29 19:48:49.235 | [-1.0603297501, 2.3544967095, -3.5638788326, 5... | [0.99300325] | 0 |
3 | 2024-07-29 19:48:49.235 | [-1.0603297501, 2.3544967095, -3.5638788326, 5... | [0.99300325] | 0 |
4 | 2024-07-29 19:48:49.235 | [0.5817662108, 0.097881551, 0.1546819424, 0.47... | [0.0010916889] | 0 |
... | ... | ... | ... | ... |
996 | 2024-07-29 19:48:49.235 | [1.052355506, -0.7602601059, -0.3124601687, -0... | [0.00011596084] | 0 |
997 | 2024-07-29 19:48:49.235 | [-0.8464537996, -0.7608807925, 2.186072883, -0... | [0.0002785325] | 0 |
998 | 2024-07-29 19:48:49.235 | [1.0046377125, 0.0343666504, -1.3512533246, 0.... | [0.0011070371] | 0 |
999 | 2024-07-29 19:48:49.235 | [0.4951101913, -0.2499369449, 0.4553345161, 0.... | [0.0008533001] | 0 |
1000 | 2024-07-29 19:48:49.235 | [0.6118805301, 0.1726081102, 0.4310545502, 0.5... | [0.0012498498] | 0 |
1001 rows × 4 columns
# set the results to a non-array value
results_baseline_df = results.copy()
results_baseline_df['dense_1']=results_baseline_df['out.dense_1'].map(lambda x: x[0])
# results_baseline_df
# set the numpy array
results_baseline = results_baseline_df['dense_1'].to_numpy()
# the values as a numpy
results_baseline
array([9.9300325e-01, 9.9300325e-01, 9.9300325e-01, ..., 1.1070371e-03,
8.5330010e-04, 1.2498498e-03])
Create the summary via Requests.
## create the summary via requests
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/summarize"
data = {'summarizer': {'type': 'UnivariateContinuous',
'bin_mode': 'Quantile',
'aggregation': 'Density',
'metric': 'PSI',
'num_bins': 5,
'bin_weights': None,
'bin_width': None,
'provided_edges': None},
'baseline': {'vector': results_baseline.tolist()}}
# display(data)
response = requests.post(endpoint, json=data, headers=headers, verify=True)
baseline_summary = response.json()
display(baseline_summary)
{'count': 1001,
'min': 1.5199184e-06,
'max': 1.0,
'mean': 0.006598251655689411,
'median': 0.00054195523,
'std': 0.07661715949339488,
'edges': [1.5199184e-06,
0.00026360154,
0.00045093894,
0.0006800592,
0.00096952915,
1.0,
None],
'edge_names': ['left_outlier',
'q_20',
'q_40',
'q_60',
'q_80',
'q_100',
'right_outlier'],
'aggregated_values': [0.0,
0.1998001998001998,
0.1998001998001998,
0.2007992007992008,
0.1998001998001998,
0.1998001998001998,
0.0],
'aggregation': 'Density',
'start': None,
'end': None}
Create Assay
- Endpoint:
/v1/api/assays/create
Create a new array in a specified pipeline. Assays required at least one inference request is completed.
Create Assay Parameters
Field | Type | Description | ||
---|---|---|---|---|
id | Integer (Optional) | The numerical identifier for the assay. | ||
name | String (Required) | The name of the assay. | ||
pipeline_id | String (Required) | The numerical identifier the assay will be placed into. | ||
pipeline_name | String (Required) | The name of the pipeline | ||
active | Boolean (Required) | Indicates whether the assay will be active upon creation or not. | ||
status | String (Required) | The status of the assay upon creation. Options are: active : the Assay is created and active. created : The assay is created but inactive. | ||
iopath | String (Required) | The iopath of the assay in the format `“input | ||
baseline | Baseline (Required) | The baseline for the assay consisting of the following options. Options are fixed , calculated and static . | ||
fixed | (AssayFixConfiguration) (Required) | The fixed configuration for the assay with the set baseline start and end dates. | ||
pipeline | String (Required) | The name of the pipeline with the baseline data. | ||
model | String (Required) | The name of the model used. | ||
start_at | String (Required) | The DateTime of the baseline start date. | ||
end_at | String (Required) | The DateTime of the baseline end date. | ||
calculated | (AssaysCreateJsonBodyBaselineType0CalculatedType0) (Required) | The calculated baseline submitted with numpy arrays. Declared with calculated . This includes the following fields. | ||
vector | (List[float]) (Required) | The numpy array of baseline values. | ||
static | AssaysCreateJsonBodyBaselineType1Static (Required) | The static baseline. These values are generated from the fixed and calculated baseline methods listed above, and can be used to achieve more granularity in the assay baseline creation. | ||
count | Integer (Required) | The number values used. | ||
min | Float (Required) | The minimum value of baseline values. | ||
max | Float (Required) | The maximum value of baseline values. | ||
mean | Float (Required) | The mean of the of baseline values. | ||
std | Float (Required) | The standard deviation of baseline values. | ||
edges | List[Float] (Required) | The edges defined from the baseline values or manually defined. | ||
aggregated_values | List[Float] (Required) | The aggregated values of each edge. | ||
aggregation | String (Required) | The type of baseline aggregation. Values are: Cumulative , Density , and Edges . | ||
start | String (Optional) | The DateTime of the baseline inference start date. | ||
end | String (Optional) The DateTime of the baseline inference end date. | |||
window | AssayWindow (Required) | Assay window. | ||
pipeline | String (Required) | The name of the pipeline for the assay window. | ||
model | String (Required) | The name of the model used for the assay window. | ||
width | String (Required) | The width of the assay window. | ||
start | String (Required) | The DateTime of when to start the assay window. | ||
interval | String (Required) | The assay window interval. | ||
locations | List[String] (Required) | The locations included in the assay. If set to an empty set [] the Wallaroo Ops pipeline will be the only location used. | ||
summarizer | (AssaySummerizer) (REQUIRED) | The summarizer type for the array aka “advanced settings” in the Wallaroo Dashboard UI. | ||
type | String (Required) | Type of summarizer. | ||
bin_mode | String (Required) | The binning model type. Values are: Quantile and Equal | ||
aggregation | String (Required) | Aggregation type. Values are: Cumulative , Density , and Edges . | ||
metric | String (Required) | Metric type. Values are: PSI , MaxDiff (Maximum Difference of Bins), and SumDiff (Sum of the Difference of Bins) | ||
num_bins | *Integer (Required) | The number of bins. Recommended values are between 5 and 14. | ||
type | String (Required) | Bin type. Values are: UnivariateContinuous | ||
bin_weights | *List[float] (Optional) | The weights assigned to the assay bins. | ||
bin_width | List[float] (Optional) | The width assigned to the assay bins. | ||
provided_edges | List[float] (Optional) | The edges used for the assay bins. | ||
add_outlier_edges | Boolean (Required) | Indicates whether to add outlier edges or not. | ||
warning_threshold | Float (Required) | Optional warning threshold. | ||
alert_threshold | Float (Required) | Alert threshold. | ||
run_until | String (OPTIONAL) | DateTime of when to end the assay. | ||
workspace_id | Integer (Required) | The workspace the assay is part of. | ||
model_insights_url | String (OPTIONAL) | URL for model insights. |
Create Assay Returns
Field | Type | Description |
---|---|---|
assay_id | Integer | The id of the new assay. |
Create Assay Examples
The following example code will:
- Create an assay from the endpoint
/v1/api/assays/create
with baseline generated from Create Baseline Summary Statistics.- For our example, we will be using the output of the field
dense_2
at the index 0 for the iopath.
- For our example, we will be using the output of the field
- The assay id is stored for later examples.
Create assay via Requests.
import datetime
assay_window_end = datetime.datetime.now(datetime.timezone.utc)
## Create assay
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/create"
# generate random values so the assay is always unique
import string
import random
# # make a random 4 character suffix to prevent overwriting other user's workspaces
suffix= ''.join(random.choice(string.ascii_lowercase) for i in range(4))
exampleAssayName = f"api assay example {suffix}"
# display(exampleAssayName)
data = {
"name": exampleAssayName,
"pipeline_id": pipeline.id(),
"pipeline_name": pipeline_name,
"active": True,
"status": "created",
"baseline": {
"static": baseline_summary
},
"window": {
"pipeline_name": pipeline_name,
"model_name": example_model_name,
"width": "1 minute",
"start": assay_start.isoformat(),
"interval": "1 minute",
"path": "output dense_1 0",
"workspace_id": workspace_id,
"locations": []
},
"summarizer": {
"type": "UnivariateContinuous",
"bin_mode": "Quantile",
"aggregation": "Density",
"metric": "PSI",
"num_bins": 5,
"bin_weights": None,
"bin_width": None,
"provided_edges": None,
"add_outlier_edges": None
},
"warning_threshold": None,
"alert_threshold": 0.25,
"run_until": assay_window_end.isoformat(),
"workspace_id": workspace_id
}
print(data)
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
print(response)
assay_id = response['assay_id']
{'name': 'api assay example yrje', 'pipeline_id': 1, 'pipeline_name': 'sample-api-pipeline-with-models', 'active': True, 'status': 'created', 'baseline': {'static': {'count': 1001, 'min': 1.5199184e-06, 'max': 1.0, 'mean': 0.006598251655689411, 'median': 0.00054195523, 'std': 0.07661715949339488, 'edges': [1.5199184e-06, 0.00026360154, 0.00045093894, 0.0006800592, 0.00096952915, 1.0, None], 'edge_names': ['left_outlier', 'q_20', 'q_40', 'q_60', 'q_80', 'q_100', 'right_outlier'], 'aggregated_values': [0.0, 0.1998001998001998, 0.1998001998001998, 0.2007992007992008, 0.1998001998001998, 0.1998001998001998, 0.0], 'aggregation': 'Density', 'start': None, 'end': None}}, 'window': {'pipeline_name': 'sample-api-pipeline-with-models', 'model_name': 'api-sample-model', 'width': '1 minute', 'start': '2024-07-29T19:48:46.944191+00:00', 'interval': '1 minute', 'path': 'output dense_1 0', 'workspace_id': 6, 'locations': []}, 'summarizer': {'type': 'UnivariateContinuous', 'bin_mode': 'Quantile', 'aggregation': 'Density', 'metric': 'PSI', 'num_bins': 5, 'bin_weights': None, 'bin_width': None, 'provided_edges': None, 'add_outlier_edges': None}, 'warning_threshold': None, 'alert_threshold': 0.25, 'run_until': '2024-07-29T19:49:10.195390+00:00', 'workspace_id': 6}
{'assay_id': 4}
Create assay via curl.
exampleAssayName = f"api assay curl examples {suffix}"
data = {
"name": exampleAssayName,
"pipeline_id": pipeline.id(),
"pipeline_name": pipeline_name,
"active": True,
"status": "created",
"baseline": {
"static": baseline_summary
},
"window": {
"pipeline_name": pipeline_name,
"model_name": example_model_name,
"width": "1 minute",
"start": assay_start.isoformat(),
"interval": "1 minute",
"path": "output dense_1 0",
"workspace_id": workspace_id,
"locations": []
},
"summarizer": {
"type": "UnivariateContinuous",
"bin_mode": "Quantile",
"aggregation": "Density",
"metric": "PSI",
"num_bins": 5,
"bin_weights": None,
"bin_width": None,
"provided_edges": None,
"add_outlier_edges": None
},
"warning_threshold": None,
"alert_threshold": 0.25,
"run_until": assay_window_end.isoformat(),
"workspace_id": workspace_id
}
!curl {wl.api_endpoint}/v1/api/assays/create \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}' > curl_assay_create.json
f = open('curl_assay_create.json')
# returns JSON object as
# a dictionary
curl_assay_create = json.load(f)
curl_assay_id = curl_assay_create['assay_id']
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1285 100 14 100 1271 62 5700 --:--:-- --:--:-- --:--:-- 5762
List Assays
- Endpoint:
/v1/api/assays/list
Lists all assays in the specified pipeline.
List Assays Parameters
Field | Type | Description |
---|---|---|
pipeline_id | Integer (Required) | The numerical ID of the pipeline. |
List Assays Returns
A list of assays with the following fields.
Field | Type | Description | ||
---|---|---|---|---|
id | Integer | The numerical identifier for the assay. | ||
name | String | The name of the assay. | ||
active | Boolean | Whether the assay is Active or not. | ||
status | String | The status of the assay. Options are: active : the Assay is created and active. created : The assay is created but inactive. | ||
warning_threshold | Float (Required) | Optional warning threshold. | ||
alert_threshold | Float (Required) | Alert threshold. | ||
pipeline_id | String | The numerical identifier the assay will be placed into. | ||
pipeline_name | String | The name of the pipeline | ||
last_run | String | The DateTime for the last time the assay ran. | ||
next_run | String | The DateTime for the next schedule assay run. | ||
run_until | String | The DateTime when the assay will stop running. | ||
updated_at | String | The DateTime when the assay was last updated. | ||
iopath | String | The iopath of the assay in the format `“input | ||
baseline | Baseline | The baseline for the assay. This is determined by how the assay was generated. See Create Assay Parameters for complete values. | ||
window | AssayWindow | Assay window. | ||
model_name | String | The name of the model used for the assay window. | ||
pipeline_name | String | The name of the pipeline for the assay window. | ||
path | String | The iopath of the assay window. | ||
start | String | The DateTime of when to start the assay window. | ||
width | String | The width of the assay window. | ||
workspace_id | String | The width of the assay window. | ||
locations | List[String] | The locations included in the assay. An empty set indicates only the Wallaroo Ops deployment of the pipeline is used. | ||
summarizer | (AssaySummerizer) | The summarizer type for the array aka “advanced settings” in the Wallaroo Dashboard UI. | ||
type | String | Type of summarizer. | ||
bin_mode | String | The binning model type. Values are: Quantile and Equal | ||
aggregation | String | Aggregation type. Values are: Cumulative , Density , and Edges . | ||
metric | String | Metric type. Values are: PSI , MaxDiff (Maximum Difference of Bins), and SumDiff (Sum of the Difference of Bins) | ||
num_bins | *Integer | The number of bins. Recommended values are between 5 and 14. | ||
bin_weights | *List[float] | The weights assigned to the assay bins. | ||
provided_edges | List[float] | The edges used for the assay bins. |
List Assays Examples
Display a list of all assays in a related to a pipeline.
List all pipeline assays via Requests.
# Get assays
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/list"
data = {
"pipeline_id": pipeline.id()
}
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
response[0]
{'id': 5,
'name': 'api assay curl examples yrje',
'active': True,
'status': 'created',
'warning_threshold': None,
'alert_threshold': 0.25,
'pipeline_id': 1,
'pipeline_name': 'sample-api-pipeline-with-models',
'last_run': None,
'next_run': '2024-07-29T19:49:13.286785+00:00',
'run_until': '2024-07-29T19:49:10.19539+00:00',
'updated_at': '2024-07-29T19:49:13.288544+00:00',
'baseline': {'static': {'count': 1001,
'min': 1.5199184e-06,
'max': 1.0,
'mean': 0.006598251655689411,
'median': 0.00054195523,
'std': 0.07661715949339488,
'edges': [1.5199184e-06,
0.00026360154,
0.00045093894,
0.0006800592,
0.00096952915,
1.0,
None],
'edge_names': ['left_outlier',
'q_20',
'q_40',
'q_60',
'q_80',
'q_100',
'right_outlier'],
'aggregated_values': [0.0,
0.1998001998001998,
0.1998001998001998,
0.2007992007992008,
0.1998001998001998,
0.1998001998001998,
0.0],
'aggregation': 'Density',
'start': None,
'end': None}},
'window': {'interval': '1 minute',
'model_name': 'api-sample-model',
'path': 'output dense_1 0',
'pipeline_name': 'sample-api-pipeline-with-models',
'start': '2024-07-29T19:48:46.944191Z',
'width': '1 minute',
'workspace_id': 6,
'locations': []},
'summarizer': {'type': 'UnivariateContinuous',
'bin_mode': 'Quantile',
'aggregation': 'Density',
'metric': 'PSI',
'num_bins': 5,
'bin_weights': None,
'provided_edges': None},
'workspace_id': 6,
'workspace_name': 'sample-api-workspace-assays'}
List all pipeline assays via Curl.
data = {
"pipeline_id": pipeline.id()
}
!curl {wl.api_endpoint}/v1/api/assays/list \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}'
[{"id":5,"name":"api assay curl examples yrje","active":true,"status":"created","warning_threshold":null,"alert_threshold":0.25,"pipeline_id":1,"pipeline_name":"sample-api-pipeline-with-models","last_run":null,"next_run":"2024-07-29T19:49:13.286785+00:00","run_until":"2024-07-29T19:49:10.19539+00:00","updated_at":"2024-07-29T19:49:13.288544+00:00","baseline":{"static":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null}},"window":{"interval":"1 minute","model_name":"api-sample-model","path":"output dense_1 0","pipeline_name":"sample-api-pipeline-with-models","start":"2024-07-29T19:48:46.944191Z","width":"1 minute","workspace_id":6,"locations":[]},"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"workspace_id":6,"workspace_name":"sample-api-workspace-assays"},{"id":4,"name":"api assay example yrje","active":true,"status":"created","warning_threshold":null,"alert_threshold":0.25,"pipeline_id":1,"pipeline_name":"sample-api-pipeline-with-models","last_run":null,"next_run":"2024-07-29T19:49:10.35859+00:00","run_until":"2024-07-29T19:49:10.19539+00:00","updated_at":"2024-07-29T19:49:10.360418+00:00","baseline":{"static":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null}},"window":{"interval":"1 minute","model_name":"api-sample-model","path":"output dense_1 0","pipeline_name":"sample-api-pipeline-with-models","start":"2024-07-29T19:48:46.944191Z","width":"1 minute","workspace_id":6,"locations":[]},"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"workspace_id":6,"workspace_name":"sample-api-workspace-assays"},{"id":3,"name":"api assay curl examples aqsf","active":false,"status":"{\"run_at\": \"2024-07-29T18:55:14.728247311+00:00\", \"num_ok\": 0, \"num_warnings\": 0, \"num_alerts\": 0}","warning_threshold":null,"alert_threshold":0.25,"pipeline_id":1,"pipeline_name":"sample-api-pipeline-with-models","last_run":"2024-07-29T18:55:14.728247+00:00","next_run":"2024-07-29T18:54:42.973927+00:00","run_until":"2024-07-29T18:52:58.794037+00:00","updated_at":"2024-07-29T18:53:36.003392+00:00","baseline":{"static":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null}},"window":{"interval":"1 minute","model_name":"api-sample-model","path":"output dense_1 0","pipeline_name":"sample-api-pipeline-with-models","start":"2024-07-29T18:52:42.973927Z","width":"1 minute","workspace_id":6,"locations":[]},"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"workspace_id":6,"workspace_name":"sample-api-workspace-assays"},{"id":2,"name":"api assay example aqsf","active":false,"status":"{\"run_at\": \"2024-07-29T18:55:14.709022713+00:00\", \"num_ok\": 0, \"num_warnings\": 0, \"num_alerts\": 0}","warning_threshold":null,"alert_threshold":0.25,"pipeline_id":1,"pipeline_name":"sample-api-pipeline-with-models","last_run":"2024-07-29T18:55:14.709023+00:00","next_run":"2024-07-29T18:54:42.973927+00:00","run_until":"2024-07-29T18:52:58.794037+00:00","updated_at":"2024-07-29T18:52:59.010348+00:00","baseline":{"static":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null}},"window":{"interval":"1 minute","model_name":"api-sample-model","path":"output dense_1 0","pipeline_name":"sample-api-pipeline-with-models","start":"2024-07-29T18:52:42.973927Z","width":"1 minute","workspace_id":6,"locations":[]},"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"workspace_id":6,"workspace_name":"sample-api-workspace-assays"},{"id":1,"name":"api assay example kmlr","active":false,"status":"created","warning_threshold":null,"alert_threshold":0.25,"pipeline_id":1,"pipeline_name":"sample-api-pipeline-with-models","last_run":null,"next_run":"2024-07-29T18:51:10.243304+00:00","run_until":"2024-07-29T18:51:10.026613+00:00","updated_at":"2024-07-29T18:51:10.245675+00:00","baseline":{"static":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null}},"window":{"interval":"1 minute","model_name":"api-sample-model","path":"output dense_1 0","pipeline_name":"sample-api-pipeline-with-models","start":"2024-07-29T18:50:42.582024Z","width":"1 minute","workspace_id":6,"locations":[]},"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"workspace_id":6,"workspace_name":"sample-api-workspace-assays"}]
Activate or Deactivate Assay
- Endpoint:
/v1/api/assays/set_active
Activates or deactivates an existing assay.
Activate or Deactivate Assay Parameters
Field | Type | Description |
---|---|---|
id | Integer (Required) | The id of the new assay. |
active | Boolean (Required) | True to activate the assay, False to deactivate it. |
Activate or Deactivate Assay Returns
Field | Type | Description |
---|---|---|
id | The numerical id of the assay. | |
active | Boolean | True to activate the assay, False to deactivate it. |
Activate or Deactivate Assay Examples
The recently created assay will be deactivated then activated.
Deactivate and activate an assay via Requests
# Deactivate assay
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/set_active"
data = {
'id': assay_id,
'active': False
}
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
response
{'id': 4, 'active': False}
# Activate assay
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/set_active"
data = {
'id': assay_id,
'active': True
}
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
response
{'id': 4, 'active': True}
Deactivate and activate an assay via curl
data = {
'id': curl_assay_id,
'active': False
}
!curl {wl.api_endpoint}/v1/api/assays/set_active \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}'
{"id":5,"active":false}
data = {
'id': curl_assay_id,
'active': True
}
!curl {wl.api_endpoint}/v1/api/assays/set_active \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}'
{"id":5,"active":true}
# perform sample inferences then wait 2 minutes to give time for the inference results to be logged
pipeline.infer_from_file('./data/cc_data_api_1k.df.json')
time.sleep(120)
Get Assay Baseline
- Endpoint:
/v1/api/assays/get_baseline
Get Assay Baseline Parameters
Field | Type | Description |
---|---|---|
workspace_id | Integer (Required) | Numerical id for the workspace the assay is in. |
pipeline_name | String (Required) | Name of the pipeline the assay is in. |
start | String (Optional) | DateTime for when the baseline starts. |
end | String (Optional) | DateTime for when the baseline ends. |
model_name | String (Optional) | Name of the model. |
limit | Integer (Optional) | Maximum number of baselines to return. |
Get Assay Baseline Returns
Returns the assay baseline as defined in Create Assay.
Get Assay Baseline Examples
The following examples show retrieving the first three baselines from the recently created baseline.
Retrieve assay baseline via Requests.
## Get Assay Baseline
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/get_baseline"
data = {
'workspace_id': workspace_id,
'pipeline_name': pipeline_name,
'limit': 1
}
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
response
[{'anomaly.count': 0,
'in.dense_input': [-1.0603297501,
2.3544967095,
-3.5638788326,
5.1387348926,
-1.2308457019,
-0.7687824608,
-3.5881228109,
1.8880837663,
-3.2789674274,
-3.9563254554,
4.0993439118,
-5.6539176395,
-0.8775733373,
-9.131571192,
-0.6093537873,
-3.7480276773,
-5.0309125017,
-0.8748149526,
1.9870535692,
0.7005485718,
0.9204422758,
-0.1041491809,
0.3229564351,
-0.7418141657,
0.0384120159,
1.0993439146,
1.2603409756,
-0.1466244739,
-1.4463212439],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.99300325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0603297501,
2.3544967095,
-3.5638788326,
5.1387348926,
-1.2308457019,
-0.7687824608,
-3.5881228109,
1.8880837663,
-3.2789674274,
-3.9563254554,
4.0993439118,
-5.6539176395,
-0.8775733373,
-9.131571192,
-0.6093537873,
-3.7480276773,
-5.0309125017,
-0.8748149526,
1.9870535692,
0.7005485718,
0.9204422758,
-0.1041491809,
0.3229564351,
-0.7418141657,
0.0384120159,
1.0993439146,
1.2603409756,
-0.1466244739,
-1.4463212439],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.99300325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0603297501,
2.3544967095,
-3.5638788326,
5.1387348926,
-1.2308457019,
-0.7687824608,
-3.5881228109,
1.8880837663,
-3.2789674274,
-3.9563254554,
4.0993439118,
-5.6539176395,
-0.8775733373,
-9.131571192,
-0.6093537873,
-3.7480276773,
-5.0309125017,
-0.8748149526,
1.9870535692,
0.7005485718,
0.9204422758,
-0.1041491809,
0.3229564351,
-0.7418141657,
0.0384120159,
1.0993439146,
1.2603409756,
-0.1466244739,
-1.4463212439],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.99300325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0603297501,
2.3544967095,
-3.5638788326,
5.1387348926,
-1.2308457019,
-0.7687824608,
-3.5881228109,
1.8880837663,
-3.2789674274,
-3.9563254554,
4.0993439118,
-5.6539176395,
-0.8775733373,
-9.131571192,
-0.6093537873,
-3.7480276773,
-5.0309125017,
-0.8748149526,
1.9870535692,
0.7005485718,
0.9204422758,
-0.1041491809,
0.3229564351,
-0.7418141657,
0.0384120159,
1.0993439146,
1.2603409756,
-0.1466244739,
-1.4463212439],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.99300325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5817662108,
0.097881551,
0.1546819424,
0.4754101949,
-0.1978862306,
-0.4504344854,
0.0166540447,
-0.0256070551,
0.0920561602,
-0.2783917153,
0.0593299441,
-0.0196585416,
-0.4225083157,
-0.1217538877,
1.5473094894,
0.2391622864,
0.3553974881,
-0.7685165301,
-0.7000849355,
-0.1190043285,
-0.3450517133,
-1.1065114108,
0.2523411195,
0.0209441826,
0.2199267436,
0.2540689265,
-0.0450225094,
0.1086773898,
0.2547179311],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010916889],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7621273681,
0.8854701414,
0.5235808652,
-0.8139743551,
0.3793240544,
0.1560653365,
0.5451299665,
0.0785927242,
0.4143968543,
0.4914052348,
0.0774391022,
1.050105026,
0.9901440217,
-0.6142483131,
-1.5260740653,
0.2053324703,
-1.0185637854,
0.0490986919,
0.6964184879,
0.5948331722,
-0.3934362922,
-0.592249266,
-0.3953093077,
-1.3310427025,
0.6287441287,
0.8665525996,
0.7974673604,
1.1174342262,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047266483],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2836830107,
0.2281341608,
1.0358808685,
1.0311413647,
0.6485053917,
0.6993339,
0.1827667194,
0.0989746212,
-0.5734487733,
0.5928927597,
0.3085637362,
0.1533869918,
-0.3628347923,
-0.2865054499,
-1.1380446536,
-0.2207117601,
-0.1206033931,
-0.2325246936,
0.8675179232,
-0.0081323034,
-0.015330415,
0.4169237822,
-0.4249025314,
-0.9834451977,
-1.1175903578,
2.1076701885,
-0.3361950073,
-0.3469573431,
0.019307669],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00082170963],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0379636346,
-0.152987302,
-1.0912561862,
-0.0033339828,
0.4804281836,
0.1120708475,
0.0233157709,
0.0009213038,
0.4021730182,
0.2120753712,
-0.1462804223,
0.4424477027,
-0.4641602117,
0.498425643,
-0.8230270969,
0.3168388184,
-0.9050440977,
0.0710365039,
1.1111388587,
-0.2157914054,
-0.373759129,
-1.0330075347,
0.3144720913,
-0.5109243112,
-0.1685910498,
0.5918324406,
-0.2231792825,
-0.2287153377,
-0.0868944762],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011294782],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1517283662,
0.6589966337,
-0.3323713647,
0.7285871979,
0.6430271573,
-0.0361051306,
0.2201530504,
-1.4928731939,
-0.5895806487,
0.2227251103,
0.4443729713,
0.8411555815,
-0.241291302,
0.898682875,
-0.9866307096,
-0.8919301767,
-0.0878875914,
0.1163332461,
1.1469566646,
-0.5417470436,
2.2321360563,
-0.1679271382,
-0.8071223667,
-0.6379226787,
1.9121889391,
-0.5565545169,
0.6528273964,
0.8163897966,
-0.2281615017],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0018743575],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1683100246,
0.7070470317,
0.1875234948,
-0.3885406952,
0.8190382137,
-0.2264929889,
0.9204469154,
-0.1362740974,
-0.3336344399,
-0.3174281686,
1.1903478934,
0.1774292097,
-0.5681631429,
-0.8907063935,
-0.5603225649,
0.0897831737,
0.4187525906,
0.3406269046,
0.7358794384,
0.2162316926,
-0.4090832915,
-0.8736089461,
-0.1128706509,
1.0027861774,
-0.9404916154,
0.3447144641,
0.0908233867,
0.0338594886,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011520088],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6066235674,
0.0631839305,
-0.0802961973,
0.6955262345,
-0.1775255859,
-0.3757158261,
-0.1003478381,
-0.0020206974,
0.6859442462,
-0.6582840559,
-0.9995187666,
-0.5340094458,
-1.1303344302,
-1.4048093395,
-0.0953316119,
0.3428650708,
1.1376277711,
0.4248309202,
0.2316384963,
-0.1145370746,
-0.301586357,
-0.6731341245,
-0.2723217481,
-0.3925227831,
1.1115261431,
0.9205381913,
-0.0280590004,
0.1311643902,
0.215202258],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0016568303],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6022605286,
0.0335418852,
0.073849277,
0.1851178536,
-0.3054855539,
-0.7940218337,
0.1654941906,
-0.1303600246,
-0.1884158694,
0.0665975781,
1.4810974231,
0.6472122045,
-0.6703196484,
0.7565686747,
0.2134058731,
0.1505475751,
-0.4312378589,
-0.0182951925,
0.2851995511,
-0.1076509026,
0.0068242826,
-0.1076589048,
-0.0788026491,
0.9475328125,
0.8413388083,
1.1769860739,
-0.2026212206,
-0.0006311265,
0.1851559549],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010267198],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2004162236,
-0.0293424715,
0.6002673903,
-1.0581165764,
0.8618826503,
0.9173564432,
0.0753151511,
0.2206189225,
1.2188735091,
-0.388652383,
-0.609512583,
0.1965043267,
-0.2661495952,
-0.6379133677,
0.483398342,
-0.4985531207,
-0.3064243289,
-1.4524496793,
-3.1140699631,
-1.0750208206,
0.3341223842,
1.5687760942,
-0.5201671364,
-0.5317761577,
-0.3832949469,
-0.9846864507,
-2.8976275684,
-0.507351229,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00019043684],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.8427357031,
2.8260142811,
-1.595334492,
-0.2991672886,
-1.5495220405,
1.6401772163,
-3.2821951849,
0.4863028451,
0.3576801276,
0.3222372163,
0.2710846269,
2.0025589608,
-1.2151492104,
2.2835338744,
-0.4148465662,
-0.6786230741,
2.6106103198,
-1.6468850705,
-1.6080123756,
0.9995474223,
-0.4665201753,
0.8316050292,
1.2855678736,
-2.3561879048,
0.2107938402,
1.1256706306,
1.1538189945,
1.033206103,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00032365322],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3702516863,
-0.559565197,
0.6757255982,
0.6920586122,
-1.0975950837,
-0.3864326068,
-0.2464826411,
-0.0304654993,
0.6888634288,
-0.2568824022,
-0.3126212674,
0.4177154049,
0.0865827265,
-0.235865361,
0.7111355283,
0.2937196012,
-0.2150665771,
-0.037999824,
-0.5299304856,
0.4921897196,
0.3506791137,
0.4934112482,
-0.3645305682,
1.304678649,
0.3883791808,
1.0901335639,
-0.098187589,
0.2221143885,
1.2586007559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00062185526],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0740600995,
-0.5004444123,
-0.6665104459,
-0.5137954506,
-0.221802514,
0.1734011149,
-0.6004987142,
0.0105770193,
-0.4816997217,
0.8861570874,
0.1852976978,
0.8741913982,
1.1965272846,
-0.1099339687,
-0.6057668522,
-1.1254346438,
-0.7830480708,
1.9148497747,
-0.3837603969,
-0.6387752587,
-0.4853295483,
-0.5961116066,
0.4123371083,
0.1760369794,
-0.5173803145,
1.1181808797,
-0.0934318755,
-0.1756922307,
-0.2551430327],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033929944],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3389501954,
0.4600633973,
1.5422134203,
0.0267389924,
0.1158931731,
0.504544689,
0.0516362685,
0.2645286362,
1.2691985832,
-1.0147580415,
0.7932464418,
-2.0832021155,
1.2439082485,
1.1713997667,
-2.0616089222,
0.7783038412,
-0.374691853,
1.3187633761,
-0.5760757781,
-0.2563693397,
-0.2008462631,
-0.1523985678,
-0.5701108144,
-0.9852939717,
0.3654040112,
-1.1771122816,
0.2181815201,
0.2822386297,
-0.6710689243],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00094124675],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1743934044,
0.5772185632,
0.8490726828,
-0.1038906591,
0.0252342973,
-0.4811598747,
0.4933987162,
0.0493502938,
-0.1311069416,
-0.2281717828,
-1.0658145716,
-1.0302882811,
-1.434383579,
0.4349549767,
1.1462514329,
0.4591260283,
-0.5472935959,
0.0172749694,
0.2631614897,
0.0145841831,
-0.3874654386,
-1.1470861804,
-0.1080720714,
-0.3041743294,
-0.3364262981,
0.2217097324,
0.6161928746,
0.3643105274,
-1.1844813719],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00040614605],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2332974393,
0.6800384852,
1.5082537441,
1.902665731,
-0.4182576747,
0.6195860859,
0.2622512804,
-0.0835581768,
-0.4142605796,
0.5189395936,
0.3581939017,
-2.8619533966,
3.0848026022,
1.055798472,
0.7858524275,
0.3180247098,
1.0839174042,
0.2026623381,
1.7253719223,
0.4795673018,
-0.0043843842,
0.4299095507,
-0.2194886598,
0.1370990841,
-0.6193370967,
5.7056185317,
-0.3816283254,
0.0847421447,
0.820767133],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014156103],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1576920792,
0.5255560704,
0.5355833824,
-0.3921080777,
0.5239687507,
0.3137754019,
0.4081535059,
0.2258116533,
-0.3212348791,
-0.0856048598,
-0.4439710421,
-0.6280442182,
-1.0677764986,
0.5136290082,
0.4487000903,
1.0692428642,
-1.3535798799,
1.0473038479,
1.196566953,
0.1138327061,
-0.4203194737,
-1.2798508059,
-0.3799819591,
-2.444457856,
-0.0622016625,
0.3411696338,
0.6030329737,
0.2957255243,
-0.6235003345],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006403029],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5821285026,
0.1104055282,
0.0005528572,
0.35847768,
0.0009258978,
-0.5660804934,
0.3656322942,
-0.1789639774,
-0.2540332045,
-0.1110368122,
0.1015306466,
0.59766274,
0.4702091968,
0.44627195,
1.0536294201,
-0.3214604285,
0.0087329979,
-1.611796012,
-0.3327904927,
-0.0192282074,
-0.4490871711,
-1.4274565627,
0.2396383569,
0.1392294253,
0.4135983881,
0.3334319006,
-0.1338884357,
0.0567416816,
0.4859567322],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008019507],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0333590017,
0.72533966,
-0.3903269517,
-0.5782608278,
0.8241545254,
-0.2370125504,
0.7091515215,
0.0588503252,
-0.1144217342,
-0.3106048523,
0.7264094916,
0.5107899987,
0.091243163,
-0.944940746,
-1.0101438628,
0.6696018979,
-0.0273902198,
0.4503850675,
0.2018647107,
0.2297016577,
-0.4741291427,
-1.130144259,
0.0881564968,
0.2847338898,
-0.6596809902,
0.2495021965,
0.7838420374,
0.4252710087,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011220276],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.996120637,
-0.070714643,
-0.075803509,
0.375222792,
-0.4103418483,
-0.5206063577,
-0.4036313477,
-0.1552825032,
2.2485933197,
-0.5432778503,
0.3780502341,
-1.6682524862,
2.3059322904,
1.4362260723,
0.3328187169,
0.1123140088,
0.1167606432,
0.1679027741,
-0.5310203866,
-0.3375143864,
-0.3548673107,
-0.4578689929,
0.640507891,
-0.206852076,
-0.7297064476,
-1.9848061122,
0.0908649427,
-0.0923745124,
-1.0974333077],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007892251],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6669037649,
0.1705099542,
-0.0474385403,
-0.0406692165,
0.0221413792,
-0.7551039228,
0.3490489213,
-0.3029571738,
-0.2439987474,
-0.1523054091,
-0.3251253997,
0.8622392734,
1.5689607531,
0.117906692,
0.7897991483,
0.2109904707,
-0.5235865272,
-1.1954295371,
0.5662182824,
0.060217664,
-0.6320622503,
-1.8353984748,
0.226614813,
-0.1215965129,
0.4161900406,
1.3380167293,
-0.2317966956,
0.018291942,
-0.2108207026],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00040519238],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.595425401,
0.1748922456,
0.3199916062,
1.0054676941,
-0.1558116713,
-0.2865859824,
-0.1008624849,
-0.0397099148,
1.3330975816,
-0.2638554919,
0.4846079641,
-3.0550595925,
0.1049865994,
2.1513403248,
0.6738207076,
-0.1172208139,
0.7147722707,
-0.0442742046,
-1.2792547588,
-0.3996199419,
-0.0939447634,
0.0533509264,
-0.0823611777,
-0.0309503038,
1.0073502749,
-0.5888372618,
-0.0129730027,
0.0412812629,
-0.3297778345],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000813812],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0744693675,
0.3759375447,
-0.0939607155,
-0.6793985764,
1.2705145551,
-0.7267385735,
0.9701613337,
-0.3021118583,
-0.046024169,
-0.8712874369,
-0.8927457215,
-0.1990438604,
0.1089836046,
-1.2071697887,
-0.7052919033,
0.493177229,
-0.0388577771,
-0.212483322,
-0.7632953293,
-0.0241397226,
-0.3506033969,
-0.8706072175,
0.1972542306,
0.6212803788,
-1.8726409047,
-0.2064992992,
-0.0389139704,
0.1145916908,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00046765804],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5147528799,
-0.3092386086,
0.2202983757,
0.3659359406,
-0.1553912974,
0.5975108346,
-0.2690881025,
0.1078891231,
0.3656514104,
-0.1139340204,
-0.0256032439,
1.377567284,
1.6224705773,
-0.4696812501,
-0.7431821922,
0.5846581609,
-1.0572315587,
0.7425234994,
0.8572045757,
0.3786566877,
0.1544498541,
0.4263391768,
-0.6959067546,
-1.5441769846,
1.2422346773,
1.1549270147,
-0.0404567279,
0.0704368742,
0.9527486644],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020697713],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5004119071,
0.5710679403,
-0.7004768368,
-1.5298941982,
0.1226834696,
-0.8023827375,
0.5407325829,
0.3167065547,
-2.3045022923,
-0.129750004,
0.3272245451,
0.189108887,
0.842542912,
0.9200364366,
-1.4378879553,
1.0624661174,
0.158084957,
-1.0738218615,
1.243701082,
-0.1363782132,
0.7573872869,
1.6388302051,
-0.7735879367,
-0.6830006547,
1.1140363274,
0.125792406,
-0.762906004,
-0.2095034943,
0.5154124157],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00071662664],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0361011127,
-0.0008696652,
-0.8793289149,
0.3046015897,
0.3029690048,
-0.4764488549,
0.2686106475,
-0.2846177954,
0.3363357135,
0.032398869,
-1.1434221195,
0.960917481,
1.5005986312,
-0.0465846933,
-0.3294647919,
-0.2212449959,
-0.5470982629,
-1.0241194517,
0.406600429,
-0.1433458082,
-0.3594085848,
-0.7389766245,
0.3019516292,
-1.1330311333,
-0.056791208,
0.2800813723,
-0.1277028101,
-0.1886957034,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077426434],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1342293161,
0.5885043933,
0.8013512628,
-0.0749059894,
0.3626415018,
-0.1719553337,
0.7418286317,
-0.1110203028,
-0.2338422399,
-0.3124686598,
-0.1941903724,
-0.1848918535,
0.1883050864,
-0.6446637405,
1.30464823,
0.1200699111,
0.0585841234,
-0.5700200679,
-0.3925486208,
0.2726402386,
-0.4164246671,
-0.867875246,
-0.0378090556,
-0.5754678894,
-0.3795274681,
0.1956127413,
0.2197846989,
-0.4012862645,
0.0558900763],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00072047114],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0314610678,
0.1866147519,
-0.9675649751,
0.4416746397,
0.4012324483,
-0.6225398051,
0.1392907242,
-0.2993184586,
1.4711266523,
-0.6794687485,
0.5419127166,
-1.9156076373,
2.5038748264,
0.4530600582,
-0.6905031983,
0.2636870451,
1.3335654497,
-0.1475923811,
-0.2126411897,
-0.1763170685,
-0.6911300613,
-1.4972259053,
0.5978433471,
0.8760902448,
-0.4911312852,
0.2635810572,
-0.2134215466,
-0.0958789049,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011078417],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.442037716,
0.7099227108,
0.8526703303,
-0.3780673287,
-0.1040647304,
-0.7837050373,
0.4876154094,
0.2182253898,
-0.7070515247,
-0.9084344008,
-0.442028478,
0.6687432712,
1.0360110324,
0.2724678839,
0.239193594,
0.6503611227,
-0.6246111339,
-0.702817108,
-0.7871962026,
-0.1578322738,
-0.2558803073,
-1.0996249805,
0.2053001265,
0.6436521706,
-0.7173240075,
-0.1807012827,
-0.1780590941,
0.1765385302,
0.0200562951],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034046173],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0306029645,
-0.0987504781,
-0.6829126331,
0.3023232401,
-0.1994088505,
-0.9453840708,
0.0849942154,
-0.2079332162,
0.659456217,
0.1082157136,
-0.9329141406,
-0.3043515747,
-1.3438600066,
0.5728034752,
0.2017053638,
-0.0542533428,
-0.228468972,
-0.8118631833,
0.1884637008,
-0.4121132168,
-0.4221404823,
-1.1464951878,
0.6295380124,
0.0039466782,
-0.6541091926,
0.4131260899,
-0.1994605585,
-0.1881334502,
-1.1816916919],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009812713],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0075769213,
-1.2756438093,
0.0521996529,
-1.0390974975,
-1.0037422762,
1.5008410928,
-1.8225067582,
0.5232012879,
-0.1395611951,
1.0056699216,
-0.8200283624,
0.0569786717,
0.9611161631,
-1.4249620822,
-0.4269038458,
-1.7077422168,
1.776168946,
-1.6468299192,
-1.3404514972,
-0.5501627433,
-0.164029694,
0.6213204501,
0.6916747795,
-0.5768679352,
-1.2334156564,
-0.2610768736,
0.3177277072,
-0.0819241077,
0.4355256115],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014293194],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4858230218,
-0.1472918704,
0.3581659894,
-1.6885973567,
-0.4470823069,
-0.7588063355,
-0.0105622872,
0.2224493411,
-2.5852776759,
0.6018766863,
-0.4255550905,
-0.4675146284,
1.0372911653,
0.0259019666,
-0.2714938327,
-0.7914221044,
0.8986040726,
-1.0924019978,
-1.1911633609,
-0.1370313007,
-0.415262695,
-1.0700475931,
0.4559526717,
0.0079893336,
-0.484857517,
-1.2643088032,
0.5648047486,
0.2477349128,
0.6446368299],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011792779],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6719021761,
-0.4446021252,
0.792188472,
-0.3198164137,
-1.1308394945,
-0.2776607632,
-0.8503602566,
-0.0261966251,
-0.1782044773,
0.3639999826,
-0.4123664061,
0.3382654375,
1.4787013183,
-1.0856503703,
-0.2577362351,
1.0686611073,
0.4525187885,
-1.7047869338,
0.8341225764,
0.2104337681,
0.1873331929,
0.7545139535,
-0.0497730586,
0.7401947642,
0.7763305379,
-0.4149761552,
0.1439961625,
0.1080152854,
-0.0912402128],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006335676],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0276449855,
0.6927756366,
-0.3744033832,
-0.9896722102,
1.2325598788,
-0.7477087765,
1.6407014648,
-0.6010296785,
-0.2609108501,
0.3636689824,
1.0811771601,
0.6362177576,
0.117093479,
0.329452877,
-0.9119542135,
-0.7531077662,
-1.0245882524,
0.0179167241,
0.1570078142,
0.3440067991,
0.2280509273,
1.4617734538,
-0.5109522633,
1.3767855525,
-0.584343833,
-0.0448705863,
0.4069264628,
-0.3644750311,
-1.2598414361],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013659596],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3384930522,
-0.1350077025,
1.7730489201,
-1.4961598812,
-0.341010334,
0.3711759103,
-0.2225174436,
0.110461079,
-0.7908547433,
0.0100715821,
0.3306484016,
0.3338636955,
1.0332386666,
-0.83958595,
-0.2095565316,
-0.3044533198,
-1.4219615886,
2.6925348147,
-1.869126955,
-0.4193305945,
-0.1961258426,
0.2410224886,
-0.6437846398,
-0.7635183209,
0.3553694234,
1.305484704,
-0.3271994389,
-0.5214080878,
-0.0937406161],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021669269],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5226781278,
0.0360061448,
0.2738333174,
0.7483427823,
-0.0033877767,
0.3459733888,
-0.1154726471,
0.2192017295,
-0.1987700935,
0.1227782315,
1.6558729684,
0.8679092844,
-0.3773973621,
0.643273559,
0.8896578559,
-0.201276985,
-0.1791290082,
-0.5057350841,
-1.1407790952,
-0.1906826006,
0.216975141,
0.5973547345,
-0.0779115563,
-0.4872249401,
0.7913490599,
-0.598486183,
0.1003142706,
0.0494557472,
0.3270506659],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009980798],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6185855789,
0.3409010443,
0.0841288197,
0.8725067795,
-0.1154327983,
-1.118557588,
0.5202806334,
-0.3571526483,
-0.4056645578,
0.0239676111,
0.2529066508,
0.7910254402,
0.6836777592,
0.4592019787,
0.6033229894,
-0.4638255392,
-0.1811950748,
-0.7371228401,
-0.5739380185,
-0.1443809373,
0.0683932973,
0.2959187297,
-0.1516327844,
1.598227182,
1.5469021934,
-0.6865120951,
-0.013013052,
0.070010954,
-0.4680877333],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001267314],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2945695555,
0.5039030655,
-0.4631250831,
-0.6813453162,
1.9329760352,
0.7493585348,
1.0001631264,
0.2380791886,
-1.0362838971,
-1.0531305885,
1.0889661192,
0.2753463086,
-0.2674949658,
-0.516491129,
-0.3193715652,
-0.8311937812,
1.2842604623,
-0.8138567535,
-0.711598118,
-0.0002541351,
0.1669684402,
0.4997055887,
-0.9252820231,
-1.6252100588,
2.2022481555,
1.9290973309,
-0.3354883763,
-0.2746254353,
0.089535606],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011075437],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5793514087,
0.8547055771,
0.5166598117,
0.5025779892,
-0.1393733536,
-0.1232543648,
0.781044255,
-0.0721889935,
0.1195301809,
0.6905211682,
-0.3726241411,
-0.6905692983,
-1.1509800542,
0.294006349,
1.6156033363,
-0.7158768615,
0.0855617242,
-0.2934661214,
0.0416137578,
0.0588284923,
0.0574016672,
0.7156543072,
-0.2266283581,
0.0918381,
-0.5975459574,
-0.7613066834,
-0.6684053088,
-0.7390200779,
0.6656157739],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041285157],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0246421161,
-0.2336945205,
-1.6049888944,
-0.5273757064,
1.7727454513,
2.5607669046,
-0.3777701865,
0.6641135507,
0.3454493671,
0.0890205304,
0.0174148404,
0.3818606232,
-0.2119368835,
0.5128641248,
0.5087733118,
-0.199115856,
-0.4137274274,
-1.1382834697,
0.0271345853,
-0.1995129579,
-0.4054614156,
-1.1788812674,
0.6686829006,
1.1594224579,
-0.4980188163,
0.4525198344,
-0.1324238025,
-0.2004146003,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00055009127],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.340204676,
0.6445650134,
0.8896254681,
2.6472555118,
1.015752421,
-0.1354293611,
0.5044619888,
0.0860662519,
-1.9542389382,
0.9993263912,
-0.6998759588,
-1.1181509086,
-1.0718847074,
0.7593853625,
0.5740441154,
-0.0660167169,
0.1044120237,
-0.6224725298,
-0.7955622448,
0.0525767401,
0.2167119161,
0.2954513662,
-0.091720767,
0.0636361985,
-0.3795352688,
0.3449625084,
0.229846756,
0.4705717928,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047805905],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6046399756,
0.8141915252,
-0.1656262919,
-0.398833901,
0.2073777152,
-0.2551055685,
-0.3172505844,
-3.0687626641,
-0.086478426,
-0.5349837289,
-0.9441501229,
0.4441369349,
-0.1193653581,
0.40570155,
-0.4541626955,
-0.0085709384,
-0.2665227583,
-0.914992552,
-0.3170264252,
0.3170819485,
-1.0394452292,
-0.5051802092,
0.8504294497,
-0.2105558037,
-1.1844435042,
0.0885612986,
-1.7341103475,
-1.3068028754,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008250773],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9466879452,
-0.3025078108,
-0.723171796,
-0.1203979931,
0.4863147524,
1.1768567233,
-0.4806290996,
0.3457448924,
0.6846292838,
-0.0567247377,
0.8148850904,
1.3929603649,
0.9400029565,
-0.0036565077,
0.0546098029,
0.5494182936,
-1.1186925746,
0.4290933245,
0.4261478737,
0.1245732028,
-0.2316319031,
-0.9160232466,
0.8017921376,
5.164034868,
-0.6731037603,
-1.7194443994,
-0.0086521154,
0.00929943,
0.613273822],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045129657],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6166254931,
0.2755988607,
0.2970256235,
0.8404176585,
-0.2507521136,
-0.8530978245,
0.2471933558,
-0.2516354401,
-0.1830763893,
-0.0046605692,
0.0741401481,
0.7952357246,
0.9094898091,
0.2284509749,
0.8568709202,
-0.1097385665,
-0.4071118664,
-0.4278791807,
-0.6225567586,
-0.1244600809,
0.0804959683,
0.3535801836,
-0.1084336581,
1.2466713529,
1.3014776927,
-0.7258651956,
0.0454374466,
0.0903617544,
-0.926179732],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012124777],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7084081023,
-0.8053308484,
-0.7990510233,
0.2882620272,
-0.4588183986,
-0.4634810699,
0.2218481487,
-0.1137886287,
0.8008137564,
-0.1380535617,
0.7404815802,
0.9025995975,
-0.9328052521,
0.5438950028,
-0.9113684571,
-0.3714153709,
-0.2338855894,
-0.1260291827,
0.5589974499,
0.4128228401,
0.0929129406,
-0.4110294591,
-0.0445802296,
0.0348056056,
-0.4814034464,
-0.2834284752,
-0.2146789339,
-0.0393314228,
1.3728909145],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00078850985],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1100031411,
-0.6286340708,
1.3735621279,
-0.9407905743,
-1.1506550424,
0.1896704174,
-0.8874503611,
0.2406698751,
-1.4029988262,
0.8756156133,
-0.9218040029,
-1.3620981701,
-0.4643563753,
-0.7914997333,
0.231929933,
-1.2442810357,
1.4747530895,
0.0173351721,
0.4492968169,
-0.1958189118,
-0.0778874565,
0.3805544138,
0.350147098,
0.0708889275,
-1.4621771969,
-0.3509147972,
0.5492074565,
0.5680184562,
0.5154124157],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00010386109],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9578437248,
-0.781993808,
-0.0680338082,
-0.5758641016,
-0.8808739578,
0.0390436818,
-1.0870211344,
0.0391177723,
0.9878376915,
0.4499659157,
2.0645016112,
-2.165004481,
2.3650249623,
1.0974601251,
-0.4643429353,
2.1107874542,
0.2942383184,
-0.1755036084,
0.3116370475,
0.2914826275,
0.3089597382,
0.7916470351,
0.4183431694,
1.1891417983,
-1.0588971085,
-0.8049384517,
-0.0626630305,
-0.0677134114,
0.8915709343],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038146973],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7247012034,
0.4390140345,
0.0371636803,
-2.6726078594,
-0.1550702531,
-1.0138491983,
0.2380202317,
0.4985954403,
1.0861815293,
-2.5798698786,
-1.4233126314,
1.2690924401,
0.804343696,
0.4079736685,
-0.123457729,
-0.3152041612,
-0.5239937988,
-0.0304288868,
0.1366202239,
-0.5657605233,
-0.0517990659,
-0.3220527372,
-0.2654182383,
-0.7281586092,
0.8474823306,
-2.4832093764,
-0.5265044329,
-0.2646400735,
-0.6280579546],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033721328],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1742012011,
0.932975796,
1.5799085175,
2.9603859895,
0.2004513959,
1.0669770803,
0.1265372789,
0.2568331604,
-2.0864386844,
1.2354601908,
0.4901402684,
0.1568014334,
1.1591066402,
-0.0055863874,
0.5861963478,
0.5688835387,
-0.504264656,
1.3357728292,
1.6957999562,
0.4338777857,
0.3523130353,
1.0875123828,
-0.7269438664,
-0.5204005097,
0.3630238401,
1.1696186335,
0.2892035663,
0.2815605006,
-0.2948029886],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00061005354],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1600056298,
-0.4397584102,
-1.5776228701,
-1.706710726,
0.0446631282,
-1.2864542655,
0.2911051553,
-0.5594357117,
0.0043151763,
0.04044862,
-1.177667901,
0.3664221848,
0.9189486164,
0.5322241108,
0.8609279316,
-2.7597092969,
-0.1447177794,
1.2889759042,
0.4280371473,
-0.7167401024,
-0.3981424448,
-0.2052932816,
-0.0899866187,
-1.1444332178,
0.8708352113,
-0.0686274197,
-0.0808563568,
-0.2305384078,
-0.1171558383],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044989586],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6086772713,
0.0597078035,
-0.0331853592,
0.7132847374,
0.3277012716,
0.623832838,
-0.0635204617,
0.1974466588,
0.1438487435,
0.0602727369,
0.0553960008,
0.5879254336,
-0.4562196172,
0.2929133897,
-0.7361260135,
-0.1936170463,
-0.4334550482,
-0.0398026574,
0.4533604957,
-0.2297132564,
-0.1854913495,
-0.284776251,
-0.3549369442,
-1.9395751722,
1.4873317718,
-0.5272980582,
0.0734670379,
-0.0137021765,
-0.6021859933],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010098517],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6513607333,
0.1562731489,
-0.0953674233,
0.2132918814,
0.1748809912,
-0.0560765264,
-0.0320900654,
0.0284394516,
-0.1208688747,
-0.0869551489,
0.552581672,
0.4216222641,
0.1430842489,
-0.115143597,
0.5391977879,
1.1404953482,
-0.7537320424,
0.7307475508,
0.6609371752,
-0.0579857864,
-0.4359271513,
-1.3357919511,
-0.0337215407,
-1.5098196975,
0.6469430264,
0.3110472845,
-0.0773194657,
0.0360617708,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005174279],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4064086733,
-0.8154938929,
0.3248972301,
0.2254128775,
-0.3909807979,
1.6693509347,
-0.8972765712,
0.6716936723,
-0.399868465,
0.5922808622,
1.0935515322,
-0.0394446025,
-1.7089468818,
0.461087224,
1.0339918771,
-2.5992352023,
1.0043337683,
0.4268140499,
-2.8426925525,
-0.6250608922,
-0.0356590883,
0.3400743871,
-0.139419564,
-2.3573552814,
0.2105352316,
-0.2072246851,
0.2495548925,
0.0978124321,
1.0503175049],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002129376],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0398185628,
0.4499805071,
-2.1638884052,
0.2978699754,
1.1850206266,
-1.1026144439,
0.9064961301,
-0.4035129521,
-0.2727961461,
-0.7545284575,
1.7728861097,
0.9072540348,
0.2686384603,
-1.4262757738,
-0.5601090668,
-0.3211797034,
1.6885882455,
1.1310759104,
0.0034914181,
-0.1883414086,
0.3254326273,
1.2665214998,
-0.4208645302,
0.9744932295,
1.7301925375,
-0.5093624493,
-0.0625245538,
-0.0895265801,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0035973191],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9078251426,
-0.9216493897,
-1.0211431957,
-0.5905335677,
-0.2192534059,
0.3123963019,
-0.369880037,
0.0137076203,
-0.1745171586,
0.6627525515,
-0.3418868526,
0.274098224,
0.1495655891,
0.238749734,
-0.275629082,
-1.1945303151,
-0.8539760419,
2.3778658027,
-0.066359494,
-0.2280562135,
-0.4089114439,
-1.0242756555,
0.0174560333,
-0.6417913486,
-0.3549781458,
-0.0895051032,
-0.106111479,
-0.0741439466,
1.174639839],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00019824505],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7148347934,
-0.1965831485,
-0.0354243694,
-0.4184072953,
-0.6087237372,
-1.2081250227,
-0.0243746681,
-0.3362527104,
-1.0217501302,
0.6233316756,
0.0126503348,
-0.7035527998,
-0.308185204,
0.2195643471,
0.4728635506,
0.720318398,
0.624263278,
-1.9501063695,
0.6392417709,
0.0456339337,
0.2864189247,
0.6965729971,
-0.1972506165,
1.2577627068,
1.4151516273,
-0.2155497034,
-0.080828775,
0.0250148159,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012329519],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.198214714,
0.4536700564,
-0.0942715242,
-0.6562033425,
0.80770913,
0.2518348029,
0.0026958978,
-2.5127143779,
-0.0353900272,
-0.2950943342,
-0.3167343763,
-0.2011920741,
-1.5167358656,
0.5134140451,
-0.9791010073,
0.5393185635,
-1.191410922,
0.3243676349,
0.6453220451,
0.6371052053,
-2.2239694652,
-0.4049175335,
0.4124008307,
-1.9543031194,
-1.0945871508,
0.1979445067,
-1.1862321988,
-1.2610626938,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00071904063],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1934926312,
1.7999614,
-0.9972628255,
-1.2368211868,
0.6247128259,
-1.3617769423,
1.6718268894,
-0.7008239316,
1.8290435908,
3.0480233039,
-0.3974386501,
-0.1965993925,
-0.3636055155,
-0.4992940013,
0.1036983207,
-1.2739304265,
-0.7395596641,
-0.8231686555,
-0.6555884567,
1.8834949813,
-0.2378613847,
1.0475591217,
-0.2619544414,
-0.0172159578,
0.3662057888,
0.1501848465,
2.6267585324,
1.6847088953,
-0.4595267744],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021103024],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0513806365,
-0.0507019399,
-0.9231040852,
0.2380782389,
0.1672405846,
-0.5724856025,
-0.0503378749,
-0.1926866926,
2.1157545916,
-0.3538814108,
-0.3808681592,
-3.3954205653,
-0.357017608,
2.3646368862,
0.4444133574,
-0.1344638168,
0.2305037188,
0.8893171035,
-0.333005262,
-0.5189039615,
0.0972490838,
0.6785876132,
0.0382031176,
0.6242076804,
0.5729387775,
-0.9665964123,
-0.0956741174,
-0.1812650148,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007276833],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.5500022906,
2.2164024066,
-2.2540143263,
-0.8590351599,
-0.4967919365,
-1.3039801276,
-0.3709294584,
1.7977606818,
-0.5659127324,
-0.2680812595,
-1.5253491435,
1.3230457781,
1.0747721395,
2.1093494511,
-0.4460064564,
-0.055986676,
0.5383261967,
-0.3397024126,
-0.3633421521,
-0.007291557,
0.4836143581,
1.0430159743,
0.2588766741,
1.3091998532,
0.2908498649,
0.1836718301,
0.4222905767,
0.6266771926,
-0.8002631147],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014591217],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8272847086,
-0.8497372154,
0.1459903645,
0.4214648321,
-0.647996086,
1.4182218276,
-1.1739733107,
0.4799617051,
2.135808305,
-0.3797777868,
-0.6316113055,
1.8223383131,
1.0493127945,
-1.3265485008,
-2.2342553419,
-0.0195386827,
-0.5816296379,
0.9129311574,
0.9292366673,
0.1806783043,
0.2598920585,
1.170674628,
-0.1220605687,
-0.210779905,
-0.188860279,
-0.3443546928,
0.2088774795,
-0.0293586111,
0.9760885266],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004656613],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0029567494,
-1.1641067609,
-0.7538959263,
-1.1302116836,
-0.940259972,
-0.3872366903,
-0.7218010571,
-0.1134754519,
-1.0649049004,
1.3535244446,
-1.2348872482,
-1.4908267646,
-0.6963033818,
-0.0341554404,
0.3793283555,
-0.1645253385,
0.3892961888,
-0.2268569739,
0.096368774,
-0.1898245595,
-0.7719026054,
-2.3624879879,
0.7635329577,
0.5594694955,
-1.3496936231,
-1.4810923307,
-0.0827988328,
-0.0180734872,
1.1124923345],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [6.631017e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1165904116,
-0.8897942527,
-0.5619932431,
-1.1732103832,
-0.9004236302,
-0.3875642138,
-0.896124829,
-0.117110921,
-1.3476461258,
1.529413058,
0.4905725606,
0.0402225453,
0.8276716488,
-0.3360207518,
-0.9850301751,
-0.3323334037,
0.1246389064,
0.5165508762,
0.3107354699,
-0.4663617529,
-0.1935127069,
0.0773872918,
0.3273114735,
-0.5881643991,
-0.3941288437,
-0.408454347,
0.0181480109,
-0.1714616789,
0.2979390331],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002733171],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1532265439,
0.6244313998,
-0.1209647995,
-0.5345024638,
0.215751894,
-0.4321906095,
0.4339823886,
0.369367508,
-0.3637163756,
-0.4046780749,
0.310839667,
0.6515377448,
-0.3996268136,
0.719873637,
-1.1326179691,
0.3110543818,
-0.5962314129,
-0.1483667411,
0.315705206,
-0.1960040058,
-0.2558989107,
-0.7720737776,
0.1780081217,
-0.7059269574,
-0.9062863377,
0.3100212471,
0.2773039381,
0.0746347609,
-0.3706612079],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00057315826],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0360515739,
0.0520170129,
-1.1257493355,
0.2738258168,
0.3247198465,
-0.6003987532,
0.1367498882,
-0.1581528651,
0.5128117788,
-0.3159355391,
-0.7695735327,
-0.2081900823,
-0.4744561029,
-0.7471976075,
0.296882405,
0.4292799322,
0.5131130205,
-0.2017326507,
0.1400640427,
-0.2254458453,
-0.5219307301,
-1.4407356724,
0.565252075,
0.5995544549,
-0.4862951116,
0.3767979851,
-0.1704777487,
-0.0908697796,
-0.3783680213],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013138652],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9649793354,
-0.3863987894,
-0.1468574376,
0.3038702502,
-0.7070686146,
-0.2943077122,
-0.6399609709,
0.1252349451,
1.0553573181,
0.2070826117,
0.5356054039,
0.2611277616,
-1.479387538,
0.2796431133,
-0.2637549623,
0.5614220554,
-0.6689834053,
0.7876176213,
-0.009940588,
-0.3516795244,
0.3301520241,
1.0954077218,
0.2585799419,
0.1624228325,
-0.5998733657,
1.2228470456,
-0.0963015949,
-0.1793648097,
-0.0704786665],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008817017],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.028394782,
-0.5001033349,
-0.804574904,
-0.4576384705,
-0.450897411,
-0.4178493482,
-0.6984817788,
-0.0607895219,
-0.0133731923,
0.0402379378,
-0.2836388789,
-0.6362404923,
0.5122979585,
-2.2049674941,
0.4274728877,
1.8306405255,
1.5593113876,
-0.5918710637,
0.1808854675,
0.2220079945,
0.3667944458,
1.0169828499,
0.1766745267,
0.9692575725,
-0.2687018898,
-0.2501365031,
0.0450527131,
0.019954334,
0.6000607144],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009045303],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5839988195,
0.0881881178,
0.1602215269,
0.6791484766,
-0.1397902145,
-0.2882884537,
0.0418008474,
-0.0173223267,
-0.1410417095,
0.1616140279,
0.9272067882,
0.5817679777,
-0.3243094703,
0.601793855,
0.3635746373,
0.4639166813,
-0.9132404116,
0.7167690631,
-0.0178311405,
-0.1012652688,
0.1587175171,
0.3576531017,
-0.3155439013,
-0.0177804142,
1.2909593473,
-0.6092459016,
0.0132641915,
0.0507372211,
0.2993645599],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00085651875],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3448633063,
-0.0006880299,
1.4598506125,
0.8738877302,
-0.9702001693,
0.2747665194,
0.5632517225,
0.1084133336,
0.3813231817,
-0.7492838885,
-0.8874189114,
0.5537742853,
0.3162319383,
-0.8380593189,
-1.0910875886,
-0.509556155,
0.1358853053,
0.0991500359,
-0.2034816962,
0.4870386154,
0.4518936635,
1.2937766969,
0.3633259239,
1.2559823526,
0.6010871452,
-0.3784350552,
0.0887755933,
0.188983179,
1.1959703557],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035372376],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0094413405,
0.0016912592,
-2.0826907767,
0.0824253686,
2.283993021,
2.3451970801,
0.173379896,
0.4854710861,
-0.2920741758,
0.3462776599,
0.0179376229,
0.1615254562,
-0.2965490371,
1.0451579884,
0.6541220301,
-0.5466429306,
-0.5892495077,
-0.6186257292,
-0.6413421258,
-0.2195227626,
0.1799711774,
0.4402562551,
0.0246595993,
1.1653653537,
0.9680660022,
-0.9610183842,
-0.0459589401,
-0.1994715401,
0.1317278233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047540665],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1484749991,
0.5546831928,
0.0895724136,
-0.4923147033,
0.8445123055,
-0.428486969,
1.1912234206,
-0.162352713,
-0.785106689,
-0.4955120592,
0.3802734064,
0.7044581764,
0.0563116415,
0.4717609529,
-1.7347402383,
-0.4364168569,
-0.5839320361,
-0.1761659132,
0.4346925982,
-0.110833185,
0.1477172582,
0.5283654883,
-0.5748151768,
-0.5705527314,
0.2562123227,
0.7033200133,
0.1326855631,
0.3869419801,
0.0678128986],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009534657],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0067044888,
0.0652535132,
-1.0105762019,
0.2326670183,
0.3181265138,
-0.4236546155,
0.0731279777,
-0.0602923567,
0.1720397917,
-0.1875804249,
1.3298776722,
0.9369835461,
0.0154508043,
-0.6512942475,
-0.5242840409,
0.4397387563,
0.3892508972,
0.0560452704,
0.2517225741,
-0.201492349,
-0.4086909439,
-1.0873387232,
0.6260040606,
1.0152673678,
-0.6111235772,
0.3058736202,
-0.1571415456,
-0.1141519398,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001532048],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6930886119,
1.747981112,
-1.400089486,
0.4907836525,
0.812233823,
1.5843945349,
-2.7687341135,
-8.6206313951,
-1.6502519869,
-0.9346162096,
0.1201507766,
1.9147236256,
0.528765212,
2.1729067482,
-0.5233269824,
0.1121045565,
-0.1706717353,
0.5464687228,
0.4763991339,
1.9356035681,
-1.8196851527,
1.2368977565,
0.4161590942,
-0.4086206754,
1.650779262,
-0.668477445,
0.4403740859,
1.2442970207,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005040765],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2638094438,
0.5934398462,
0.167008782,
-0.0291717633,
-0.0845882329,
-0.4709148158,
0.404647543,
0.297372992,
-0.6610835082,
-0.2466001052,
0.6037068804,
0.1172350962,
-1.0017587921,
0.982140098,
-0.0886412233,
0.4347924106,
-0.5275205141,
0.5371435297,
0.4786731745,
-0.3561835258,
0.152913578,
0.1269858782,
0.0750585955,
-0.0111011315,
-0.3987958001,
0.5346695727,
-0.5960920126,
-0.2161906917,
0.353278955],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00095278025],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6451716637,
0.0633070452,
0.0706582697,
0.4852480136,
-0.3063074705,
-0.784292055,
0.1347037375,
-0.1552155784,
0.3048104645,
-0.0601323731,
-0.7339755656,
-0.361011933,
-1.3515954113,
0.458399868,
0.2022533364,
-0.3095693732,
0.0711779747,
-0.5489225639,
0.1710059095,
-0.2767515707,
-0.116803418,
-0.2116045569,
-0.1470075146,
0.7033160594,
1.1967794518,
1.1534056262,
-0.1522003084,
0.0034743907,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014761388],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0234369751,
0.1278127395,
-1.2116095652,
0.4375585702,
0.228113037,
-1.1448351856,
0.3756053527,
-0.2944999594,
0.5985988783,
-0.4772017395,
-0.4978246756,
-0.2079605691,
-1.0350022749,
-0.5918026174,
0.295816567,
-0.2212165817,
0.955063234,
-0.0648359209,
-0.0946654723,
-0.371698953,
-0.2385541454,
-0.4741037149,
0.2544675273,
-0.2480167762,
0.2197551733,
-0.7652798309,
-0.0421948369,
-0.0984193033,
-0.6065519129],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0019688308],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.170572588,
1.2395738779,
1.1057427409,
-1.2384332243,
-0.0704526246,
-0.7988909865,
0.9450354117,
-0.2537068966,
1.373458103,
1.4448319683,
-0.3488386556,
-0.5807430597,
-0.9688720089,
-0.8501834328,
0.2900461878,
0.7923944606,
-1.4424072948,
-0.5860580177,
-2.337502101,
1.2052011727,
-0.7702275331,
-1.2499185801,
-0.2880108975,
0.4946713805,
1.1503161343,
-0.0089706685,
1.4366127544,
0.4068034756,
-0.5235355577],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018692017],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6229782862,
0.4454728378,
-0.2113246226,
0.9600087618,
0.0611848958,
-0.9405244757,
0.2623985008,
-0.1959441758,
-0.0891511764,
-0.5947375603,
0.1232780538,
-0.1545532267,
-0.1265858445,
-1.3421411607,
1.1936092915,
0.6644328663,
1.0224008807,
0.7299436004,
-0.778473323,
-0.1332594933,
-0.0958175799,
-0.1942555364,
-0.2013281687,
0.4095522214,
1.3237214262,
-0.6752281668,
0.0797318185,
0.1907778168,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014978945],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3255032628,
-0.5133067385,
0.7884672832,
-0.3906748421,
0.0756343288,
0.006876687,
-0.3353099778,
0.235274068,
-1.1405036169,
0.450504825,
0.6967619157,
-0.6841633125,
-1.2415140149,
0.0631460156,
-0.5900585073,
0.0285539128,
1.221894634,
-1.2913625185,
2.629784472,
0.5703873989,
0.4118074769,
0.8646039635,
0.1021522659,
-0.512245259,
-0.3307508033,
-0.0803007095,
0.2710487034,
0.4284382362,
0.6187025103],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009764731],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.1432585939,
-4.8084424191,
0.4343196105,
0.199376941,
0.1528025549,
-0.2585395341,
-0.4534527968,
0.937294533,
-0.7634705087,
-0.793525491,
0.8512453567,
0.3622441667,
-0.2635593712,
-0.0244855434,
-1.2639618706,
0.91298507,
1.161009825,
-1.5016344561,
-0.4116014082,
4.4778277154,
1.5464431904,
-0.089487771,
3.0812157826,
-0.5793484669,
1.1108155508,
-0.7146032673,
0.0260615921,
-2.2320679853,
1.8951424806],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016763806],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4580673334,
-0.4486504946,
0.6241696631,
0.2672318975,
-0.9204941478,
-0.316817672,
-0.2978466573,
-0.0716553907,
0.619056368,
-0.3240468438,
-0.3409596027,
0.9407661041,
1.3722540801,
-0.5537140342,
0.6307163205,
0.3621278246,
-0.3551864096,
-0.2543542497,
-0.149725179,
0.46549638,
0.255135497,
0.5054014835,
-0.3147537082,
0.8590218506,
0.3755389371,
2.2441684122,
-0.1485160654,
0.156925483,
1.0955054828],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003772974],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6157556639,
0.3067752539,
0.3822934629,
0.6891872027,
-0.2985149227,
-0.9014540172,
0.0551331189,
-0.2802691876,
1.0599539632,
-0.5912060613,
1.2595305598,
-1.8149650518,
2.456884706,
1.0709493078,
0.2801297998,
0.3577304888,
0.9217876752,
-0.2280509119,
-0.6613648388,
-0.1031946789,
-0.5606505741,
-1.2803702271,
0.3001274541,
1.042011755,
0.329558021,
0.0676968792,
-0.1185030507,
0.1055585175,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010609627],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0894713968,
-0.6212788863,
-0.4547698387,
-0.6581799852,
-0.6399456127,
-0.3342083575,
-0.7475384195,
-0.1248357317,
0.0646554533,
0.6425923472,
-1.2913105599,
-0.3861288914,
0.9474999939,
-0.6493822319,
0.1620500469,
1.474858165,
-0.1638621965,
-1.1650383826,
0.8621509892,
0.0824903447,
0.4055206773,
1.2876735417,
0.0600289227,
-1.0125995149,
-0.0753904514,
-0.1047414434,
0.0204680268,
-0.1496055301,
0.2056731977],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00032794476],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3540412545,
0.3995387311,
1.1055784956,
0.377272406,
0.193485931,
-0.1625249679,
0.4521606317,
0.0147416992,
-0.4064366559,
-0.3710787311,
-0.0692050782,
0.5682289617,
1.0256373675,
-0.0962915438,
1.2331958297,
-0.057349683,
-0.3737227319,
-0.6846022948,
-0.7008523693,
-0.137846332,
-0.1231560545,
-0.252560663,
0.5192861193,
0.0765225924,
-0.2073284053,
-1.3150870325,
-0.003753117,
0.0142581585,
0.1423747086],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007766485],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4456770688,
0.7631072077,
0.835623752,
-0.8098843356,
-0.3747502076,
-1.1609323378,
0.4438296243,
0.1814095098,
-0.4749691869,
-0.8323892178,
0.039384862,
0.8370102525,
1.0108913092,
0.2015055958,
0.1933562917,
0.4039389077,
-0.3580964861,
-0.8032622109,
-1.0734161532,
-0.0595519995,
0.0448717437,
0.0975646148,
0.00013772,
1.6694956718,
-0.5567733559,
1.5043166011,
0.3290078919,
0.3950599574,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00072845817],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7219659501,
0.8628524909,
0.3646933361,
-0.5545673475,
-0.4846653337,
-0.4047987266,
-0.1424564779,
0.9058309102,
-0.1164576316,
-0.5063773072,
0.115249529,
0.0654211172,
-1.845954521,
1.0129482855,
-0.9329025264,
0.6551635107,
-0.2580385764,
0.3708997029,
0.2024286053,
-0.2263236863,
-0.181320335,
-0.7349230306,
0.0204419544,
-0.0434315073,
-0.3036599413,
0.6423471813,
0.3429313291,
0.3151728194,
-0.7812247993],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00037050247],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3495213344,
0.4527805569,
1.0276297797,
0.9102637839,
0.2377957463,
-0.1880272772,
0.5176187123,
-0.0217491074,
-0.3845362574,
-0.2404490845,
-0.2389418634,
0.5990427378,
0.4092101483,
-0.105757957,
-0.0476946146,
-1.3794468554,
0.6737329593,
-1.0392612745,
0.4307604463,
-0.0595122051,
0.0656518256,
0.5273539497,
0.0645064914,
0.7042184793,
-0.2092682296,
-0.6564943411,
0.142629752,
0.4964536484,
-0.1168275334],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007018745],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1507455515,
0.8508504015,
-0.415463986,
-0.6253505721,
0.9289268087,
-1.2462204105,
1.4150938557,
-0.5247625807,
0.772994574,
-0.5145889826,
0.3401741803,
-1.8915674524,
2.6701417605,
1.8811682311,
-1.0967720752,
-0.9376898879,
0.3495487813,
-0.4216373962,
-0.560520407,
0.1287816309,
0.1208633083,
1.157483689,
-0.3530193578,
0.0108423272,
-0.4593636559,
0.1099379518,
1.1742148818,
1.0838649626,
0.020554755],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045329332],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2402039535,
0.8586260632,
-0.1721337911,
-0.1262035479,
-0.3924481974,
-0.4780367833,
-0.0031669532,
0.8879785209,
0.620731612,
-0.2452540426,
-1.9247879707,
0.5673356699,
-0.3646492096,
0.131803637,
-2.2005544464,
-0.6009878286,
0.6219754517,
-0.9852845898,
0.6595469112,
-0.1138089821,
-0.6312479249,
-0.9764379887,
0.2732936781,
-0.1748725379,
0.4124818557,
0.2622758967,
0.5601346276,
-0.3390519882,
0.2157076363],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020772219],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6572001686,
-0.157142282,
0.2772135815,
-0.3343325753,
-0.6958949963,
-0.7537114004,
-0.4029120628,
-0.1078564034,
-0.8707647261,
0.1409322005,
0.9012791387,
-0.0717557028,
0.7444853166,
-1.2139265267,
1.1036154708,
1.1663399243,
1.5803206051,
-2.2097679902,
-0.1119067966,
0.1403332182,
-0.1039707597,
-0.3912963624,
0.3576384021,
0.8812490579,
0.220976615,
-1.0031935911,
0.0991353105,
0.1618019275,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009835362],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3250525309,
0.1131650492,
0.7014305036,
-1.6652709922,
0.1913783425,
-1.0296490528,
0.5583701635,
-0.2188115226,
-1.3954788273,
-0.2246623557,
-0.8706049633,
-1.3090354712,
-0.455029676,
-0.0062286447,
-0.2419559411,
1.1824323902,
-0.0295533561,
-1.345421758,
-0.1463417446,
0.0775611904,
0.6051771031,
1.458067144,
-1.0504754848,
0.1431908639,
2.0536680062,
0.2214322557,
-0.1018284795,
0.1093658789,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008764863],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4947638681,
-0.2449770073,
0.7161278301,
0.460204458,
-0.201901926,
1.3496763887,
-0.7551679512,
0.5572065305,
0.783907083,
-0.3820875152,
0.2560026056,
0.8743176124,
0.1097889442,
-0.3109742774,
1.3895504738,
-1.2488932248,
1.1626137133,
-2.5819860304,
-1.9849579595,
-0.2765984861,
0.0464383988,
0.5845175879,
0.2701242446,
-1.5321276024,
-0.1037688668,
0.9158579193,
0.2082914793,
0.0551775163,
-0.0508351586],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000718981],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.2223342176,
0.0937743615,
-0.2983311731,
-1.9050651367,
-0.5327906963,
-0.5793110145,
0.3376384644,
0.4319159677,
2.1225211498,
1.1439015624,
0.3719969846,
0.3315492345,
-0.7776107322,
-0.333649101,
-0.1734501431,
1.2436543377,
-1.552872098,
0.8187153348,
-1.1386489655,
0.2949847669,
-0.4712970913,
0.6166571159,
-0.3852355873,
-0.6038976771,
1.0554629796,
1.1335165026,
1.0688180908,
2.2894523828,
0.6375391331],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00012177229],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6122214444,
-0.2273847039,
0.3762158649,
-1.0234897885,
-0.7785849295,
-0.832162668,
-0.2567491215,
-0.0630368481,
0.9462674609,
-0.7681967499,
1.814893685,
1.4721624953,
0.1652886601,
0.3799389188,
1.2534640827,
-0.106285035,
-0.4883666353,
0.3422701596,
1.0859296138,
-0.0317350228,
-0.1056097013,
-0.2839014334,
0.1419715851,
0.9256126308,
0.41079248,
-0.3765281877,
0.0159717188,
0.0663090234,
0.020554755],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005405545],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.6841451919,
-5.7896817286,
-1.9894753346,
0.5071514898,
-2.616194126,
0.2822155713,
2.2221586751,
-0.7500472456,
-1.8035653312,
0.180768526,
-1.4578085605,
-1.1895887184,
0.4567520548,
0.2877272379,
0.0475053345,
-0.4245208812,
0.7706857955,
0.6582783283,
-0.5695006086,
6.4790723231,
1.7959755604,
-2.3049761496,
-4.2559909714,
-0.5557565219,
-0.3328340396,
-0.5915174364,
-1.1685308497,
1.4323390265,
2.4471438972],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [3.0845404e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6419090005,
0.0445895685,
-0.4326139168,
-0.6006386432,
-0.4891395087,
0.0834201513,
2.479430154,
-0.3700228262,
-0.3994747859,
-1.3475499627,
0.6794205419,
-0.4516392145,
-1.1650955471,
-0.5354765356,
-0.3025469483,
1.0195828667,
-0.2976019049,
1.6583207559,
-0.8429523797,
-0.2313980577,
0.3443922324,
1.0269362209,
-0.3012198625,
-0.6970710412,
0.8757512542,
-0.3873845443,
0.494707786,
0.0137145769,
1.64565703],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007120669],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3666811739,
0.7093571166,
-1.4573687788,
0.1473113672,
1.4050583653,
-0.9627390517,
1.0431168729,
-0.3711787519,
0.3451711085,
-1.1482537741,
-0.6879755776,
-1.1734898108,
-0.648277053,
-3.1121616926,
1.0381902113,
0.4594814296,
2.2886618331,
1.9745089612,
0.4237356971,
0.2406831177,
-0.2127383468,
-0.0215299033,
-0.3703659276,
-2.2865314049,
-0.0835274413,
-0.9402497032,
0.291183179,
-0.5502175567,
-0.1571427067],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017395318],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3778116656,
-0.1577971265,
0.2526892577,
-0.6630990691,
0.4070334969,
0.3464643369,
1.0090923009,
0.0990345227,
-0.113406664,
-0.9438933426,
0.0241421247,
0.4094150539,
-0.3978085555,
0.1845698539,
-1.1743117298,
-0.0547081167,
-0.6902457793,
0.4088378913,
0.9919394721,
0.5895859653,
-0.081381416,
-0.8155853649,
0.2373858919,
0.103432467,
1.9772077628,
0.0703373977,
-0.5510172274,
-0.367621891,
1.1922607323],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005328357],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5441514957,
0.6152365957,
-0.1028930192,
-0.7942758134,
1.9625087161,
2.5010895499,
0.0571511561,
1.0853030384,
-0.9089337309,
-0.8080814789,
-0.5073249231,
-0.1673589432,
-0.1438776513,
0.7348398794,
0.5527528749,
0.7042737336,
-1.0803332187,
0.533508861,
-0.5809954389,
-0.0956003555,
0.1090608148,
-0.2418768093,
-0.6832408007,
1.653353524,
1.6738994554,
-0.8081847996,
-0.2205701238,
-0.0924768173,
-0.720345956],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022161007],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0696514948,
0.0145074472,
-1.3482268339,
0.2022396284,
0.4565883074,
-0.8534341692,
0.496612897,
-0.3343277061,
0.2447250014,
0.1757891377,
-1.064342882,
-0.2923822251,
-0.9742293059,
0.7601266021,
-0.2212454686,
-0.6228461623,
-0.1146818971,
-0.6925597678,
0.234309135,
-0.3538015729,
0.1016323175,
0.4687259849,
0.0140472082,
1.1989469259,
0.7404084127,
1.4193680708,
-0.3059179117,
-0.2461198314,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0018556714],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8079032476,
-0.8051961123,
-0.1898013868,
0.1972531923,
-0.1342094375,
1.935187399,
-1.1146904364,
0.7489110577,
1.8221754406,
-0.2965957201,
0.1549235137,
0.8215013138,
-1.1076904025,
-0.2614240179,
-0.2709761627,
-0.6148817762,
0.216416401,
-0.5337778464,
-0.5200865509,
-0.1752512918,
0.1395998941,
0.6140323283,
0.324650333,
-1.6171831023,
-0.9440576882,
-0.6020581102,
0.2175056272,
-0.0924018016,
0.8753510976],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007133782],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3539694395,
0.3211230776,
0.0615372767,
-2.5152491493,
0.6643882601,
-1.296534795,
1.3751830248,
-0.2864153865,
0.3927208572,
-1.9082564587,
0.9163808785,
0.7557388265,
-1.2486574819,
0.9823430007,
-0.6299724684,
-1.6671562034,
-0.1549036831,
0.251860171,
1.1174859711,
-0.2196843251,
0.3097346359,
1.0025579051,
-1.2897661171,
0.0991975839,
2.938792912,
-1.1298470723,
-0.0339498707,
0.0484769099,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001019597],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9765249403,
-0.2617475277,
0.0918102454,
0.3305698427,
-0.7065000672,
-0.3006283955,
-0.6415920295,
0.0169556893,
1.3088320225,
-0.1688434364,
-0.7000468419,
0.8034345696,
0.7866464622,
-0.3703660578,
0.9714296292,
0.3729975635,
-0.7384507413,
0.1426851173,
-0.5018365384,
-0.2397077861,
0.1241382089,
0.6701315457,
0.4747222598,
-0.0232138981,
-0.7240052462,
-0.8431349258,
0.1539678494,
-0.0688106414,
-0.4781520848],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00054195523],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2476351106,
0.6052024525,
0.343505243,
-1.0970064748,
0.3538920291,
-0.8127984111,
0.9604792087,
-0.3469162589,
0.3073683159,
-0.0502009602,
-0.2932408359,
-0.1242183717,
-0.3800844922,
0.0497787543,
0.6023697862,
-0.6437108233,
-0.1681428392,
-0.8783338578,
0.8575594551,
0.3598195731,
-0.4223463242,
-0.8191549966,
0.0419441032,
1.9376324245,
-1.0215174256,
1.0435875053,
0.262827177,
0.1652051881,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031384826],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9156742681,
-0.2359925592,
-0.4152929754,
0.8744032306,
-0.2087899169,
-0.048423197,
-0.2562146419,
0.0888457997,
0.6104403551,
0.3293043759,
0.3140392431,
0.3920182773,
-1.0242870555,
0.4922484901,
-0.266729879,
0.4768335988,
-0.9450724199,
0.7396572983,
-0.2103346048,
-0.2557185827,
0.1414904362,
0.3541587705,
0.1791995628,
-0.7620164296,
-0.2103474961,
-1.3828881223,
0.0525092481,
-0.1191900239,
0.6062499594],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006339848],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.2033460284,
1.9512372604,
-0.3815070903,
0.4845230768,
-1.6287968828,
-0.5688235236,
-0.7781114737,
1.6527306188,
0.3839853921,
1.1954474957,
-0.9455630929,
0.4401334637,
0.1486184137,
0.9672333041,
1.5642717015,
0.387604963,
0.4764023476,
0.5942741376,
0.0521130771,
0.8511594862,
0.0556698455,
0.5053812491,
-0.5109380296,
0.655595481,
1.8629834017,
-0.1728130064,
0.9133790733,
0.5711638469,
0.3714665846],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026103854],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3907215767,
-0.1144361133,
0.6100063224,
-1.3264341994,
0.2123789752,
-0.3434832929,
0.2892317469,
-0.0828331914,
-1.5154959393,
0.281560895,
0.315298994,
0.2680696044,
0.8366855559,
0.0292321832,
-0.5364617099,
-0.8672705767,
-0.9740494931,
1.9913490149,
-0.8437619574,
-0.5635670523,
-0.3708940032,
-0.5970080152,
-0.2925354821,
-0.7742779217,
-0.3443488763,
1.8164117301,
-0.2160349963,
0.4061743809,
0.5679058477],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017133355],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1032078113,
0.6122533804,
0.6698835559,
0.3253377779,
0.3467638909,
-0.4961217504,
0.6786204374,
-0.1645881642,
-0.7580427378,
-0.1782270839,
-0.7824629767,
-0.2438909589,
0.310491283,
0.3444837399,
1.2258805367,
-0.4075017456,
-0.1116873709,
-0.0333965776,
1.5041876386,
0.1573729206,
0.0306226482,
0.1314511239,
-0.4261483729,
-0.1183982756,
-0.1554093892,
1.0020909972,
0.1962257059,
0.3856694541,
-1.1289470305],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014289618],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.031586509,
0.7073561097,
0.0527195111,
0.7521641772,
0.4869868156,
-0.2086220503,
0.5512501089,
-0.1236863944,
-0.548342333,
-0.2218457428,
-0.5169576211,
-0.6265250757,
-0.2745762199,
-0.6863605026,
1.6351842168,
-0.9116227739,
1.6949204534,
0.3024363876,
3.4729907131,
0.3399321825,
-0.342551677,
-0.8926090926,
0.0598822543,
0.9827192747,
-1.4692708519,
1.169062467,
0.059697573,
0.6743340457,
-0.4447317063],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012334585],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.636306172,
0.0396445991,
0.3189589192,
0.1672215215,
-0.0751258831,
0.235717246,
-0.3009451013,
0.0762624771,
-0.0029134874,
0.0521981366,
0.546285701,
1.1612104045,
1.5297628965,
-0.0551453792,
0.6056905984,
1.1731461644,
-1.4560296854,
0.7228765808,
0.4923260991,
0.0538671971,
-0.1357148452,
-0.3593004985,
-0.1260179141,
-1.3446137302,
0.6334768028,
0.5463975286,
-0.0139982696,
0.0322510734,
-0.5800801251],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022864342],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2420869031,
-2.0213367549,
1.8530980148,
-0.6004309606,
0.975141569,
-0.4134251249,
-2.1394535327,
0.690586588,
0.2900921357,
-0.143376157,
-0.7375135746,
-0.2890994396,
-1.107766271,
-1.2198426945,
-3.1394588716,
1.0425665767,
0.4557112485,
-0.4739344048,
1.5841076314,
0.97989718,
0.4894270123,
0.5999177093,
0.0983573237,
-0.8035501794,
1.3199797109,
-0.1904987393,
-0.0231018061,
0.3284212626,
0.2468717869],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023332238],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.103031529,
0.5943716164,
0.0879088571,
-0.1280866936,
0.8735817854,
0.0270169292,
0.6234107991,
0.0982445196,
-0.6415872427,
-0.633064877,
0.6581363938,
-0.188897684,
-0.8795502204,
-0.4982065808,
-0.072560627,
0.1161637968,
0.6638667198,
0.7388906858,
1.8058075434,
0.0879757789,
-0.3574736501,
-1.0883584395,
-0.19156996,
0.190237195,
-0.6770299971,
0.7341228009,
0.1974717745,
0.4818163502,
-1.344792593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015328526],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3445013607,
-0.1355262119,
0.1597217414,
-0.4233132328,
1.035537935,
0.1072638355,
0.5863004547,
0.0752438833,
0.3921433132,
-0.1289986144,
-0.3537290904,
-0.5424968784,
-1.6942695973,
0.2827473327,
0.7338425886,
-1.159820258,
0.5248354938,
-2.3684095395,
-1.4554056513,
-0.3825931049,
-0.3794687229,
-0.3623115329,
1.3388882014,
-1.7288159076,
-1.2600151307,
0.4646216144,
0.2018596869,
-0.6677603186,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00048568845],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3464988183,
0.7334383885,
-0.3598637395,
-0.503159461,
0.7754640321,
-0.6990058854,
1.096985306,
0.0951138938,
-0.6575288862,
-0.9729090386,
-1.2506928136,
-0.1887377665,
-0.6789765634,
0.9954469871,
-0.5335171659,
-0.911966605,
0.0605099297,
-0.3802541938,
0.0818257673,
-0.2741495023,
0.3478512207,
0.8407775706,
-0.6563233962,
1.1806591458,
1.283014757,
-0.1919589688,
-0.1697565442,
0.1353313618,
0.1810213455],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044089556],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6980022777,
-0.0691967545,
-1.0044444805,
-0.6722263807,
1.6882895481,
-1.1085689736,
0.8558392798,
-0.1491317594,
-0.0054758743,
-0.9304423788,
-1.1513689313,
0.1160145773,
0.4390016637,
-1.1267803976,
-1.5242294306,
0.5083905613,
0.1079361307,
-0.3469333655,
-1.4776282676,
-0.9207842611,
-0.1825688398,
0.2047916007,
0.8209324514,
0.3807318749,
-0.2762100045,
0.412709462,
-0.7211784389,
-1.0187040951,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008994341],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4331363427,
0.560310948,
1.2341641308,
-0.8165726563,
-0.1553369987,
-0.5728288209,
0.4231440992,
-0.1083902335,
1.7498943845,
-0.3943004265,
0.7272937745,
-3.5394642485,
-0.5946570844,
1.5783019233,
0.2986478131,
0.1766563806,
0.5231061603,
-0.4805195246,
-1.7184768613,
-0.0063764778,
-0.3761742483,
-0.5297311091,
0.0166099284,
0.5098777104,
-1.0302721916,
1.3623112217,
0.0905320494,
0.0025262509,
-1.2831588519],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00027915835],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0072009583,
0.1364593611,
-0.9202688861,
0.3783498976,
0.377107517,
-0.38601793,
0.0024923959,
-0.1308510315,
1.3165518546,
-0.5179097304,
2.2636909621,
-1.5084459738,
1.734792124,
0.7984467479,
-1.3416958184,
0.4035117172,
1.2151211558,
0.370147013,
-0.0020757976,
-0.2496739805,
-0.6145344474,
-1.3393479019,
0.6432508272,
0.9163604046,
-0.6515852968,
0.2254817957,
-0.2216304874,
-0.1333020105,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0018437505],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4036347738,
1.2107257636,
0.95685083,
3.0187873071,
0.2442314315,
0.9966495298,
0.3626239751,
0.5267080049,
-2.1177671523,
0.9493930872,
-1.2760380153,
-0.1529149206,
1.1596183436,
0.2195909142,
0.4825962965,
0.0485669008,
0.3238021577,
-0.3578281497,
2.0668252591,
0.6071637782,
-0.6389586526,
-1.9895065892,
0.2494625514,
0.6631632502,
0.0581034083,
-0.0631739095,
0.4809000365,
0.3504047165,
0.5659923067],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006955266],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8496019057,
0.0761149448,
0.6717502385,
2.4917326118,
0.4165878317,
0.0013426022,
0.8109497859,
-0.4557218463,
0.6136663197,
1.1225996755,
0.7139421204,
-3.0226221572,
1.0618671372,
1.3674317283,
-0.0848899383,
-1.0844668565,
1.4193018151,
-0.5695433927,
0.6130859654,
-1.1084959256,
-0.5281941009,
0.7974469201,
1.3318781814,
0.6420509919,
-1.1299166281,
0.322396298,
0.4529149139,
-0.3315259282,
0.9026779827],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033926964],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4962418227,
0.5863097892,
1.8261854982,
2.0021725723,
-0.617644812,
0.2840512785,
-0.2887964744,
0.3528008709,
-0.3818951074,
0.966616363,
-0.8628728393,
-1.5228239084,
-1.54000644,
0.0609463175,
2.3321851327,
0.6962710156,
-0.2007008329,
1.2657229458,
0.4825490594,
0.4822452582,
0.2715261302,
0.9183700633,
-0.2665045714,
0.5830632029,
0.0578288285,
0.8786249108,
1.1408392777,
0.8137528078,
0.3407305587],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002180636],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0155775315,
0.4020469959,
0.0915898561,
-0.5537871616,
0.3547895881,
-0.4223323091,
0.633901467,
0.0858982252,
-0.0056510403,
-0.1653777593,
0.2028556031,
-0.3049054437,
-1.9876884601,
0.7053494872,
-0.9071728393,
0.2535761934,
-0.6887005127,
0.025550772,
0.3352050134,
-0.1879789212,
-0.3406938945,
-0.9295563206,
0.1004197913,
-0.7732041145,
-1.0531871811,
0.3155694939,
0.5611994195,
0.2599139026,
-0.6335827077],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00056687],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0681666222,
-0.3598415105,
-1.1335440806,
-1.5336707372,
-0.1093443246,
-1.0459073175,
0.0767171239,
-0.2237734368,
1.9302653842,
-1.061062518,
-0.6621821706,
0.1692890008,
-1.3888831913,
0.826318259,
1.6925384935,
-1.1798086703,
-0.0495659271,
-0.2631745024,
1.4708657642,
-0.3675805614,
-0.3334347946,
-0.8119260689,
0.5004149416,
0.8973033759,
0.0120550182,
-2.3184656003,
0.0367774615,
-0.1356495451,
-0.4975007863],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00094896555],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6245080066,
-0.0146352987,
0.4152886208,
-0.1385190112,
-0.4889598616,
-0.5119162437,
-0.1962945988,
-0.0496432252,
-0.0043893755,
-0.0528395797,
1.5794761655,
1.3234447715,
0.8586360695,
0.1764920893,
0.4970535323,
0.6253470042,
-0.7453709394,
-0.0086549539,
0.3881251693,
-0.0022448811,
-0.1019269581,
-0.2864979501,
0.1389164152,
0.6625172805,
0.2272058642,
1.8267663101,
-0.1735321012,
0.0127925273,
-1.0482621856],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043475628],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6753377581,
0.067221,
-0.0854948761,
-0.056897512,
-0.0348159659,
-0.6075886299,
0.2256260466,
-0.270263657,
0.1218882797,
-0.2467912924,
-0.7052927085,
0.8229669309,
1.3300810122,
-0.12691542,
0.0349733446,
-0.2755218906,
-0.217058899,
-0.8643444311,
0.6969385694,
0.0155638531,
-0.1516486178,
-0.1509953105,
-0.2803717031,
-0.0235559783,
1.2670855784,
2.3754947869,
-0.2201937704,
-0.02280941,
-0.6977243738],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005276203],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0070928351,
0.8330026226,
0.7969698815,
1.9214634878,
0.4748199313,
-0.0947001815,
1.0192305331,
-0.1949979172,
-1.232404824,
0.9847935431,
-1.1518821089,
-1.142472576,
-1.0317839705,
0.1690399037,
-0.4395102548,
1.430327661,
-1.3486070264,
-0.6003049963,
-2.0942086417,
-0.3283539279,
-0.5698194746,
-1.8271298412,
0.5150706793,
-0.2167155521,
-1.8589263037,
-1.5463668684,
-0.5897947181,
-0.5319440692,
0.353278955],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000123173],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.9609477775,
-3.779116943,
-0.0071772301,
3.0479557793,
3.1335286235,
-1.4981002007,
1.8326122059,
-1.0578169657,
-0.51107443,
1.86762063,
-1.0628889461,
-1.08600563,
-0.1447420337,
-0.8740151719,
-1.1263527189,
1.2283014145,
-1.6066317493,
-0.9614598474,
-1.0636939526,
-5.6126762803,
-2.5783447891,
0.92082156,
7.8417999671,
-0.1319273131,
5.2494705413,
0.7815078885,
3.2692705115,
-1.3719101562,
1.1759158504],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.6136637e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0166998382,
-0.1114529559,
-0.7691983092,
0.1504589199,
0.0408986765,
-0.5029032658,
0.0507434541,
-0.1074997159,
0.3299149751,
0.2322937556,
0.5199712384,
0.7124046158,
-0.4687380072,
0.5712677835,
-0.6402995164,
0.2507665116,
-0.7342019485,
-0.1974738829,
0.7253602905,
-0.2868139273,
-0.3669158314,
-0.9969120562,
0.4935357273,
-0.713040663,
-0.5579063622,
0.4204566583,
-0.1992828451,
-0.2230357792,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00086921453],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0701372323,
0.6896473291,
-0.0628573439,
0.3688321378,
1.1726753529,
0.1367064857,
1.2422540593,
-0.2866503876,
-0.1630784913,
0.8483467154,
0.1193374715,
-0.65023392,
-1.9649718343,
0.5022569209,
-0.760937545,
-1.0918624106,
-0.4133609187,
0.5434508465,
1.517050093,
0.3382379363,
-0.040458022,
0.7277261454,
-0.630142686,
0.3064005401,
0.0465459552,
-0.9165848061,
0.4909567944,
-0.4813833356,
-1.1289470305],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012970865],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4186941292,
0.249373081,
0.9987356124,
0.1456582978,
0.9833991702,
2.1264323164,
0.4571754215,
-0.7019927366,
1.4594794682,
2.3479588239,
1.1869235776,
-0.7682315017,
-1.1836743966,
-1.3235142015,
2.3508782794,
-2.0955960077,
0.2452038212,
-0.198509118,
2.5210190606,
0.6335571281,
0.1846211951,
1.9133826364,
-0.7143538519,
-1.4839696779,
-1.8133695054,
1.7566430457,
-4.6820960606,
-3.1456471335,
-0.1719507389],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013917685],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5132501523,
0.4465396527,
1.4221953079,
-1.4179375968,
-0.5274335065,
-0.5948764514,
0.2204210224,
0.1187849185,
1.3315885635,
-1.1960324608,
-0.6466905732,
0.2403520604,
-0.5228897516,
-0.3374796776,
0.7969244204,
-0.3429182627,
-0.4040283163,
0.36617511,
-0.0250372889,
0.1699501739,
-0.063061784,
0.2384105047,
-0.5874528922,
0.6317631195,
1.1771098252,
-1.551197124,
1.10693887,
0.6317344108,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005213022],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0651506331,
-0.2860430771,
1.1846690231,
-0.9600883705,
-1.0872528195,
-0.1824141794,
-0.2564776576,
-0.0226414226,
-2.3307901375,
0.9949929633,
0.0795787422,
-0.7852334582,
0.9429097674,
-0.4395868971,
1.3463885258,
-1.2114705482,
1.3168896262,
-0.4150409777,
0.4760682595,
0.0031979481,
-0.2186523326,
-0.226774165,
0.5694001841,
0.5821411851,
-1.4310421195,
-0.6858400499,
0.444949913,
0.5212203598,
0.7198808092],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013825297],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1979135358,
-0.7660453068,
0.9991776979,
-1.4592262476,
-1.0882017192,
2.0935043295,
-1.3507578413,
0.6276272661,
0.0921939931,
0.904857135,
-1.4341503083,
-0.3005859526,
0.6075252868,
-2.1047538363,
-1.5005188382,
-2.1693121562,
2.0320692563,
-1.1605158944,
-0.843978406,
-0.6596542967,
0.1603623606,
2.1593640289,
0.5909655082,
-0.5054270114,
-3.0365409381,
-0.0972293038,
0.9622131079,
0.8994393291,
0.6784174889],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.8938055e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0423869949,
0.3579785151,
-0.5046951801,
-0.4514123134,
1.2307148177,
1.0656355777,
0.3751691564,
0.4358746629,
0.0813423689,
-1.0364234625,
1.0782676708,
0.1188918287,
-1.1239180573,
-1.4850952986,
-0.6387605648,
-0.4592197466,
1.8372344701,
-0.4344433441,
-1.2771169127,
-0.3655213828,
0.1942517058,
0.8593425896,
-0.0986721976,
-1.3985328517,
-0.6352201154,
1.2979260353,
-0.2019902364,
-0.0270598892,
-0.0311071765],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017323494],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0506711806,
0.747275459,
-0.9241946207,
-0.6555439889,
1.7742766697,
0.1871059642,
1.2268269144,
-0.0521730134,
-0.7500652986,
-0.8460982977,
-0.2101291379,
-0.19388478,
0.0943373137,
-0.5377587884,
0.6605090755,
-0.9550370728,
1.3156104729,
-1.4231247467,
-1.5949660383,
-0.2803832536,
0.3892873236,
1.2883852634,
-0.2572357627,
-0.9862459129,
-1.2031139325,
1.2147114631,
0.1067951622,
0.6960247123,
-1.1289470305],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008547902],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0289187116,
0.1399817471,
-1.1677085632,
0.2992175346,
0.4485223066,
-0.6085497248,
0.245231736,
-0.211501447,
0.5500346064,
-0.5477237597,
-0.5629050511,
0.4339368323,
0.5291127663,
-1.0367523584,
0.3283449221,
0.1535645733,
0.5508781401,
-0.037670317,
0.1476275423,
-0.1691218745,
-0.4706460428,
-1.1764339051,
0.4601054299,
0.5713903259,
-0.067531025,
-1.2438974612,
-0.002140208,
-0.040878438,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015102625],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0997513619,
-0.8383426906,
-1.3290595247,
-1.1714380879,
0.2823775574,
-1.2703338656,
0.0405171524,
-0.0418418276,
-2.4850235683,
1.0618811774,
-1.433943146,
-1.5659197229,
-0.4623466911,
0.7502755665,
-0.6078919112,
-1.6500817177,
1.2852314692,
0.1034068173,
0.6996895954,
-0.0087506967,
0.5134027831,
1.2402755496,
0.1000807597,
1.1552913957,
0.1525416158,
0.5468807387,
-0.3468342704,
-0.7558924039,
0.838590162],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006158948],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5600772896,
-0.0980379019,
0.624613462,
0.3184354391,
-0.5959768466,
-0.0578518158,
-0.4588590164,
0.2162618736,
0.2171639256,
0.051566671,
1.605648683,
0.5490468845,
-0.911368386,
0.4935090524,
1.0444901451,
0.5201299271,
-0.419516383,
-0.0504754292,
-0.5399009255,
-0.1980164197,
-0.0057831479,
-0.1211438985,
0.2575391711,
0.3442962336,
-0.0452656786,
0.6633968154,
-0.0278093668,
0.050388066,
-0.1231026233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008177459],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6151195339,
1.446852664,
-0.2411044423,
0.4735369055,
0.1488031133,
-0.2219524671,
-2.615479376,
-6.7769450413,
-1.3956449422,
-2.2108182162,
0.4472530571,
1.4323734388,
0.6570531028,
-0.2910563041,
0.5208947035,
0.9401685268,
1.7143991438,
0.1043511553,
-1.3010757842,
2.5701239263,
-5.3617001909,
1.0834949875,
-0.9636382225,
1.0546505898,
1.3957906953,
0.7214668341,
-0.0270217855,
1.1052352258,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011470616],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6462223277,
-0.3342537505,
-0.34172157,
-1.2163298591,
1.033758365,
2.690282582,
-0.9858081148,
0.7344797399,
2.6371138741,
-1.2313017249,
0.7493047893,
-1.8610470827,
1.685597561,
1.4410382018,
0.7696875082,
-0.1746837391,
0.0958691958,
1.0768351936,
0.8958528046,
-0.0188728292,
-0.2886721006,
-0.3959932936,
-0.1115724656,
1.5937056753,
1.2238166564,
-1.4676676206,
0.1605953593,
0.0861767728,
-0.2402067958],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011638403],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6370200857,
-0.8105910483,
-0.9245872681,
0.510848159,
-0.2932579107,
-0.1691108018,
0.1154979007,
-0.1039499247,
0.7496299211,
-0.586358829,
-0.6030765935,
0.3011626601,
0.6705012434,
-1.2951716104,
0.7457987023,
1.0355106513,
0.2918801709,
0.2532477238,
-0.3110159594,
0.9297205386,
-0.1482303339,
-1.5403088098,
0.123509998,
0.6353177133,
-1.309311447,
0.1207603196,
-0.2305172703,
0.1912404354,
1.5129868379],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00066691637],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1810593715,
0.2716027016,
0.7956154447,
0.1120096402,
-0.1454775285,
-0.0502235149,
0.4254937211,
-0.1138582511,
0.2333407023,
-0.5178551281,
-0.80803887,
0.8683277061,
1.7541638882,
-0.5398598271,
0.577509168,
-0.6130728421,
-0.2608307809,
0.3078231937,
0.8932885957,
0.1384950429,
0.5185091446,
1.8872771283,
-0.252723106,
0.0086658643,
-0.9026729338,
-0.1666978085,
0.34500985,
0.7214824925,
0.7267496949],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041496754],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1754331903,
0.6226609375,
0.8120171464,
0.0646469646,
0.0917228288,
-0.3465695139,
0.3193070078,
0.1181801651,
0.8611527854,
-0.5719532928,
1.739688151,
-3.1258379281,
-0.425062189,
1.6517721045,
-0.320457816,
0.8302201845,
0.5635580925,
1.2077504257,
0.1633291987,
-0.0396658559,
-0.5603645995,
-1.4090091202,
-0.0154060812,
-0.2920056258,
-0.4504693434,
0.0893243421,
0.4777386536,
0.2442630112,
-0.3800351059],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013764501],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7163931925,
-0.580445101,
-0.3727522736,
-1.2981737761,
0.7598307267,
2.7245048038,
-1.2904809044,
0.7792004951,
-0.5048465672,
0.5957964434,
-0.0617099158,
-0.7577284574,
0.3599531529,
-0.3242880419,
1.4083403432,
2.0107586326,
-0.5049690323,
-0.4785359112,
0.7380863698,
0.2965139911,
0.45510369,
1.0382543504,
-0.2324925397,
1.7471481505,
1.1329677837,
-0.071212852,
0.0926016551,
0.0718620945,
-0.1589251769],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047448277],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.5344303141,
1.8314029199,
-1.3770344256,
-0.7064345086,
0.3168986838,
5.9994184319,
-7.4237956775,
-14.1016769093,
-0.9920093338,
-3.6784984275,
-0.755977649,
1.9633418786,
-1.6060214275,
2.9214794401,
0.8102392066,
1.5508365748,
0.3329199881,
0.5961891248,
-1.7712402701,
5.8049152935,
-12.055762327,
4.0980232117,
2.1796859291,
0.9506343934,
-0.0270777257,
-0.7445238641,
-0.0183310092,
1.5878187913,
0.0832055326],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [1.8686056e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5652518557,
0.0609554591,
0.151209305,
0.7283597893,
-0.0152549271,
0.089734988,
-0.0525385268,
0.1282124345,
-0.1361542472,
0.1867612798,
1.0522663086,
0.3896416806,
-0.8276381084,
0.7234187692,
0.6548833159,
0.207159429,
-0.5822693948,
0.2434909925,
-0.5264544549,
-0.1985116833,
0.1839056976,
0.4539081068,
-0.2400971334,
-0.5332874213,
1.1112796902,
-0.5126520332,
0.0442873814,
0.03487627,
0.2209000796],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00090131164],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3424519166,
0.21240609,
0.7035242694,
0.1338626066,
0.573795822,
0.4118093481,
1.3231026205,
-0.1826001648,
-0.2377577389,
-0.6346284835,
-1.2238378263,
0.4765557041,
1.0886642103,
-0.5448079731,
-0.9134127815,
-0.4902345171,
-0.5596580418,
-0.8277658112,
-0.8310917738,
0.4175861134,
0.0277591998,
0.2078012565,
0.1080606934,
-1.2784563656,
0.3252651134,
-1.0505394411,
-0.1664732941,
-0.2345984292,
1.071916102],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004555285],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2376864086,
0.1776527577,
0.8953233615,
-0.6392121363,
-0.3638105615,
-0.6876042099,
0.7156639972,
-0.065808383,
-0.0567757477,
-0.714985783,
-0.5980944857,
-0.4079945829,
-0.6525561643,
0.1698351493,
0.6128508724,
0.7872038696,
-0.7513423955,
-0.3274658428,
-0.7786503457,
0.0929184912,
-0.0647017487,
-0.6231602835,
0.703308791,
0.6235827545,
-1.8810459745,
0.9778162589,
0.0970540801,
0.5758384785,
0.8647558183],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014528632],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0937077126,
0.6353040803,
0.6475039276,
0.2399056602,
0.5948507545,
0.1620009538,
0.5255205912,
0.0148794772,
0.5179362445,
-0.5310648478,
0.9664275822,
-2.5369618659,
1.2548863807,
1.9705017153,
-0.6643146421,
0.5408450682,
-0.3707533033,
1.4630089107,
0.3682780422,
-0.1256554175,
-0.1070532166,
-0.0627227345,
-0.6233428406,
-1.5271795915,
0.6584218329,
-0.7243752943,
-0.0007764899,
0.0007149781,
-0.2155995952],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015679598],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4962513236,
-0.0129289595,
0.4538779722,
0.8365503142,
0.1080763523,
1.008829247,
-0.2737664738,
0.4108653726,
0.3659281393,
-0.3140722907,
0.5509315488,
1.0358147473,
-0.0962320174,
0.075231732,
0.9583441567,
-1.861824561,
1.420397569,
-3.0716778331,
-2.0229787438,
-0.3790804492,
-0.1556183336,
-0.0047062401,
0.3434872964,
-1.0800491995,
0.3251673414,
-0.8640485953,
0.2643386785,
0.0618191397,
-0.3425198227],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014259815],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6332153648,
0.3322139927,
0.7904723015,
1.0089908624,
0.2834876281,
-0.0746599481,
0.4199682954,
-0.0112592694,
0.009703579,
0.2593378881,
-0.6060704837,
-0.0308613331,
-0.4648723693,
-0.0429858258,
0.3615458506,
-1.3414634685,
0.689805874,
-0.770630988,
0.984609229,
-0.2313716488,
-0.1172660663,
0.3620541848,
0.2644722931,
0.1486038016,
-0.0775267211,
-0.4971486583,
0.2095900358,
0.8896675473,
0.2200662403],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005337],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.039035863,
-0.7788331073,
1.8615132587,
-1.6810203972,
-1.6294335581,
0.8134440795,
-1.6754796259,
-0.2710645758,
-0.5305061095,
0.29360852,
-0.0753010316,
0.6562023671,
0.8776377997,
-1.863612438,
-3.5361645176,
-0.4427322651,
0.6132755799,
0.646275526,
-0.5275894928,
-0.6357166727,
0.9064161875,
0.280293468,
-0.8230696195,
0.2124330231,
2.9748721511,
0.3156180592,
0.375530546,
0.4396236979,
-0.0906170678],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044471025],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3129685177,
0.6102944161,
0.2208630594,
-0.4823671364,
0.7563230604,
-0.4052432632,
0.6607815623,
0.0618542784,
-0.4212024152,
-0.649267948,
1.1271421528,
0.2421187716,
-0.6317540941,
-0.7739429662,
-0.7228238455,
0.5271657013,
0.342140612,
0.3576348403,
0.2517111787,
0.0486089865,
-0.5329973447,
-1.5648072026,
-0.4069395465,
1.0897813989,
1.247665253,
0.6054120702,
-0.0937150341,
-0.2027410656,
-0.4080847151],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00078490376],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3044142774,
0.7789925225,
0.8916766228,
0.1155880099,
0.1992651914,
-0.2393577151,
0.4841831012,
0.0418593385,
-0.7468406319,
-0.1121658606,
1.2883774686,
0.5945630836,
0.4737014796,
-0.2852143071,
0.6244258821,
0.392141335,
-0.1325271734,
0.6254765618,
1.2954475622,
0.3251390578,
-0.2781383941,
-0.777196402,
-0.2243990049,
-0.052356072,
-0.3502474816,
0.3713972061,
0.4406238298,
0.5335245308,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001003474],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1507574666,
0.8476337531,
0.1615033153,
1.4097082513,
0.1911649224,
0.8082101712,
0.0263869153,
0.4776006865,
-0.5534558045,
1.0444354198,
-1.7871152942,
-0.582749975,
0.5833878926,
0.0899581656,
1.3224715877,
0.8262345795,
-0.6559656172,
0.3422379318,
-0.1855776094,
-0.7526932373,
0.1804720025,
0.9662877491,
0.3382626452,
-2.1878527963,
-0.3575047737,
0.3366276977,
-2.106406962,
0.1917150717,
0.5057233428],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0001847744],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9447128899,
-0.9088783236,
-0.0800489081,
-0.6223434154,
-1.0437992999,
-0.0162711404,
-1.0117898561,
0.0658626074,
0.0129490112,
0.7023952466,
0.7408085057,
0.6010620463,
1.1571826538,
-0.6694520454,
-0.3539976835,
1.95221884,
-0.4648250744,
-0.592824765,
0.9135915007,
0.380333507,
0.4657037958,
1.0812685547,
0.2032341191,
-0.5082495926,
-0.8589203909,
-0.5604301073,
0.0373781564,
-0.0726606804,
0.9406751414],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021365285],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4036166503,
0.8250024845,
0.6346569451,
0.8800987966,
0.8007699998,
-0.3245774462,
0.9037753047,
-0.0713088715,
-1.4101083234,
0.4772436079,
0.5098403088,
-0.1412477194,
-0.8017994838,
0.6377231697,
-1.1722719461,
0.8623846782,
-1.2301585434,
0.3214832424,
-1.2374486398,
-0.4027411256,
0.1895329862,
0.2488040832,
-0.5539030881,
-0.0524126354,
0.0007664164,
-0.3204638329,
-0.4328456127,
0.3417229982,
-0.5510061188],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00088074803],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0963399525,
0.5814730375,
-0.4862016918,
-0.6312694228,
1.0266491178,
0.0219987853,
0.6821235331,
0.105504539,
-0.1757701678,
-0.5690277031,
0.1116293657,
0.0255002934,
-0.3550967509,
-0.7981296561,
-0.9140623507,
0.9112712432,
-0.2203224242,
0.7719052626,
0.5147532441,
0.0383780994,
-0.4946490917,
-1.3093849122,
-0.0417452945,
-0.701227656,
-0.6456053308,
0.3178556298,
0.518525149,
0.2105571135,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00108248],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9660632256,
-0.0994670053,
-0.1648720618,
1.12996555,
-0.3214209622,
-0.214050378,
-0.2071487123,
0.0091927982,
1.077241894,
-0.0003262721,
-1.2542716848,
0.6002593086,
-0.4855206723,
-0.2058654899,
-1.2615277309,
-0.5372464047,
0.0308096078,
-1.0974909136,
0.1764324601,
-0.4245976522,
-0.7239012954,
-1.6932003555,
0.7895306273,
-0.1860871798,
-0.6449587653,
-2.2724013445,
0.1330906698,
-0.090184785,
-0.6760854342],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00053855777],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-9.7167931532,
9.1749815168,
-14.4507610655,
8.6538247823,
-11.0399514619,
0.6602411004,
-22.825524836,
-9.91939572,
-8.0643244934,
-16.7379272666,
4.852197246,
-12.5633431259,
-1.0762653002,
-7.5245908787,
-3.2938414646,
-9.6210202785,
-15.6501046672,
-7.0897413013,
1.7687133343,
5.04490625,
-11.3656249932,
4.5987033857,
4.4777047425,
0.3170269858,
-2.27319765,
0.0794467478,
-10.0520585128,
-2.0241080271,
-1.0611984956],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [1.0],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.026135422,
0.4854457928,
0.0774222077,
-0.5856312089,
0.5034566411,
-0.3922302674,
0.7373207563,
-0.0105491823,
-0.2336673953,
-0.2025600905,
0.3168694804,
0.5522614861,
-0.1905818262,
0.3338914366,
-1.1588466644,
0.2748608065,
-0.9271389198,
-0.0677678688,
0.4793263529,
-0.02763812,
-0.3349314501,
-0.8001027603,
0.017576789,
-0.8551527135,
-0.8739431084,
0.3117807323,
0.5816260926,
0.2687124499,
-0.7236631158],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000688076],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5035387765,
0.4313342382,
1.0779041297,
0.2962133735,
0.1902087044,
-0.2429722227,
0.8276932732,
-0.0055081351,
-0.2203509547,
-0.6506243607,
-0.4757258851,
0.2452065007,
-0.4356618799,
-0.064511208,
-0.8015065164,
-0.7304021888,
0.1443874934,
-1.1274464296,
-1.2575344553,
-0.3334807359,
0.0063372226,
0.2145713713,
-0.0387094981,
0.6657203415,
0.5518300654,
-1.0127882339,
0.0066395972,
0.2951201235,
0.5060995045],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026342273],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.920542116,
-1.4181020978,
-0.0080210559,
-1.1478736024,
-1.2973151836,
0.8600697332,
-1.6830167377,
0.3876726155,
-0.5291381066,
1.226722203,
-0.4046508765,
-0.9555773481,
0.1277231499,
-0.5982374624,
2.1328302154,
-0.5431249118,
0.9673470165,
-0.6180074727,
-2.3564392883,
-0.342633794,
0.3489494587,
1.3507524911,
0.451739863,
-1.9308895758,
-1.6351296041,
-0.0528987793,
0.2285534296,
-0.0383832614,
1.0280698552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [3.8206577e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9964421623,
-0.2507927505,
-0.2645503367,
0.2831914999,
-0.193831697,
0.3329960943,
-0.7395370252,
0.1402111335,
2.3340871794,
-0.3006524883,
1.1011532658,
-1.8555432895,
1.1522436088,
1.5446600738,
-0.9093880663,
0.457776039,
-0.1869634217,
1.5343878796,
0.0126693722,
-0.3458749883,
0.1416667379,
0.9966966174,
0.1426588463,
0.3845087625,
-0.0680619427,
-0.4454363494,
0.0020921828,
-0.1605029202,
-1.0253842473],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00092691183],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0223160152,
-0.1422795065,
-0.6959725666,
0.1942460956,
0.0420936209,
-0.3017799745,
-0.1515750567,
-0.1473745206,
1.9936354144,
-0.3398706348,
1.1090275318,
-1.5423612426,
1.3140816734,
1.7358983829,
-2.0076426083,
-0.3866523774,
0.3168219909,
0.6182415731,
0.6711688242,
-0.3681837919,
-0.0756770498,
0.5196111928,
-0.0252837242,
-0.8415124408,
0.3976321067,
0.3443504764,
-0.1472826933,
-0.2563978175,
-0.8770449011],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014551878],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9557900479,
-0.4114724903,
-0.309014815,
0.2164341183,
-0.5442304685,
-0.1411145779,
-0.5810261761,
0.1459159991,
1.4008215618,
-0.03993682,
0.1403375211,
0.1989880988,
-1.6672228869,
0.395187453,
0.0211410566,
0.3006463699,
-0.8395303755,
1.3252787941,
0.281540335,
-0.3597526348,
0.3666373511,
1.2049835918,
0.0366659956,
-0.6141274971,
-0.0214644258,
-0.996498685,
0.099853763,
-0.139339971,
0.282719461],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00071805716],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6144058316,
-0.3667142186,
0.8089999517,
-2.4011064322,
0.0883492998,
-1.3028200057,
0.7712113663,
-0.1217789033,
1.2499073238,
-2.3564767291,
0.2416801313,
1.4443114784,
0.3392472127,
-0.0317976052,
0.148390286,
-1.3513834877,
-0.0044872986,
-1.0917873499,
-0.9803189716,
0.1686149272,
0.135898635,
0.1525083692,
0.4252373691,
0.997143873,
0.391322285,
-2.5901676088,
0.2184858857,
0.4685509511,
0.9048362055],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00015214086],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3771318608,
-0.6064359867,
0.9555134438,
1.1998815519,
-0.8533265931,
1.1849387865,
-0.8439920276,
0.5194017329,
1.3508802949,
-0.2744900892,
0.0893261361,
1.1754771673,
-0.7192227153,
-0.7620586821,
-2.1500570804,
-0.5427925566,
0.2938452495,
0.0459199196,
0.2319917008,
0.1208286785,
0.0999852084,
0.4854444541,
-0.4102693955,
-0.4438191953,
0.8246815021,
-0.4263832433,
0.2142172729,
0.1569324829,
1.046900173],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005412996],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1431705871,
-0.4011895345,
-1.1921073387,
-0.8481527586,
0.0794681665,
-0.5395413829,
-0.1534734946,
-0.250327657,
-0.5567584638,
0.7731695666,
-1.2180968454,
-1.0116149153,
-0.0670444294,
0.1839661262,
0.3996821536,
1.2400147826,
-0.0770412139,
-1.7004930124,
1.1964427114,
-0.0032937565,
-0.010794346,
-0.1958494358,
0.286651335,
0.0234832573,
0.0832357621,
-0.626371393,
-0.1438144518,
-0.18803651,
-0.0683897506],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009803176],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5369113857,
0.1615138122,
0.2770413867,
0.7565043521,
-0.1891480479,
-0.5812061327,
0.3043244725,
-0.1219151237,
-0.474000949,
0.0864157345,
1.7182244751,
1.4766456854,
0.6424163058,
0.5489060936,
0.0711258027,
0.2404117977,
-0.6922906068,
-0.3974038813,
0.120498463,
0.0406080922,
-0.5012562836,
-1.7240939568,
0.3127564596,
0.7840016613,
0.3965195672,
-1.8393565975,
0.0012847469,
0.1148560233,
0.6074019319],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006777942],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2969605767,
0.2843268264,
0.0175353313,
-0.7417365782,
0.9904608978,
-0.5126594705,
1.1532594519,
-0.133707314,
-0.4314839105,
-0.8586658024,
0.6837389594,
0.9931490569,
0.0198784982,
0.5626598728,
-1.4329293974,
-0.9135525786,
-0.4694915266,
0.1345723175,
0.676290103,
0.1138477504,
0.2695899836,
0.6700130469,
-0.3238554501,
1.313188094,
0.8358676275,
-1.1387257056,
0.1929692512,
0.4527704084,
0.580613281],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00057959557],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.982203379,
-0.3794518059,
0.2671035557,
0.2665035777,
-0.9648511684,
-0.2512327548,
-0.9109510589,
0.0784359912,
1.3778361688,
-0.020886603,
-0.8497872825,
0.4298641458,
0.4836836559,
-0.5295109492,
0.9780854642,
0.888469535,
-0.822528895,
0.3762168722,
-0.5986566524,
-0.2124637406,
0.2869689099,
1.1103184829,
0.4441860507,
0.1620627931,
-1.066216994,
1.286514685,
0.0093559826,
-0.098550765,
-0.5876216751],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003915429],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7336517908,
-0.5368067786,
0.1549629716,
-1.0162405836,
-0.9602256911,
-0.7823732953,
-0.5013506858,
-0.1817806768,
-2.1968674297,
1.4238481056,
1.51216725,
0.0349048221,
0.4677341533,
0.0971313135,
-0.4178048015,
-0.5009280392,
0.497745014,
-0.1762044794,
0.301661674,
-0.3960192167,
-0.6807004501,
-1.6070774227,
0.3768620254,
0.7917049705,
0.3542203777,
-1.1565836427,
0.0072138029,
0.0523671953,
0.1183982024],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006445646],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0574466653,
0.6204658232,
-0.2587710203,
-0.396698479,
0.7544836323,
-0.5422802925,
0.8386387174,
-0.0925881797,
-0.1413428069,
-0.7606519697,
-0.5404659486,
0.2019121529,
0.6138045894,
-1.1450750582,
-0.2874062927,
0.2800301423,
0.4302144786,
-0.4100166298,
-0.3673889788,
0.1153519066,
-0.4450270009,
-1.0899991474,
0.2266032137,
0.8515319748,
-0.7651058389,
0.2417184664,
0.5405356466,
0.2821082802,
-0.1382877346],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006419718],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6436247369,
-0.0946641031,
0.0420295027,
-0.2385967782,
-0.2440920907,
-0.3348694207,
-0.1467194152,
0.0149980762,
0.1604219708,
0.010917545,
0.6800886842,
0.1053640162,
-0.919707924,
0.6233246036,
0.6522940009,
0.7819026105,
-0.8395957951,
0.4377219246,
0.7740356595,
-0.1007018127,
-0.1503918125,
-0.5824226094,
-0.0753455964,
-0.5325560606,
0.5087863387,
2.0385186683,
-0.2432609397,
-0.0325777697,
-0.1132303853],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044178963],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.032032039,
0.0206313488,
-0.6480379781,
0.28384616,
-0.0258524104,
-0.8977416917,
0.2292673206,
-0.3316681825,
0.3034958034,
0.0403427136,
-0.4983150309,
1.0740384667,
1.290113087,
0.0411910197,
-0.113581302,
-0.1918982833,
-0.398111526,
-1.1924865104,
0.1666751936,
-0.1928313231,
-0.3809875246,
-0.8478782865,
0.5760011218,
0.1238961936,
-0.4845980388,
0.395126291,
-0.1575620591,
-0.1706847306,
-1.344792593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010628402],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9426125605,
0.2402411592,
1.4722955861,
-0.774983305,
-0.7273441541,
0.1452658664,
-0.7267401836,
0.0817132995,
0.1042428756,
-0.7596618169,
1.0859582061,
0.0006000206,
-1.5948938856,
0.4578334097,
0.7603409271,
1.2860445244,
-0.5311071497,
0.7031634187,
-1.4319749776,
-0.7995607248,
1.4989059454,
0.7270484555,
0.2081786135,
0.3908751419,
0.0143122032,
2.1144821482,
-0.3593969404,
-0.2021521321,
0.170071074],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000348866],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8519274211,
0.6468086996,
1.089338227,
1.1405198743,
-0.1205778864,
1.2224384548,
-1.9374668356,
-4.2254197709,
0.3279579721,
-1.0791616686,
-1.2612669349,
1.0883031572,
-0.6929638838,
-0.2205910848,
-1.8795936046,
-1.43341102,
1.3382199585,
-1.2420305498,
0.8489434014,
1.4351515707,
-3.981166309,
0.6396466779,
0.5367653245,
0.0962719572,
-1.3408822558,
-1.2082797381,
-0.1795330583,
0.2375443687,
-1.1264508552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011011958],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0346645719,
0.0006392458,
-0.69361122,
-2.2736989686,
0.1614768844,
-0.0126528199,
0.6425612459,
-1.5849874278,
0.8997581762,
-1.4807647904,
0.6307857768,
1.9157278053,
0.7577965691,
0.35575045,
-1.4109793601,
-0.194667225,
-1.013999516,
-0.3508069745,
-0.2406935137,
-0.7017639577,
1.8824837715,
-1.3241785341,
-1.0099277707,
0.4613052512,
0.8895118019,
-1.3283274583,
0.8899546381,
0.7844704709,
1.2743346777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000248909],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7780535659,
-0.4828804574,
0.7611556757,
-0.3692048211,
0.5234653031,
2.2090285113,
1.6718963892,
-0.2201587351,
0.4893443259,
-0.3106764963,
0.9901364697,
0.3064420932,
-0.4310639173,
-0.5553259944,
0.7572499766,
-1.3415455369,
-0.0320404396,
-1.0252687832,
0.9413388871,
-0.2510229668,
-0.81422076,
-0.800735553,
0.6261996695,
-1.675094046,
0.5469011064,
-1.6421009667,
-0.8908563119,
-1.976726278,
1.4309946027],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006057024],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0578254115,
0.0589336305,
0.9709609457,
-1.2136621729,
0.2483815279,
0.095774229,
0.6357848115,
-0.5418821283,
1.2501783704,
-0.225435023,
-1.0101970895,
-0.3450161651,
0.0520141669,
-1.0536964196,
0.7516346695,
-0.4127534058,
-0.7856353715,
0.3837153816,
0.9200111805,
0.2361981619,
0.204653669,
1.4590258761,
-0.5913823069,
0.9521245444,
-0.9866300957,
1.4417283579,
-1.5168432309,
-1.5499910629,
0.1301309771],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005120635],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1106121116,
0.2358025842,
0.0803513819,
-1.3302734696,
1.6035502437,
2.6069788682,
-0.0558894359,
0.7620109268,
-0.320435023,
-0.5371535297,
-0.1436621855,
-0.268530025,
0.023635944,
0.1768400447,
1.3336164817,
0.6969115964,
-0.9542737146,
0.2581434797,
0.6980779878,
0.1962593649,
-0.1387653938,
-0.6985290793,
-0.12259554,
1.7436068253,
-0.3464735881,
1.8121955217,
-0.0541921876,
0.149394176,
-0.1106304939],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003081262],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0315066381,
-0.0447922418,
-0.6671143364,
0.2938967225,
-0.1215631806,
-0.9241466504,
0.1492385093,
-0.2632286173,
0.5002399979,
0.0779654195,
-0.7384920767,
0.3122853349,
-0.1655531868,
0.3349130368,
0.0606179209,
-0.1158721679,
-0.3043709816,
-0.9822091048,
0.1788259869,
-0.3147535189,
-0.4039611736,
-1.0127005584,
0.606008117,
0.0575845689,
-0.5780815136,
0.4051343794,
-0.1805893839,
-0.1804790925,
-1.344792593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001352787],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5593830546,
-0.2047627863,
0.11501405,
-0.0365253233,
-0.4278270519,
-0.5428184154,
-0.0067353979,
-0.036691016,
0.349564691,
-0.20387664,
-0.2007037844,
-0.4229125642,
-1.3603435111,
0.6188103859,
1.5974639951,
-0.0113058687,
0.1153283163,
-1.0752207365,
-0.2577475147,
-0.0511146729,
-0.241150958,
-0.9997068799,
0.1678256526,
0.1477760742,
0.0509115009,
1.8023206059,
-0.2352059228,
0.0448279795,
0.7049700902],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047281384],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3748132906,
1.0172347054,
-0.8246426053,
-0.3825784034,
0.1584604389,
-0.6689853567,
0.2200614008,
0.6542186804,
-0.1192540474,
-0.8486517625,
-1.0984921946,
-0.0845091401,
-0.327163047,
-0.3672288595,
-0.2710042467,
0.6829566278,
0.7744225815,
-0.0531251403,
-0.2802853811,
-0.1320740607,
-0.4187108231,
-1.3257909113,
0.3633015855,
0.7537879581,
-0.6102453527,
0.2690036448,
0.206509187,
0.0231432157,
-0.0322136909],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030753016],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4371964331,
0.7110747756,
0.4166085683,
0.8788481724,
-0.3634808395,
0.4250224142,
0.5010722425,
0.454285178,
-0.1616157045,
-0.2187273418,
-1.4057918075,
-0.6988147217,
-1.5322028519,
0.5819200289,
0.4346781943,
-0.9597435401,
0.776574316,
-0.3210135575,
1.1295204006,
-0.0882748395,
-0.0514357925,
0.0478994962,
-0.0975141232,
-0.7708537536,
-0.0822641912,
-0.4027713761,
0.4938715635,
0.3346816402,
0.8958887639],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039702654],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9596824288,
1.3361752115,
0.1021231761,
1.6359911981,
0.1017250155,
-0.1738764281,
1.6160561665,
-0.7630269438,
0.6172578027,
4.3698453053,
1.6974029115,
-0.4322987527,
-0.9815488033,
-0.6211888325,
0.4781239197,
-0.7545075784,
-0.6842933849,
0.1811526943,
0.9415792255,
1.6435284567,
-0.5795853113,
0.8352304922,
0.2119436269,
0.8306110451,
-1.2886879777,
0.0173660534,
1.7769742345,
1.0490522631,
0.8147321685],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00052061677],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3733027281,
0.0288948597,
1.2293842814,
1.0765073052,
-0.0996745136,
0.6689535413,
0.1932584606,
0.3261290954,
-0.1254536952,
-0.2870792668,
0.7382338957,
0.9722134037,
-0.2553307918,
-0.1901205892,
-1.2020866259,
-1.2380289921,
0.629134302,
-0.0290142788,
1.4114092575,
0.4042814717,
0.2321356444,
0.7695314749,
0.2245530218,
0.0710367701,
-0.326722521,
-0.4279960312,
0.4053285169,
0.492129691,
0.8876963395],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008906126],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1156714477,
-0.0981733876,
-0.2353149291,
-0.6715548462,
-0.9621354044,
-0.4799573619,
1.1048755905,
-0.4064569014,
-1.133945837,
0.7362133589,
1.1036442776,
-0.956877082,
-1.8946065203,
0.3745039883,
-1.0114515147,
0.122607372,
0.9896893318,
-1.3290620887,
2.3675563383,
-0.3716417254,
0.2905998016,
1.0461235656,
-0.208738396,
0.9615079312,
0.5085288883,
0.1403671489,
-0.8158790546,
-0.3154018354,
1.2544314139],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011567175],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2675692067,
0.2468927994,
0.8025902049,
-0.6869180906,
0.364875574,
0.3736079598,
0.4140322822,
0.1350600785,
0.0282900273,
-0.80314253,
-0.1826866932,
0.8096155005,
1.0379222385,
-0.2501241981,
-0.5014320104,
0.6143349068,
-1.4779278893,
1.4348115438,
0.2927327599,
0.1447942495,
0.5071112885,
1.5251875102,
-0.7102424781,
-1.6511723824,
0.5847587265,
-0.1922115697,
0.302494772,
0.3910800538,
0.5244638463],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004016757],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6013347501,
-0.4119143826,
0.2953851596,
-1.0147590043,
-0.6388510539,
-0.2787245039,
-0.3780257852,
-0.0925348914,
1.5499290675,
-1.089604362,
-0.8367803024,
1.3028859998,
1.8529809426,
-0.5959501259,
1.3315438291,
-0.2818724476,
-0.5324153522,
0.3524229142,
1.1897369917,
0.2572112619,
0.1650434474,
0.7332468862,
-0.4925392932,
-0.5659365051,
1.2045816391,
0.3168777873,
0.0964030142,
0.106906719,
0.6794142793],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00025358796],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.42192613,
-0.3388357512,
0.6465940103,
-1.657208959,
-0.6507217661,
0.240780128,
-0.7026065249,
0.5003989856,
-1.375706029,
0.4080664007,
-2.6934789524,
-1.021215662,
0.5509248048,
-0.9842151035,
-2.1304076927,
-0.5156467344,
0.6208506059,
0.3325703215,
0.265152677,
-0.2271606283,
-0.3498634464,
-0.3300349128,
-0.3890847362,
-1.6898288627,
0.6095297075,
-0.3387980511,
0.6277939356,
0.2252857098,
0.3943359295],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014010072],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.617228058,
0.0575982917,
0.0851357937,
-0.4268036745,
1.4926288738,
-1.641367142,
0.8720464714,
-0.4475318763,
-0.856302252,
-0.4168169018,
-0.5962875376,
0.1040152877,
0.4569442253,
0.4971881546,
-0.0455227976,
-0.4730562354,
-0.3707509841,
-0.7899677514,
-0.0627364624,
-0.3205271657,
0.0897169318,
0.3475211844,
-1.2933493441,
0.2853556396,
2.2656114024,
1.8976586047,
-0.386445074,
-0.5162129099,
0.2340551437],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010996461],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.555474449,
-0.5578197085,
0.0466473447,
-0.3012409126,
-0.7880451581,
-0.6045288815,
-0.1101832899,
-0.1589646106,
-0.9986591361,
0.6542650926,
1.1328303166,
0.7365644409,
0.0963052101,
0.2617538042,
-0.8298057807,
-1.8501482093,
0.1612054008,
1.2562712987,
-0.3634933204,
-0.3045468,
-0.4241502813,
-0.8527585815,
-0.1711128751,
0.9998221268,
0.6401826212,
2.1626965059,
-0.2394091959,
0.0488193814,
0.9713815995],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005270839],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0498860991,
-0.7179652142,
-0.1953608795,
-0.6164117664,
-1.07418173,
-0.5018439172,
-0.9747695573,
0.1202799354,
0.1551054721,
0.8494667471,
0.644368678,
-0.9652238342,
-2.3545537042,
0.2586463152,
-0.254089266,
1.7180475098,
0.0588557481,
-0.8714875689,
1.1057635461,
-0.2329108799,
-0.0181867488,
-0.2683909073,
0.7241840383,
-0.0381815118,
-1.1869779869,
-1.037025629,
-0.023803161,
-0.1598097022,
-0.1451881364],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013700426],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3744884936,
-0.0491062514,
1.2633525223,
0.3798905568,
0.4174639039,
0.7902453823,
0.4467415602,
0.1360931095,
0.7841170409,
-0.7817453037,
-1.9090013567,
0.5782225006,
0.2033956931,
-1.2175092686,
-2.6021179987,
-0.9495967205,
0.0720896098,
-1.195965909,
-0.1332081348,
0.1604912681,
-0.4515791962,
-0.7756935649,
0.1590432202,
-1.320360264,
-0.3522168072,
-1.4720620861,
0.0197944479,
-0.1806851092,
0.7461094749],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00019836426],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8748004699,
1.0357190269,
-0.4614174399,
1.8777960065,
1.2370761823,
0.7331235593,
0.3139367984,
-1.3363275631,
-1.4456414059,
1.7332872325,
-0.7335691368,
0.0202715961,
0.8324730472,
0.3026335958,
-1.330085735,
1.4850961227,
-1.7691161979,
1.0170188711,
-0.6725416411,
-1.5515385225,
2.4132287667,
0.9163327449,
0.8598960185,
-2.3347553622,
-1.2983892356,
0.0777699495,
-0.8622586739,
-0.6315527343,
-0.006050044],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022867322],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0702775806,
0.547333399,
0.5085227586,
-0.3726343839,
0.410134392,
-0.5208975983,
0.6062038596,
-0.0228507315,
-0.5549202685,
-0.5363202959,
1.0803892008,
0.923641355,
0.7121544483,
-0.344553388,
-0.5492278057,
1.0088613445,
-0.8501173534,
0.413584861,
-0.5662035003,
-0.1378355556,
-0.0828006336,
-0.3146072439,
0.291950725,
-0.0763850779,
-2.376235218,
-0.5405105337,
0.4622297913,
0.7502305582,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008878112],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7997885258,
-1.4578880137,
-0.6498637257,
-1.6420238659,
-1.0902010599,
-0.0309879667,
-0.7628398597,
0.0213185229,
0.9119109755,
-0.044850265,
-0.0203248095,
0.5264269145,
0.3156769029,
0.0995119281,
1.4367196759,
-0.9568178229,
-1.1051997868,
3.2150619104,
0.2327492686,
0.0955716702,
-0.1287524891,
-0.5225499001,
-0.1047366101,
-1.888228683,
-0.9970617488,
-0.6788611235,
0.0103855985,
0.0241512566,
1.3940873064],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [5.4210424e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9776762624,
-0.3831179346,
0.0097254832,
0.0998780893,
-0.6384926022,
0.1580961539,
-0.8908420318,
0.2626312296,
1.0858840295,
0.1576922144,
0.699006979,
0.5863665087,
-0.6464500444,
0.0165420636,
0.1988936578,
1.0121713865,
-0.9623785209,
0.7713395837,
-0.0202585638,
-0.2659727019,
0.0928512384,
0.3446938081,
0.64036191,
1.2772934195,
-1.2090477711,
0.8857435199,
-0.0641881541,
-0.1273961255,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00096952915],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0529540765,
-0.0584655298,
-1.0339180013,
-0.0584865886,
0.570566072,
0.1426743916,
0.0528165577,
-0.0477344764,
0.1931313084,
0.1971936657,
0.1093565447,
1.0982395588,
0.9190122945,
0.2608761531,
-0.6865635747,
0.4403065813,
-1.1258998905,
-0.0703872973,
1.0551359128,
-0.1314873581,
-0.4236188466,
-1.1061308127,
0.393553362,
-0.5649377826,
-0.2616655835,
0.4308692822,
-0.190665587,
-0.2182751473,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00076168776],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.93822582,
3.4720274862,
-2.2075897746,
-2.1113099413,
0.4539581477,
-0.7785052361,
1.4677883806,
-0.2902175632,
4.5044999167,
7.6408473232,
1.1149977781,
-0.1171172177,
-1.2152356333,
-1.5320181287,
-0.1780237616,
-1.3633080109,
-1.4811750922,
-0.2174180329,
-0.5882525688,
4.5602448396,
-1.1207729486,
0.7057120656,
-0.1825672709,
0.2255810267,
1.5688797647,
-0.1897516489,
2.0611166314,
-2.1730971548,
-1.2831588519],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016856194],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5809547472,
0.044977852,
-0.2600905624,
0.4077775316,
0.8754402947,
1.4411991797,
-0.133767398,
0.4074850928,
0.1040063914,
-0.1353613068,
-0.7360919693,
-0.1610473657,
-0.3187462768,
0.5405161599,
2.3657431598,
-0.8875982263,
0.3404736085,
-1.8526311419,
-1.7316070816,
-0.344769983,
0.0684984796,
0.4338997502,
-0.231317086,
-3.9693159918,
1.044605769,
-0.2301340426,
0.1893684933,
-0.0194760291,
-0.5792491784],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003758371],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9851265533,
-0.2223384599,
-0.1228573661,
0.3709922237,
-0.5551318663,
-0.4480664217,
-0.4214354884,
-0.0934002145,
1.1776236256,
-0.1645783235,
-0.7881357304,
0.9619796924,
1.0373241397,
-0.3793915949,
0.3992887483,
0.0235751467,
-0.6153495537,
0.1141412305,
-0.3051244674,
-0.2054733687,
0.284635958,
1.2265918038,
0.1950441738,
0.1527845208,
-0.1222704933,
-0.4522508507,
0.1098837572,
-0.096110453,
-0.1944465718],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006545782],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4555051117,
-0.5622966741,
-0.2074995415,
-0.2933329946,
-0.7542408279,
2.1131993385,
0.5157392959,
0.7847324673,
-0.0230320889,
-0.8848111159,
0.8514997134,
0.4391649017,
0.0571367131,
0.7458687241,
2.8798073018,
-1.3456384281,
1.0552961624,
0.3824640354,
2.7878354193,
1.429018937,
0.9530281068,
1.849364753,
1.7868130846,
-1.5256658679,
-1.8067782546,
2.0298875545,
-0.0150248823,
0.4716645095,
1.5729451161],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043985248],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2640314021,
0.6378786952,
-0.315720322,
-0.7243802353,
1.127679182,
0.1510615336,
0.7275876418,
0.0345467249,
-0.1606232792,
-0.5417389788,
-0.0782165428,
-0.5383595033,
-1.2694101253,
-0.6342450856,
-0.7334693113,
0.7911269342,
-0.1082640158,
0.8580974898,
0.6887415896,
-0.2817151575,
-0.3321158201,
-1.2030113894,
-0.051138804,
-0.912460333,
-1.1064518081,
0.2296074424,
-0.7046886699,
0.5373631328,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00083726645],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0237733357,
-2.1587510617,
0.0779433788,
-0.5697077553,
-1.9279745602,
-0.2452195348,
-0.2950236508,
-0.1623693946,
-1.7801701805,
1.1166344614,
1.3626953953,
-0.0950012432,
0.6564529288,
-0.1296215664,
0.2205886041,
0.0832238706,
0.2488800535,
1.0588449632,
-0.5773935519,
1.5510622823,
0.6183983163,
-0.0029997676,
-1.0839704205,
0.9390388082,
0.0389985429,
-0.4363561968,
-0.2228938692,
0.4722535381,
1.822304105],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031846762],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2371280923,
1.2686205773,
0.0601261415,
-0.4349931345,
-0.838720782,
-0.7527987491,
-0.5658508086,
0.40298665,
0.1397527977,
-0.4283795816,
-1.2326510144,
0.1677945734,
-0.9098981334,
0.8905158737,
-0.3129721645,
0.4054731349,
0.3412479272,
-0.4350671491,
-0.3482653042,
-0.5243211432,
0.8357866966,
-1.0948557207,
0.6002698936,
0.5958279779,
-0.0522091208,
0.6502852332,
0.1928395904,
0.2863805973,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00032287836],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1388460726,
0.8461788392,
0.3278692502,
1.8992364905,
1.0704585761,
0.0987299649,
1.1962214169,
-0.1968868863,
-1.5154949654,
1.2155676796,
-0.1626259903,
-0.8562733348,
-1.8114267788,
0.4691573498,
-2.3945308777,
0.647738818,
-1.0964174393,
0.0881090175,
-1.2069676443,
-0.3759278229,
-0.0138672934,
-0.0869309231,
-0.6266057147,
-0.679713284,
0.8469376652,
0.0002360298,
-1.3043473194,
-0.8919366042,
-0.0990960068],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011650026],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1705821543,
0.0285360817,
0.6319238144,
-0.8825574277,
-0.0760851538,
0.1919843246,
-0.2566237296,
0.1344274319,
2.6302713651,
-1.4985436907,
-0.3115327596,
-2.192003619,
1.7153178592,
1.1422369027,
0.6054283665,
-0.543609062,
0.4999424109,
0.5828290517,
0.4107149835,
-0.202689821,
-0.1385527436,
0.2609993713,
0.0015736277,
-1.6660582453,
-0.6818905518,
-1.6003495601,
0.1406685823,
-0.2026453249,
-0.2402067958],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005042255],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5043910112,
0.737776483,
0.5356722366,
-0.663668735,
0.431274538,
-0.3314025437,
0.623156683,
0.3094433917,
-0.9828605022,
-0.8873484958,
0.394059632,
0.9331494218,
0.482036026,
0.578951591,
-1.115904271,
0.2921252171,
-0.6221837872,
-0.1161436408,
0.6946229116,
-0.1417327224,
-0.2876597069,
-1.087977861,
-0.568348866,
-0.6585787807,
1.0808948989,
0.66938518,
-0.41807295,
-0.1401324298,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00082078576],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0794165942,
0.2230551318,
1.0641241558,
-0.207374603,
0.0894091656,
0.8181280325,
-0.1873643536,
0.2578196569,
0.3190645693,
-0.5351906456,
-1.5911408463,
0.1155991283,
1.061538044,
-0.6794195232,
0.9325978336,
-0.2886937916,
0.0230914516,
-0.1894133067,
1.8850978037,
0.2232993756,
-0.0785260671,
0.1733644287,
-0.3172539151,
-2.0569612822,
-1.1677669568,
2.4095313104,
0.3369938716,
0.4282303597,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033512712],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0272241216,
-0.1609380997,
-0.3761680416,
0.211769915,
-0.1266665653,
-0.0840835697,
-0.4926230817,
-0.0351983395,
2.5002551293,
-0.5081662333,
-0.763729728,
-2.7372211526,
1.1029710638,
1.6534647616,
0.5838342796,
0.5280991396,
-0.2257551103,
0.7749329838,
-0.0299929411,
-0.3952654266,
-0.4676413382,
-0.8874580922,
0.4373176388,
-2.0273192334,
-0.5553404951,
-1.8422026266,
0.063169912,
-0.1323862892,
-0.481552559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005262494],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7493132836,
-0.6457157846,
0.513981955,
-0.9494250565,
-1.2999085972,
-0.5981500771,
-0.9457425297,
-0.1564235572,
-1.5676753867,
1.2519706844,
-0.3645950639,
-0.505986081,
1.3555673436,
-0.6430831171,
0.8027219348,
-0.2391670618,
0.3874408171,
0.2752467932,
-0.5590761164,
-0.3430229624,
-0.0481163498,
0.4666751843,
-0.0373404768,
0.6848636527,
0.7559838698,
-0.1786343466,
0.1273301139,
0.1008101383,
-0.0663095562],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000307858],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7051089416,
1.1311347447,
-0.6765492305,
-0.5263651758,
0.4128565068,
-0.0458490329,
0.6303625889,
-0.4623782971,
1.4360635101,
3.0032056769,
1.0567310501,
0.4463813439,
0.3654723087,
-0.4826030814,
1.327743832,
-1.399641109,
-0.1714991647,
0.1497924527,
4.2072009332,
1.6259437697,
-0.5873302231,
-0.2766656511,
0.6915871058,
0.366398562,
-2.8468890309,
1.4224190939,
0.9330692253,
1.1883283801,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00019049644],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3887320529,
0.9862606115,
1.1004800938,
2.0394274111,
-0.4941883654,
0.2940228511,
-0.0311456815,
0.4873016054,
-1.1706664637,
0.6329510679,
-0.1676523415,
-0.0064864369,
0.4917842036,
0.3416738317,
1.7552575431,
-0.1135364527,
0.4388197594,
-0.1208660466,
0.0629462265,
0.1486536848,
0.4106236906,
1.2374007711,
0.0959758894,
0.7080700601,
-1.1315005588,
0.5068036926,
0.5009909575,
0.5160048168,
0.3407305587],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003835857],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0895354,
0.2747897026,
-1.3269260565,
-0.8570235252,
1.7202952475,
2.7357712609,
0.1035467536,
1.1213714669,
-0.184163038,
-1.1375620508,
-0.1139713011,
-0.0702365047,
-0.2563047323,
-0.7031533614,
0.2303818854,
0.6402454482,
0.5172110289,
0.3074584193,
-0.9100684304,
0.0408105825,
0.1652842222,
0.0156371829,
0.7972435022,
0.9812566162,
-1.6894652651,
0.1416914306,
-0.0730427883,
0.2228011396,
0.919236478],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00028777122],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2317428607,
0.7117227162,
0.9355539985,
0.0365872177,
-0.1036763729,
-0.8960264138,
0.6784147757,
-0.1854960623,
0.0863209273,
0.0485556865,
-0.0118590214,
-0.7325255239,
-1.2572841144,
-0.434604334,
1.1483390049,
0.2652106771,
0.1038427471,
-0.1379017411,
-0.2887233881,
0.2857243383,
-0.4703740886,
-1.0320265614,
0.0235669923,
1.0312322807,
-0.4189898336,
0.066469415,
0.4351534614,
-0.1933733248,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006084442],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1946422684,
-0.3929222725,
1.1997778126,
-1.9801059991,
-0.3706063116,
-0.1221954404,
-0.2050713386,
-0.0749668361,
-1.9588292978,
0.8727246487,
0.2244200562,
-1.1064089794,
-0.4094370403,
-0.5424794657,
-0.9707444898,
-0.3183848276,
0.0423223291,
1.0033797121,
0.3394504173,
-0.2726075492,
-0.227603609,
0.00584501,
-0.7295244054,
-0.6290092122,
0.9245762743,
-0.1351960521,
-0.3017265474,
-0.5565535346,
-0.435936499],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038591027],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0282547573,
0.5240449236,
0.1936770233,
-0.4205456956,
0.2925186296,
-0.8550817277,
0.8320102625,
-0.1619764539,
-0.0396264614,
-0.3544786596,
-0.9028299106,
0.0661806422,
-0.119997174,
0.1490751663,
-0.4372915315,
-0.1073125252,
-0.4474321499,
-0.8517974765,
-0.1088484378,
-0.0536968552,
-0.3601733014,
-0.8248199929,
0.1450089132,
0.0501759212,
-0.934662403,
0.2852337793,
0.5926960968,
0.3172202596,
-0.6710689243],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00042918324],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9937453041,
-0.2648264319,
-0.2634517811,
-0.0355002872,
-0.3672221286,
-0.1271707783,
-0.4920833286,
0.0884564056,
0.9729034625,
-0.0309546315,
0.6062839143,
1.0605139686,
0.0388377893,
0.1382351185,
0.0556220252,
0.5165511308,
-0.9450938659,
0.3332395828,
0.4983527249,
-0.2710471968,
-0.230512036,
-0.4960225251,
0.5960544372,
-0.8354348034,
-0.9334064277,
-0.5632669348,
0.0168800611,
-0.1531285257,
-1.2375666612],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00071802735],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0005400723,
0.4579386309,
0.2665776245,
-0.5283767289,
0.3591611278,
-0.6502231343,
0.8041950538,
-0.0767986228,
-0.346815709,
-0.3817329267,
0.6393590515,
0.4571436176,
-0.7916305278,
0.5520385074,
-1.2873863447,
0.0805224223,
-0.697526796,
-0.1720402297,
0.2442413052,
-0.3022246352,
-0.1284143557,
-0.3608749211,
0.2239738844,
0.0914675137,
-2.2336088521,
0.0093411586,
0.3860081469,
0.6893691861,
-1.1844813719],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006108582],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0509370095,
-0.1913252007,
-1.0727888893,
-0.0377989609,
0.3784061759,
0.0901432792,
-0.1061483776,
0.0889263801,
0.5865128582,
0.2720225895,
-0.3709834611,
-0.4252255218,
-1.9921390842,
0.8485534411,
-0.3380256996,
0.5925080387,
-0.9383848517,
0.350412651,
1.0790362413,
-0.3726265202,
-0.4687209622,
-1.4365168499,
0.4520291596,
-0.6974742765,
-0.4493407054,
0.4506631069,
-0.2371848506,
-0.2373095599,
-0.926179732],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012479722],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5591312609,
0.3578490967,
1.3216527839,
-1.0101682916,
-0.2133608269,
-0.4426514019,
0.0192270441,
-0.5371627217,
0.4992092751,
-1.1365922572,
1.0234173064,
0.6987249687,
-1.1759545749,
0.2776038398,
-0.3820786239,
-0.1803781086,
-0.4265725154,
0.7091261068,
0.1107261572,
-0.4821221092,
1.1790452513,
-0.027570932,
-1.2587948284,
0.8882185105,
0.9114977897,
-1.3072787286,
0.3751400488,
0.2179665502,
0.4454979468],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00064858794],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.346762839,
0.2796843248,
-0.2718382613,
-0.4405017802,
0.1543558794,
0.5178134808,
0.8152558915,
0.5342062356,
-0.2319680343,
-0.8113405109,
-0.4447933614,
0.3253058972,
-0.2791584851,
0.6187815984,
0.4579700962,
-0.957222712,
0.7339519612,
-2.3911704044,
-1.5777878664,
0.1537320439,
-0.0464273526,
-0.3820321679,
1.1019996962,
-1.8031829092,
-1.197288629,
0.487988676,
0.2668480729,
0.1199840511,
1.1152403314],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022363663],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3245652002,
0.055756727,
-0.522306553,
0.1542895866,
1.5283886982,
-0.6181936868,
1.3424742729,
-0.2307393507,
-0.8310879734,
-0.391002359,
-1.5999000044,
-0.6874246862,
-0.4623261438,
0.8031847751,
-0.1112605062,
-0.2117476768,
-0.8585560848,
0.1326681897,
-0.4250392242,
0.3806544425,
0.3899642241,
0.4477736358,
-0.0818607925,
0.0896330751,
1.933204447,
-0.8363705566,
-0.3019305954,
-0.0482228628,
0.9900550197],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000467211],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0219948024,
-1.4045070099,
0.3346122899,
0.4538626732,
-0.9851595564,
0.8549969277,
-0.1669558373,
0.3178505189,
0.7786437139,
-0.4769468905,
1.2339575117,
1.134194529,
-0.5993542074,
-0.0648049583,
-0.4631324217,
-0.4317010523,
0.552629354,
-1.0117502719,
-0.2604548607,
1.2340516128,
0.2724962737,
-0.5747198482,
-0.5841951093,
-0.3505936784,
-0.4806248239,
1.8505650214,
-0.268845869,
0.2990197433,
1.6737559834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038322806],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.8135428052,
-1.7366868246,
-0.131195616,
-2.0360695788,
-1.7190638553,
-0.1260804675,
2.7124286323,
-0.6888249874,
1.8985540147,
-2.3523204468,
-0.9039237472,
-0.1347130942,
-1.4999632159,
-0.0531648464,
0.3978897105,
-0.1707117905,
-0.5870372281,
-0.32750892,
0.2571895999,
-1.4801545017,
-1.1037257149,
-1.7458876637,
-2.3033341266,
0.242049918,
0.7792359578,
-2.8225739425,
1.0820152385,
-4.5864938045,
1.8757457451],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013658404],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5855527241,
1.4687640639,
-1.3163560498,
0.0262219912,
-0.340552007,
-0.7818548256,
-1.0255778869,
-1.4559676392,
-0.7075419071,
-1.6420247411,
-0.80487444,
1.0425073685,
0.9811542159,
0.2501827825,
0.4096237243,
0.5915588015,
1.1322533555,
0.8260054987,
-0.5351622337,
0.2615957852,
-1.0977069914,
1.9477854145,
0.3994318085,
-0.0403348492,
-0.5343753555,
-0.4004296276,
-1.525094071,
-0.4148343005,
-1.2697013005],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011299849],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0261700738,
0.7553708787,
0.1989159805,
0.6085848313,
0.3321196644,
-0.8543947022,
0.9865072427,
-0.38538573,
-0.1638910124,
0.653578662,
-0.4221681106,
-0.2058882737,
-0.213826487,
0.2601833399,
0.7913615818,
-0.7377650317,
-0.2794010116,
-0.1537549191,
0.4434461412,
0.3137731442,
0.0687111876,
0.8172561744,
-0.0065723952,
0.6496863249,
-1.3117281554,
-0.9056472539,
0.9241383171,
0.231861427,
-0.5176313493],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004878044],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6864495257,
0.9927781354,
0.4725019165,
-0.0798843561,
-0.5145361845,
-0.523927396,
-0.0850107401,
0.7937283297,
-0.7224032852,
-0.2440400084,
0.9977226466,
0.9104215826,
-0.0111366066,
0.945598458,
0.0985200711,
0.6961672118,
-0.3498960091,
0.2735662789,
0.3264687544,
0.0285929314,
-0.1688403056,
-0.7683547187,
0.1432725631,
0.4995074077,
-0.2396502804,
0.1298958225,
0.2956821427,
0.110651632,
-0.2343554596],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006315708],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2745614604,
-1.1546741213,
-0.1142991002,
-0.2618387482,
-1.0389129054,
-0.607594116,
0.2344206675,
-0.2862379187,
-0.849587002,
0.2854079439,
0.1202458317,
0.5580521974,
0.7489955004,
0.0349650161,
0.1933538458,
-2.467955537,
0.9230315613,
-0.1099521761,
-1.2943212636,
0.4769295881,
-0.1958555895,
-0.9772109773,
-0.4535917404,
1.1843150224,
0.1504550674,
2.9369573397,
-0.3837824798,
0.2249505017,
1.5436916807],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003540218],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0241460443,
-0.6936229504,
-0.3026812016,
-0.6876390488,
-0.7599941654,
-0.1949046403,
-0.8128359317,
0.0367690941,
-0.1670395042,
0.7610379866,
0.7451498216,
0.2449620666,
0.2578487682,
-0.2639834814,
-0.4662935874,
1.6635028351,
-0.2130015596,
-1.1706665192,
1.1775403537,
0.0926444131,
0.0239873603,
-0.0848816279,
0.5346165509,
-0.7111439403,
-0.9725529768,
-0.9983964853,
0.0049056381,
-0.1367905623,
0.5059114592],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039830804],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9852597113,
-0.2338843351,
-0.3005227727,
0.0728501197,
-0.2756112612,
-0.1362038947,
-0.3741655881,
0.0133141483,
0.5815863403,
0.1296950969,
0.6490712134,
1.3821245139,
0.990899116,
-0.0506885775,
-0.2798378805,
0.7835450606,
-1.0949323296,
0.0655169051,
0.5245937514,
-0.1061679626,
-0.3105727836,
-0.800319175,
0.613296439,
-0.81305059,
-1.1182971592,
0.4917630173,
-0.104097187,
-0.1609340357,
0.0678128986],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003286004],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2341301251,
1.7220931019,
-1.9364468151,
-0.618422825,
-0.2996141811,
-0.225468091,
-0.7686893221,
1.9047459713,
-0.2526407095,
-0.4778046468,
-0.5025555138,
0.8978279497,
0.0379220544,
0.5154035782,
-1.0580137728,
1.5145985563,
0.6875611833,
0.908790905,
0.3296599894,
-0.0100945336,
-0.3751675796,
-1.5224644648,
0.3955786375,
-0.7199471384,
-0.0441666426,
0.3748544826,
0.0670562195,
-0.0986445961,
-0.0322136909],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004710555],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9245521265,
-0.6917423492,
-0.3260659509,
-0.3894640194,
-0.8960946464,
-0.571120879,
-0.559057029,
-0.0076792684,
1.7887378605,
-0.3854024588,
-1.0948927216,
-0.3363738179,
-1.471597091,
0.102654935,
0.9754887749,
0.0780435005,
-0.2349940613,
0.1792175275,
0.1881634451,
-0.1145657912,
0.268916263,
0.7421145812,
0.1736715668,
-0.0754872384,
-0.7343192233,
1.5258307384,
-0.1386803044,
-0.1182530681,
0.832280288],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043705106],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5914711609,
0.1496035533,
1.2765075973,
-0.6301925847,
-0.5175977701,
-0.0489060135,
-0.3146511251,
0.6616301252,
0.5721950942,
-1.2694186051,
-1.1654223724,
-0.1923635286,
-1.4816168552,
-0.0716718295,
-0.7143930966,
-0.03468342,
0.4387681421,
-0.9214641383,
-0.682381381,
-0.3268225155,
-0.1062634372,
-0.4441255432,
-0.0311324323,
0.1756574701,
-0.4646564107,
1.6817468689,
-0.2375336846,
-0.0350171053,
-0.0508351586],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018170476],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7147885634,
-0.8134204143,
0.7895395593,
-0.9853766045,
-1.6478633264,
-0.3329392936,
-1.3712679493,
0.140449987,
-1.3480210886,
1.4300563349,
1.1212792118,
-0.8246497204,
-0.7889407833,
-0.1682728671,
0.4802716235,
0.2849521055,
0.2084256639,
1.2236861082,
-0.3613864756,
-0.5185999904,
-0.046882971,
0.282310144,
0.1728961433,
0.8145013197,
0.158069122,
-0.4048466592,
0.1358847561,
0.0853273709,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005193949],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5046271453,
-0.8132871616,
0.525610732,
-0.6068963943,
-0.506903781,
1.6083551378,
-1.2179448023,
0.6463759239,
-0.3061226583,
0.4111021033,
1.721702389,
0.3488802574,
-0.0975369664,
-0.3493322956,
0.8783506709,
0.2544789901,
1.3194827396,
-2.7289856991,
-0.8712185086,
0.1380121752,
0.6918600868,
1.997285534,
-0.1547774213,
-2.1657193849,
0.2360596561,
0.1599923867,
0.2396957378,
0.0432881348,
0.7643533383],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003015697],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8568200002,
0.6583786887,
-0.095276219,
-1.8197559218,
-1.026324287,
-0.2975121147,
-1.0542961778,
1.0539945319,
1.5460361511,
-1.4995211241,
-1.6593434455,
0.2256670873,
-0.6622834367,
0.5757760178,
1.2717942393,
0.3770994615,
-0.1546673453,
0.9213040758,
0.6060883612,
-0.7383228998,
0.4561625755,
0.4376142611,
0.0800472299,
0.7655653139,
-0.6896113897,
-0.8691272156,
-2.6610366459,
-0.468815514,
-1.2763846408],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031995773],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6455709318,
-0.3769664637,
-0.3834101352,
2.5553611733,
0.5983092552,
2.1064209714,
-0.2601347427,
0.6216943116,
-0.6009351719,
1.1016388976,
0.5074759168,
0.5053402418,
-0.5015177856,
0.2630266923,
-0.9244227541,
0.4682466692,
-0.2487077715,
-1.6736979859,
-2.4693786669,
0.1384400314,
-0.2451834151,
-1.358978825,
0.6144487789,
-1.5567305939,
-1.590085661,
-0.9437953793,
-0.0102696857,
-0.0163950348,
1.2591609535],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033318996],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8740027649,
-0.0953530775,
0.7594758569,
-0.5632026247,
-0.1477958216,
0.2042694633,
-0.0021931222,
0.557137877,
-1.3607019745,
-0.1015724524,
-0.0042766471,
-0.3006150997,
-1.2109060561,
0.5628317157,
-1.0047711577,
-0.9133395685,
-0.5811423436,
2.4451737729,
-1.9738456455,
-0.8523263257,
-0.2816311065,
-0.7633760554,
-0.4664147323,
1.001112826,
1.2356218154,
-1.4310747846,
-0.3830116966,
-0.1731178743,
0.8419549748],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011730194],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5434229647,
0.8999124908,
1.3019522113,
0.6326547459,
-0.3090482434,
-0.2793475607,
0.1597315161,
0.425431803,
-0.8305786876,
-0.4577436481,
0.3606232152,
0.9300285448,
1.2174835071,
0.2922984125,
1.5810836443,
-0.4540810601,
0.3751135519,
-0.7767555841,
-0.1008936272,
0.1751817482,
-0.0815793351,
-0.2226828508,
-0.0445321112,
0.9827900756,
0.2134111586,
-0.9855581498,
0.5801966777,
0.26522923,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010690391],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4333952169,
0.1262898619,
0.318910128,
-1.3127076957,
0.0541181546,
-0.3863105926,
0.1414971799,
0.3800347753,
-1.8455247023,
-0.0795046969,
1.0139916328,
-0.0609707603,
-0.1424684113,
0.5672545203,
-0.718863892,
1.2413689624,
0.2723509547,
-1.841899005,
0.4080196969,
0.0634169939,
0.1480914552,
-0.2425103673,
0.1253598034,
-0.5660542218,
-0.4877706356,
-1.2738725135,
-0.0862172468,
0.0369067625,
0.3896077921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00048589706],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6099705948,
0.1949569757,
0.345098449,
0.7869994977,
-0.3003994866,
-0.6652896391,
0.1051649508,
-0.1345216113,
0.0371541355,
-0.012173393,
-0.3138895336,
0.2086982446,
-0.059454662,
0.3762512435,
1.1452079549,
0.2582932421,
-0.5356122622,
-0.362339354,
-0.3624493598,
-0.1674256815,
-0.3133671541,
-0.9684683743,
0.1774585482,
0.5688184959,
0.6996450991,
-1.3035715433,
0.0486904083,
0.1083180048,
-0.2041281207],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008229315],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4959347662,
0.463393049,
1.0581524243,
0.2013001389,
-0.5445944097,
-0.3108114877,
-0.0958650571,
0.4618986133,
0.1191538798,
-0.6173119808,
-1.040519981,
0.2651161519,
0.0618752383,
-0.1234523469,
-0.2307105955,
-0.0387158627,
0.0809970841,
0.0737012078,
0.0938937363,
0.1137242759,
0.2602338082,
0.8702616318,
-0.2053831789,
0.7383657411,
-0.1492862461,
0.9401186821,
0.5666758152,
0.3486557793,
0.2209000796],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049191713],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3963997043,
0.3530928318,
1.306510292,
0.0116475894,
0.3266958442,
-0.3996164593,
0.2418967494,
0.0834147331,
-0.1848859542,
-0.6148621802,
-1.0288373043,
-0.1977014545,
0.1059485262,
-0.0350579902,
0.7924947039,
0.8378830346,
-1.1429902425,
0.3983672631,
-0.9643037842,
-0.040405713,
0.028539027,
-0.1490391784,
-0.2547438342,
-0.2750636416,
0.0481649462,
-1.2869227507,
0.2527349505,
0.4023105003,
-1.0153226059],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00037288666],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3296982709,
-0.9354542072,
-0.8773886192,
-2.2667581675,
0.8826036352,
2.4230474518,
0.8585714142,
0.4532450933,
-0.9307019223,
-0.6068106371,
-0.0632993936,
-0.1866042296,
0.2763895071,
0.5616734878,
1.8044703723,
-2.4659569363,
-0.0096371245,
1.7899946597,
1.615170887,
0.8945873527,
-0.5944285045,
-2.2821333792,
1.6672051441,
1.5279913677,
0.3697546424,
-0.4642614847,
-0.2706668197,
0.1286871666,
1.496649824],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014936924],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0287296357,
0.0678678258,
-1.0719906532,
0.303836106,
0.2770041057,
-0.6772359884,
0.1587050465,
-0.1835591491,
0.4575689964,
-0.324869997,
-0.5519911298,
0.0220667883,
-0.1855573064,
-0.8004112987,
0.2433133506,
0.3508892271,
0.5702551066,
-0.3210310478,
0.0484750589,
-0.204140364,
-0.4989537998,
-1.3565445204,
0.5976010064,
0.9309586743,
-0.5143731688,
0.3502112439,
-0.165190382,
-0.0821772278,
-0.3312897785],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014097095],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0563450564,
0.6055362136,
-0.2021664051,
-0.4533982225,
0.662006035,
-0.4391534754,
0.7174752633,
0.0358137419,
-0.2788139256,
-0.5784387696,
1.0807578785,
0.5174644413,
-0.2634842642,
-0.7889342262,
-1.0320997867,
0.5505272885,
0.1988589077,
0.3228077711,
0.0148007294,
0.0228957517,
-0.3920640327,
-1.0068301267,
0.1873248293,
1.0891019683,
-0.8963221395,
0.1800898513,
0.5244857116,
0.2470261663,
-0.8350908458],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009227097],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5700418357,
-0.056518291,
0.8569295398,
-0.5263865281,
-0.0358882333,
-0.2957758594,
0.3687952972,
0.1494066398,
0.1594257473,
-0.3231983599,
0.6924860783,
0.2028602504,
-1.0824163275,
0.2115371008,
-0.4504951309,
0.6235839246,
-0.7981026773,
0.2146530081,
0.0182355656,
0.0864235826,
-0.2081415166,
-0.7149398604,
0.4083493652,
-0.0441207853,
-1.2752492564,
0.4005418107,
0.4438116693,
0.9512348716,
0.8920477314],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002155006],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1182030707,
-0.5966733027,
-0.0968882557,
-2.1448644305,
1.066736219,
2.9288318406,
-1.110325792,
0.8689372564,
-2.0199020202,
1.0460545391,
-0.0569598329,
-1.1606830237,
0.4780327402,
-0.2907764904,
1.4403212955,
-0.5601417501,
0.4826233426,
0.1894366529,
0.6283446054,
-0.1031257295,
-0.3682060659,
-0.8050766986,
0.4033844857,
1.0536125671,
-1.2637773503,
-0.6112726439,
0.293989495,
0.1700632521,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011473894],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5634411649,
0.5435422341,
0.9903858621,
0.2815057905,
-0.2987039439,
0.088881025,
0.4951011653,
-0.2199817371,
0.7176980443,
0.6736617312,
-0.7878391176,
0.5283588608,
1.3557912445,
-1.1350511656,
0.1821415188,
-0.5127716372,
-0.2649783761,
-0.0269439467,
0.9985673936,
0.5387350583,
-0.0142519325,
1.0935297248,
-0.2267760375,
0.2270642422,
-0.3849909273,
1.0369612812,
0.5292067085,
0.6881509021,
0.6446368299],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041347742],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9665073032,
-0.9259556526,
0.1527453695,
-0.5683557992,
-1.3703831199,
-0.1940761887,
-1.152391467,
-0.0015368158,
0.404577922,
0.562555942,
-1.0146160523,
0.4934972537,
1.6324833172,
-0.8741678757,
0.7986954494,
-0.7318928948,
-0.5574133253,
1.7643596451,
-1.2719697965,
-0.3787205845,
-0.1696740218,
0.1855479418,
0.4418943203,
-0.0706755075,
-1.5086377921,
2.5631581024,
-0.0737901155,
-0.0618010587,
0.8248989585],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [5.3584576e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3185162362,
0.2342645941,
0.3801275195,
-1.0438774486,
-0.5917880015,
-1.1234125919,
0.0717775,
0.227462358,
-0.9881459586,
0.01703173,
-0.7779540168,
-0.9735064032,
-1.1041222111,
0.1922505474,
-1.049403409,
0.8361642104,
0.7475605818,
-1.7711889288,
0.0452798601,
-0.0193706653,
0.4398143719,
1.1234852071,
-0.0371478457,
1.2131086119,
-0.5446834387,
-0.7171696528,
0.6375440176,
0.4985902761,
0.020554755],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003899932],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7537162774,
-0.5021440044,
-0.0259828629,
-0.9450923738,
-0.7979670133,
-0.8025731702,
-0.4038139149,
-0.2556843957,
-2.0363942149,
1.2898269345,
0.08593273,
-0.654871089,
0.4585441789,
-0.0084943258,
0.5224169793,
-1.3192919472,
1.1982300615,
-0.9627379687,
-0.7552384493,
-0.5028353689,
-0.1721343076,
0.1171680367,
-0.0065467738,
0.6856665575,
1.1006901279,
-0.153020714,
0.0328258642,
0.0296946853,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00089499354],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2346543061,
0.2953115609,
-0.6149290211,
-0.6993494715,
1.3563194647,
2.6527371736,
0.1795760765,
1.0308064816,
-0.6755215752,
-0.5796201595,
-0.3626031489,
-0.0833745434,
0.0282917504,
0.6902142521,
0.9025405103,
0.683556344,
-0.821901507,
0.2377232225,
0.3780688219,
0.2754910871,
-0.0544359634,
-0.9127555061,
0.6625817735,
1.629871244,
-0.4692232465,
0.1621067012,
-0.3706556248,
-0.0622171919,
0.9695308105],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0001950264],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6417863499,
0.0632032434,
0.4831241443,
0.0939653834,
-0.4965227645,
-0.7234127533,
-0.1982366028,
-0.2257311079,
1.420143109,
-0.5255756081,
0.8029807463,
-1.9880441425,
2.3118311869,
1.4976511321,
0.4918437172,
0.3881459362,
0.3878637215,
-0.2292859393,
-0.2252484843,
-0.081589452,
-0.3808914943,
-0.739197846,
0.1794983932,
0.663283992,
0.2186270766,
1.782293134,
-0.2366189409,
0.0263307838,
-0.435936499],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00060009956],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5650931448,
-0.672033168,
-0.0024686409,
-0.4537378093,
-0.7699589005,
-0.5419797505,
-0.2702822516,
-0.1546454236,
-0.5904465657,
0.5213563106,
-0.8444512745,
-1.2270733878,
-0.5795813429,
0.0398216813,
0.955377749,
1.4769753908,
0.1331975441,
-1.2423603653,
0.8343520265,
0.500483677,
0.2802925163,
0.1055860326,
-0.422513872,
-0.2372029763,
0.9197248743,
-0.3921039661,
-0.0890299376,
0.1304585946,
1.1196771803],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000695616],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0139385704,
-0.3793970677,
-0.6592345446,
0.5206774442,
-0.418750256,
-0.5870754031,
-0.1906680922,
-0.2242134074,
-0.4495706971,
0.9378402742,
-1.2099476367,
-0.1682329909,
-0.0220402397,
0.190414449,
-0.0888912403,
-2.0007677385,
-0.1297969946,
1.5771443092,
-1.6919348382,
-0.8096059627,
-0.0251871652,
0.7563667875,
-0.024499314,
-0.0597699022,
0.5019544038,
-0.6475476552,
0.0781699695,
-0.1179311267,
0.477068427],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022318959],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.3332767588,
-1.9358385572,
-0.2408311589,
-1.347873343,
-0.4014317431,
1.351705674,
1.2431963476,
-0.2118215846,
0.5818917115,
0.8620837668,
0.3902414774,
-1.904382555,
-3.375914403,
-0.4219567743,
-0.4726668943,
1.0421527086,
0.2356647277,
-2.4859791007,
-0.3261831108,
-1.2392411122,
-0.8313662846,
-0.2727531081,
0.372612593,
-2.8081850269,
-2.3450853459,
-1.4356277626,
0.9323284566,
1.1097252496,
1.7257429034],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [9.0807676e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4102387339,
0.9949615701,
-0.7390319912,
-0.433071385,
0.1948995358,
-0.4732496814,
0.1085552131,
0.7766738658,
-0.4059561071,
-0.7078305469,
0.8556810073,
0.8569742675,
-0.1517008497,
-0.207272279,
-1.0432392859,
0.7422443686,
0.631658835,
0.2927661393,
-0.1192861021,
-0.1132307835,
-0.3130005212,
-1.0446423598,
0.3762809313,
0.9831932472,
-0.7410810384,
0.2113030055,
0.2082390685,
-0.0065104728,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006427169],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2572544215,
-1.1651824124,
1.0103681935,
-0.5761603025,
2.3768107689,
-2.1109012932,
-0.1788315901,
-0.1322380634,
-0.0262949433,
-0.7114767627,
-1.0259242991,
-0.2711856438,
-0.8557956488,
0.1548237575,
-0.7870765478,
0.2019206584,
-0.8376078801,
-0.8279427497,
-1.234404233,
0.6585697604,
-0.1884266899,
-1.5522482033,
0.2544051459,
0.0012339614,
1.3765223113,
0.2293298781,
-0.8436137165,
-0.4366399387,
-0.4365596051],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004222989],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.146642063,
0.546129403,
0.2893872441,
0.3203279293,
1.0736771217,
0.7225408729,
0.7649485112,
0.1313699538,
-1.0498016464,
-0.0856832296,
0.0618088974,
0.4810000692,
0.8187500899,
0.4983999868,
0.4793084598,
0.0414340912,
-0.8646149539,
0.169065033,
1.5221924638,
0.2454862943,
-0.3499260006,
-1.1643135957,
0.0039569893,
-2.9378518969,
-0.7120770427,
-1.2721961667,
0.3795595834,
0.4621561539,
0.4664942705],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007724762],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0969435569,
0.6274197997,
0.0656923019,
-0.6018367565,
0.4902895143,
-0.4669638324,
0.7704163942,
-0.0547910324,
-0.1978433663,
0.0488609492,
0.6323666578,
1.111696841,
0.7326551394,
0.0799385491,
-1.2668705559,
0.1513465741,
-0.9338461194,
-0.2861966944,
0.3623780778,
0.2014455949,
-0.3512601051,
-0.684435268,
0.0349603908,
-0.5542410968,
-0.7576832644,
0.2954645696,
0.8682825537,
0.4640432458,
-0.7148659673],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006104708],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2717809684,
-0.2080635087,
0.6855638895,
2.6083645811,
1.8990557603,
0.4863755717,
0.4153453328,
-0.027058476,
-1.3828459018,
1.0575470624,
-1.9726133683,
-0.6022815833,
0.7217431937,
-0.422415854,
-0.9344678869,
0.2856731307,
-0.5450057685,
-0.1433934343,
0.3414592861,
-1.1781807433,
-0.3676196746,
0.504637989,
0.9073686096,
-0.0765587188,
2.3436239845,
0.9613086664,
0.0923299378,
-0.0572804509,
-0.2962122924],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006687939],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8538732605,
-0.0351133132,
-0.4577970609,
2.3167819699,
0.5550778724,
1.2395662979,
-0.2462726038,
0.3079921137,
-0.7794212516,
1.3811835408,
-0.5826266117,
-0.1841631087,
0.1094394107,
0.289714652,
-0.3512574935,
2.3923533546,
-2.1184498516,
0.8405762272,
-1.2562632403,
0.064312647,
-0.2048050384,
-1.2211060813,
0.3663086992,
-1.4575851749,
-0.9482012979,
-0.8003833465,
-0.0853045766,
-0.0581442572,
0.9535917612],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026136637],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3943716499,
0.5737686261,
1.0973568349,
-0.4265947436,
0.0874103363,
-0.7410735514,
1.0887496787,
-0.1450669035,
-0.7307600196,
-0.8056398562,
-0.3662036896,
-0.0459759854,
-0.0630592958,
0.2803730116,
0.3839235112,
0.4207106358,
-0.620251616,
-0.9002094462,
-0.5046501814,
0.0607840293,
-0.5759145017,
-2.0739312976,
0.1678570245,
0.5501070168,
0.2126811369,
-0.2268174754,
-0.1425328263,
0.2074580191,
0.6070182369],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00027626753],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4775588235,
-0.3045611322,
0.9076214934,
1.1901526897,
-0.8791699819,
0.2319651574,
-0.4937341907,
0.1126980172,
1.1672764827,
-0.3795406138,
-1.0947591403,
1.2280343208,
0.8865807142,
-1.0554689628,
-1.4574719502,
-0.63723539,
0.2001192977,
-0.2561332883,
0.0768672513,
0.1193756084,
0.1592534733,
0.8771016452,
-0.4525214619,
0.7850952742,
1.3410865283,
-0.3136791113,
0.1957149993,
0.1706763,
0.8260873445],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004964769],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.262437482,
0.9503910397,
-0.7986284565,
0.0704213777,
0.3979199241,
-0.1007157361,
1.0923505052,
-0.5547929993,
-1.0413795307,
-0.2158898118,
0.6621796621,
0.6813980823,
-0.2420471912,
1.1949393427,
-0.9965850951,
-0.0544235335,
-0.6374567601,
0.2399933604,
-0.5189555395,
-0.7503494788,
1.4226107472,
0.5393989417,
-0.0693461535,
1.1430297532,
0.507628294,
-1.2552486523,
-0.352046361,
-0.3614314503,
0.925311801],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008097589],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7430923577,
-1.1360764911,
-1.365913249,
-0.3169739828,
-0.0551001319,
0.3035451784,
0.0771492992,
-0.1434514484,
-0.5889446798,
0.6723373213,
-0.1032304306,
0.7016433373,
1.1599303041,
0.2984357101,
-0.2282109202,
-1.4807732433,
-0.8977297333,
2.5312745168,
-0.5951392197,
0.2915390876,
0.2286126032,
0.3830473205,
-0.6905610093,
-0.5303157473,
0.4210219635,
-0.0932110892,
-0.150669368,
0.0052467181,
1.4849261243],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030699372],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.97159271,
-1.0074063484,
-1.2793629459,
-1.3050266557,
0.89302517,
2.8565975629,
-1.2001815971,
0.7760147352,
-0.0555126126,
0.6321982383,
-0.0312511696,
-0.4220222581,
0.148384908,
-0.2774840665,
0.6437577187,
1.2099953095,
0.0599006048,
-1.4764719917,
0.3518232969,
0.3556360754,
0.5329373326,
1.1614227865,
0.1480284964,
1.2411254354,
-0.2784747881,
-0.1623923697,
0.0191246358,
-0.101962364,
0.9131276904],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003863871],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5545439946,
0.2121719483,
1.4944106089,
0.8620084293,
-1.0309327375,
1.3444974833,
1.1403520267,
0.0269224093,
-0.1347795489,
-0.0387525604,
1.2901274264,
0.9118310311,
0.5211199909,
-0.5957551771,
0.1387797691,
-0.5330533553,
-0.0153508097,
0.268055619,
1.0072582727,
0.435545157,
-0.0473164026,
0.6470708323,
0.1549844983,
0.0787506933,
0.4349753351,
-0.4417627052,
0.5946805504,
-0.5393594796,
1.4028669871],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00080528855],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6623328623,
0.3428763033,
-0.5099037242,
-0.5573260118,
-0.0950388945,
0.5364752216,
-0.1848445855,
-1.9051114701,
-0.0227382279,
-1.5871085362,
-1.9476121307,
0.0623078864,
-0.7302696205,
0.779869841,
-0.5826440341,
0.1277375175,
-0.1093018312,
-0.2359268852,
0.1881053474,
0.4723339571,
-1.9657952116,
-0.2499125118,
-0.7925469619,
0.0694901009,
0.2065288489,
-0.1910111907,
-0.010423729,
-0.6032810791,
1.2905224101],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018277764],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0317532992,
-0.6401889696,
-0.5906165829,
-0.7296531515,
-0.586454913,
-0.485251937,
-0.5194147997,
-0.0508637663,
-0.385260152,
0.8282722424,
0.6606702563,
-0.2707166216,
-0.6545511386,
0.2164404753,
-0.3334252714,
1.6967010389,
-0.2238921096,
-1.3351473604,
1.467283058,
0.0592271599,
-0.2864538187,
-1.2163949531,
0.6821811382,
-0.827623986,
-1.1042710118,
-1.4179587748,
-0.0848937467,
-0.148444733,
0.6206484238],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00061911345],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5655351715,
-0.0254935066,
0.2878782879,
0.2981859798,
-0.1508520697,
0.1946820876,
-0.2403947118,
0.2689311802,
0.016719835,
0.0628093236,
1.6117877792,
0.3101909323,
-1.5373200175,
0.8603632413,
1.1168781616,
-0.0189774952,
-0.0099887181,
-0.860018779,
-0.6767501287,
-0.3260969411,
-0.2320359005,
-0.7721353774,
0.3595088469,
-0.5770153068,
-0.0295347662,
0.2927502154,
-0.0333166842,
0.0068661734,
-0.6235003345],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012585223],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5617132754,
0.05577652,
0.2664140401,
0.9126355107,
-0.1086112561,
0.1166676599,
-0.0490555367,
0.1458095217,
0.1011777821,
0.0616015446,
1.0319821596,
0.8519731394,
-0.8808086184,
0.4100068068,
-0.8012340981,
-0.5607363774,
0.0602133927,
-0.455264173,
-0.092813739,
-0.2791943057,
-0.077859553,
-0.0180444692,
-0.110806179,
0.0253340467,
1.1725057206,
-0.6775403992,
0.0703853967,
0.0260919083,
-0.2172028],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010904968],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3416557597,
-0.211960855,
1.3650375986,
-1.2454268446,
-0.584956161,
0.3667752679,
-0.3310494907,
0.3143542539,
1.9663275842,
-1.6836225553,
0.8876697938,
2.0061024597,
-0.1027876494,
-0.7053503127,
-0.939315714,
-2.7769279925,
1.3861423045,
-0.1001280082,
3.7055389221,
0.0267730824,
-0.1159565493,
0.5392506643,
-0.1225082913,
0.1531541004,
0.0857586278,
-1.4230019895,
0.3397986002,
0.3633887578,
-0.2551430327],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011484027],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9731005584,
-0.1978158148,
-1.0177105363,
-0.0382442292,
0.57473003,
0.6063316675,
-0.1679581366,
0.2401458523,
0.5012114182,
0.0781109826,
0.8674823693,
0.4315510722,
-1.0443936209,
0.9418283736,
1.0925267694,
-0.700826838,
-0.1243346792,
-0.6096892364,
-0.979915499,
-0.4961905182,
0.4648675179,
1.6030745561,
0.0226696046,
-2.7264503477,
0.1169624345,
0.0289296125,
0.0483338964,
-0.2650458718,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009151697],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5002795489,
-0.6053832493,
0.3873898883,
0.4108365177,
-0.7715119981,
0.2618858298,
-0.5067921144,
0.0843878423,
-0.3895182589,
0.5278066903,
-1.0107617098,
-0.0981065061,
0.1893876535,
-0.1887644137,
0.6758528022,
-1.8116918049,
0.1156566389,
1.3680362257,
-1.721919585,
-0.3536076602,
-0.2087961843,
-0.1550666522,
-0.3288940067,
-0.4963733714,
0.8491629197,
-0.3840595722,
0.1527515926,
0.1766207284,
1.0503175049],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016459823],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0543123663,
0.002139032,
-0.8176466172,
0.1791797199,
0.1891862257,
-0.6248244663,
0.2071279349,
-0.2887993855,
0.3687115226,
0.0463720383,
-1.0789887764,
0.7659979045,
1.205707911,
0.0419658297,
-0.0397128884,
0.0240406255,
-0.6451911254,
-0.9209047777,
0.4637902618,
-0.1834154161,
-0.4416040732,
-1.0310694831,
0.4460856401,
-0.9411637993,
-0.3363232136,
0.4771925231,
-0.1624782251,
-0.1923546616,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00088351965],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9236212558,
-0.6371130677,
-0.3293284306,
0.2529854386,
-0.1328186619,
1.3727736766,
-0.9550823218,
0.436369348,
-0.2550994074,
0.8722761619,
0.4996253583,
0.9893383245,
0.7717446867,
-0.1401265878,
0.1418950162,
-2.0314858506,
-0.016885829,
1.107569209,
-2.4079339637,
-0.7964777735,
-0.0037472191,
0.9605693909,
0.2087679885,
-2.7841221398,
-0.4840916048,
-0.7807505147,
0.3034104114,
-0.1347274287,
0.5088182166],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020891428],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6270215851,
0.1589716469,
-0.0883531528,
0.3236748096,
0.1741809228,
-0.3446778789,
0.292676308,
-0.1175096618,
-0.1647574607,
-0.0763276548,
-0.4094940129,
0.2210246237,
0.133398735,
0.4901403993,
1.1444069078,
-0.1275250206,
-0.1930920416,
-1.3408191939,
-0.1240739296,
-0.1272528445,
-0.5406597863,
-1.6167865866,
0.2039239818,
-0.7562723093,
0.5346947365,
0.1537244345,
-0.1038667168,
0.0276330884,
-0.0204455239],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010077655],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.364467608,
0.7685035504,
0.6198330289,
0.8064236588,
0.0283278533,
0.4089730784,
0.1195065922,
0.6062739947,
-0.5948458514,
-0.1239495109,
0.5681774859,
0.6806876722,
-0.5085410923,
0.6039378997,
-0.5124922341,
-0.8912394981,
0.5152553294,
0.0251193477,
1.4100637108,
0.0209858289,
0.0421188758,
0.3759771455,
-0.2475518312,
-0.5244723973,
-0.1187363372,
-0.4464846876,
0.7212149874,
0.4121768338,
-0.368480981],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0016985834],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0556400853,
-0.0101381542,
-0.8396306152,
0.1694252679,
0.2006174102,
-0.5973829595,
0.1961559601,
-0.2759508557,
0.3997818705,
0.0511525012,
-1.17275385,
0.6391070529,
1.0194006298,
0.0780543929,
-0.0101472645,
0.057466,
-0.6612153895,
-0.8648497842,
0.4978495768,
-0.1941656262,
-0.4501891826,
-1.0723242322,
0.4335659323,
-1.0675423141,
-0.3320095129,
0.4872842041,
-0.1663486379,
-0.1953329628,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00084641576],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0279068208,
0.4430991295,
0.2121704573,
-0.1291910426,
-0.8413215601,
0.227576642,
-0.5845741165,
-0.312540376,
0.3393126171,
0.2409536891,
0.6960348666,
0.6678738789,
0.392192727,
0.3881750988,
2.0247634725,
-0.4514062447,
0.3791788205,
1.4037957377,
4.1805051099,
-0.9425907333,
1.305418644,
1.1732854354,
0.6599372737,
-0.3863034144,
-0.7776193312,
2.3013680719,
-1.8763080014,
-0.8774043889,
0.6375391331],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013497472],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3737492485,
-0.1443155942,
1.3063692094,
-0.1436381146,
-0.5231997304,
0.8770158297,
-0.0112277002,
0.4370707915,
-1.1189380402,
0.1966764833,
0.8104375416,
-0.2367154051,
-1.3093822868,
0.1999674599,
0.0768682297,
-2.1271321894,
0.4142682762,
1.6889272988,
-1.6765430427,
-0.4730788924,
-0.0063701171,
0.4764985233,
0.1189364678,
-0.6146011026,
-0.0722594112,
-0.4135336746,
0.3319376345,
0.3413025496,
0.8876963395],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016888976],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4201804845,
0.6759342732,
0.1907593345,
0.4663361301,
0.5398184116,
-0.0018310738,
0.5114808098,
0.1565002902,
-0.8616973599,
-0.3430545533,
-1.5312455894,
0.5620953758,
2.2739299287,
0.1604476107,
0.9776298832,
0.139307644,
-0.7435197951,
0.4674107371,
1.2089498908,
-0.022873503,
0.1606098118,
0.5806397687,
0.0527078083,
-1.6055436298,
0.1767441621,
-0.5176988967,
-0.0383780886,
0.1473968461,
0.3658928677],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00051030517],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7612995611,
1.0001675451,
1.1181299494,
1.5275758617,
-0.1711282762,
0.1707464325,
-0.2357562512,
-1.9421447596,
-0.3192726241,
0.4860481923,
-0.9796592563,
-0.2636992742,
-1.073754189,
-0.1184729726,
-1.1844510668,
-0.0759939059,
0.2335214822,
-0.3837119357,
-0.7282763524,
-1.0805319637,
3.1651786979,
-0.8651929652,
0.5223054565,
1.0880643751,
0.3228903591,
0.0465487254,
-0.1428914052,
0.1988044324,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007017553],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1203542051,
-0.8631996185,
-0.4141487913,
-1.2116127348,
-0.8639056886,
-0.0470440738,
-1.083664619,
-0.0089805497,
-1.3421078353,
1.4915359251,
0.9104823697,
0.4941423652,
1.5070596895,
-0.5824403014,
-0.894664377,
-0.3855693103,
0.1978295927,
0.377735258,
-0.009960088,
-0.4459177917,
-0.1112193801,
0.3998577605,
0.5002938675,
1.1854197857,
-0.5159270948,
-0.4740645756,
0.0657955347,
-0.1351080637,
-0.2339401248],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00046557188],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.0170026878,
2.6331761027,
-1.5361190847,
-1.5500134704,
0.5542653713,
-1.0468057835,
1.4250538953,
-0.50611908,
4.1788581701,
4.9787493111,
1.7711004651,
-2.4546814887,
0.6032095792,
0.7298496583,
-1.2847825824,
-1.006388232,
-0.4822613524,
0.3324784811,
-0.539917677,
3.2070717979,
-0.7841062549,
0.4633584649,
-0.2434398656,
-1.0073837553,
1.1763491858,
0.1856247693,
4.8145463801,
3.3800618119,
-0.4562728734],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016838312],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7490745778,
0.9066742568,
0.3367898285,
-0.9183970701,
-0.6483425142,
-0.5885599431,
-0.2651471213,
0.8526547439,
0.2263508366,
-0.4437282594,
-0.598081389,
-0.0272851532,
-0.7267296814,
0.6196982766,
0.8794273014,
0.6635431614,
-0.0513963021,
-0.7837577824,
-1.4708804865,
-0.0662711099,
-0.0951541482,
-0.3993745248,
0.2829088077,
0.1285614345,
-0.3752601756,
1.5901912316,
0.3676545602,
0.1808234551,
-0.821405955],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021070242],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9317984647,
-0.1269796013,
-1.7868548451,
0.3628392052,
0.6274022629,
-0.8088137228,
0.6893944272,
-0.3396560972,
0.1967166916,
-0.317895002,
-0.8391427207,
-0.5486159931,
-0.9736148875,
-0.4291729204,
-0.0023294581,
-0.1765937487,
0.910902992,
-0.0729465125,
-0.0390188993,
0.0733903858,
0.1211424856,
0.103323277,
-0.2655355773,
0.6251411519,
0.6645109823,
1.4250901553,
-0.3291816173,
-0.0940180861,
0.9996770316],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.002095759],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1589491619,
0.4252068712,
0.2161742776,
0.1472126397,
0.4270634394,
-0.0022018347,
-0.1341839274,
-0.5979669305,
0.3933449972,
-0.8115585361,
-0.6782585602,
0.1409753952,
0.7573764938,
-1.4951892492,
1.0241284479,
0.0460613895,
0.7757969015,
1.2830009874,
0.5429092058,
-0.2112098237,
1.5232669754,
1.4736175032,
0.2804019653,
0.9103899377,
-1.6750001114,
-0.278578021,
0.9848053697,
0.8697930613,
-1.0173187446],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049349666],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6514932413,
0.1561410168,
-0.0975760202,
0.2116129373,
0.1788572747,
-0.0496127824,
-0.0329933579,
0.0299971228,
-0.1209790405,
-0.0870708374,
0.5512753263,
0.4203654402,
0.1434147013,
-0.1154397168,
0.5402186965,
1.1414370612,
-0.7546755077,
0.7320011218,
0.6617238053,
-0.057211555,
-0.4361789404,
-1.3375700649,
-0.032797609,
-1.4885370818,
0.64787026,
0.3098771541,
-0.0775521131,
0.0364376186,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005222261],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0306758796,
-0.6206885366,
-0.2124444496,
-2.0005164414,
0.4522836485,
-0.5003901364,
-0.3448390015,
-0.0198844281,
-2.1211837449,
1.1415830373,
-0.0709503727,
-1.1094585846,
-0.2889803876,
0.136211366,
-1.0528329467,
-0.2782719782,
-0.2010403185,
1.2205058486,
-0.0639224587,
-0.391554233,
0.3851535877,
1.4049044133,
-0.0012081967,
0.3057913704,
-1.7008549198,
-0.328464689,
0.5469843623,
0.8043918235,
-3.7190230678],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004464686],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.09393606,
-1.1310617577,
-0.210862305,
-1.2595234365,
-1.1726070496,
0.2883744243,
-1.500285931,
0.1571430618,
-0.7350721622,
1.477671254,
-0.2713893872,
-0.4906958896,
0.4788588688,
-0.6669388937,
-0.3455533549,
0.54104474,
-0.39565291,
1.4078942532,
0.3331121791,
-0.4109297612,
-0.1763835639,
0.0350477892,
0.3296747521,
-1.8101702446,
-0.9094726785,
-0.4438162484,
0.1150600747,
-0.1275669536,
0.5126367745],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [7.978082e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9559682875,
-0.2722856785,
-0.7846743667,
-0.078043158,
0.1287186493,
-0.046740082,
-0.071148872,
0.0134402243,
0.2877763146,
0.2002225341,
0.5599463402,
0.6428633011,
-0.0682725193,
0.5626480598,
0.2924545598,
0.9564480223,
-1.2001036007,
-0.0124213366,
0.667942475,
0.009103224,
-0.5679628544,
-2.0439672311,
0.7578439081,
0.0502561664,
-1.3004525208,
-0.0020530271,
-0.2329041966,
-0.1304991456,
0.7242683768],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049591064],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0078410626,
-0.1682380684,
-0.6215638763,
0.3271377781,
-0.0886410197,
-0.362786856,
-0.1394696999,
-0.0831442407,
0.7336376409,
0.088913327,
-1.0097696496,
0.0032089306,
-0.3852892363,
0.2090566981,
0.3874145138,
0.176199216,
-0.5162002829,
-0.2918113191,
-0.1024098111,
-0.2408317445,
-0.0630160476,
-0.107387023,
0.4167879401,
1.1114803944,
-0.3519645747,
0.4077121627,
-0.1284327143,
-0.1338329674,
0.0669058198],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007916093],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6021895918,
0.1129144576,
0.2472863569,
0.4523253166,
-0.4110882284,
-0.6772718867,
-0.0864273128,
0.0236864713,
-0.0127447207,
-0.0524052814,
1.5098957938,
0.1221556795,
-1.5241229039,
0.2564591069,
0.6009783214,
0.7680677313,
-0.0975825738,
0.4082553972,
0.0303293541,
-0.2323958818,
-0.3333234316,
-1.1485014236,
0.2879671608,
0.7456787873,
0.2061003049,
0.1439240032,
-0.0962000899,
0.0712311064,
-0.926179732],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014344156],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.757602897,
-0.1782656231,
0.84991946,
2.3627974722,
2.0833833238,
-0.3717180204,
-0.1733585753,
0.1516671133,
-0.3686593966,
0.4629059182,
0.6773204655,
-2.0376677494,
1.9038011726,
1.5423584453,
-3.7472772912,
0.6876180525,
-0.2686608981,
0.6141133664,
-1.5792178462,
0.2925465275,
0.2805835883,
0.5659501368,
0.0561873393,
-0.6689877442,
-0.1316154988,
-0.0352404773,
0.1220378107,
0.6118020778,
-0.2957420814],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007250309],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.00222862,
0.0467414914,
-1.0165722764,
0.2367740134,
0.3010907381,
-0.426156947,
0.0666718863,
-0.0515093946,
0.1996595107,
-0.1841026291,
1.2956308183,
0.8283492356,
-0.1916763938,
-0.6082716152,
-0.498763413,
0.4512792764,
0.4027970273,
0.0872013661,
0.2516308893,
-0.2065889581,
-0.4081235483,
-1.1142618607,
0.6232851432,
1.0061894022,
-0.627703699,
0.3062906542,
-0.1625472272,
-0.1130265492,
-0.6235003345],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014692545],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.316852632,
-0.5426331628,
-0.1204225337,
0.5652247119,
-0.3677899456,
-0.4583532881,
0.5042849156,
-0.2492424007,
-0.042041781,
-0.194561134,
-0.6221547737,
0.3018490167,
0.6359385193,
0.2904441709,
1.0696233782,
0.4232036559,
-0.6289938234,
-0.3706039744,
-0.0429505631,
0.8586161933,
-0.027394654,
-1.1700276613,
-0.5000914744,
-0.1480303146,
0.5138890301,
0.342307064,
-0.2500909004,
0.2376388967,
1.4542799368],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00054109097],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6547837493,
-0.3805651273,
-0.2714987995,
-0.7198563658,
-0.1299078535,
-0.1953153226,
-0.0810409543,
-0.134803512,
-1.2360532051,
0.6670509416,
0.6185259984,
0.1208143545,
0.8791376217,
0.096036285,
-0.1852784872,
1.6190627401,
-0.3832989383,
-1.2861814521,
1.8568521261,
0.4340187894,
-0.2350532446,
-1.1622422278,
-0.1821915556,
-1.4281950048,
0.8899240772,
-1.0029507834,
-0.0875599376,
0.0373133672,
0.8174066284],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00029852986],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0359359627,
0.5235384648,
0.1518016935,
-0.4477024884,
0.3431930165,
-0.7852775936,
0.8281797399,
-0.1515789979,
-0.0235838135,
-0.3530430119,
-1.0470640022,
-0.0108628163,
-0.1417061121,
0.1491014611,
-0.4191284585,
-0.0536198605,
-0.5088246223,
-0.7846745705,
-0.0349976371,
-0.054406514,
-0.3761621966,
-0.8699498701,
0.1087998286,
-0.2142047199,
-0.8987791568,
0.3056254438,
0.5923114291,
0.3114389655,
-0.7236631158],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044426322],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.1965550641,
3.3725675214,
-1.001215845,
-1.860438809,
-1.2848662498,
-0.8022695903,
-0.3549229711,
0.7613442082,
5.6382488303,
6.1892842796,
1.8572990364,
-2.8490970729,
-0.8492388425,
0.5383778256,
-0.3238598476,
0.659692899,
-0.2767656325,
0.5396092783,
-1.6572997814,
4.1028397237,
-1.338442233,
-1.6569775293,
0.6358058632,
-0.349247592,
1.9596937659,
1.6808519629,
6.5645587052,
5.0535423801,
-1.6016250569],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.9802322e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0852775333,
1.0496517048,
0.2334568165,
3.2325666516,
0.1314944518,
0.0733914667,
0.1954993836,
0.3346774045,
-1.9483362525,
1.2949452216,
-1.2153968796,
-1.2853889572,
-0.9429496471,
1.0331292797,
1.1999658491,
-0.0100436902,
0.3857197435,
0.396510409,
1.0008667883,
-0.1042773064,
0.4041011222,
1.0054502036,
-0.2703127854,
-0.0594948911,
-0.0283031014,
1.2258923979,
-0.3345129801,
-0.3845197498,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00075373054],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.528022282,
-0.7912146216,
0.1862625649,
-0.5404790832,
-0.8679834825,
0.0157743241,
-0.6558291181,
0.2016029564,
-0.5221527251,
0.6669682413,
0.9580065592,
-1.2170448692,
-2.2859349006,
0.5171700649,
0.800898576,
1.5613385248,
0.2727127371,
-0.9723439911,
0.6186818687,
0.2792663665,
0.3115747202,
0.1313740111,
-0.1769643427,
-0.6157740709,
0.3224608033,
-0.5317837575,
-0.0447771349,
0.0897565331,
1.056584662],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007074475],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9918547194,
-0.1981574471,
-0.6419812676,
0.2615657906,
-0.0639578668,
-0.1726607796,
-0.2244215225,
0.0675516424,
0.5459662105,
0.2650191471,
0.6863250064,
0.3258929812,
-1.3169510975,
0.6277646012,
-0.3106495895,
0.2433405852,
-0.5924411527,
0.2131597225,
0.1322574364,
-0.3427559506,
0.032391046,
0.1180649769,
0.4240552303,
1.1547000578,
-0.3987411418,
0.4415338252,
-0.1505793392,
-0.1836507516,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011213422],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6144070959,
-0.1377077104,
0.2832755409,
-0.217312619,
-0.3575243809,
-0.0374181498,
-0.3748463706,
0.1771835736,
0.2777734242,
-0.0406189307,
1.1856323932,
0.2720483252,
-1.0679896721,
0.5814069275,
1.0356935639,
0.5076820478,
-0.438559044,
-0.1295906186,
0.1125312512,
-0.1952156873,
-0.1250428355,
-0.4347017655,
0.1624836249,
-0.4730223525,
0.0463211221,
1.9422344401,
-0.1655187399,
-0.0214942454,
-1.167972886],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00050807],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5618252338,
0.1127486321,
0.9704193559,
2.0706148728,
-0.5538467219,
0.3277593241,
-0.4398245697,
0.1374380268,
0.287391668,
0.3263689549,
-1.1763863748,
0.7402983636,
0.6796965659,
-0.8935141607,
-1.7376324536,
-0.0156039583,
-0.0435006162,
-0.4650945387,
-0.7118704021,
-0.1790251197,
0.0401043311,
0.6616577501,
-0.2277262609,
0.7660792263,
1.2389212364,
0.4341277303,
0.1263922532,
0.1003924122,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010908842],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6575511583,
1.036990104,
0.7974192862,
-0.2361976353,
-0.267138352,
-0.5735992177,
0.4386448032,
0.1303490525,
0.1543832169,
0.9861230401,
1.431926522,
0.3793818068,
-0.7618271799,
0.2143420855,
0.2787455991,
0.3071839522,
-0.638292877,
0.1300432022,
0.1342119299,
0.7620465819,
-0.3982082901,
-0.8328766986,
0.0884932965,
0.7964553142,
-0.1225136216,
0.1265559308,
1.63904941,
1.1313874562,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077441335],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0707095201,
-0.5851405071,
-1.5863773804,
-1.2106282719,
1.2161645668,
2.6273511081,
-1.2460920445,
0.791340336,
-0.1012905412,
0.0979984497,
0.4342089646,
-0.7283433289,
0.0387775171,
-1.9478505322,
0.8084459177,
1.7722730138,
1.4645786128,
-0.6688238767,
0.0971631677,
0.1230939376,
0.3193881179,
0.9107161657,
0.2715206431,
1.0010284982,
-0.1995259033,
-0.1366105232,
0.1168836551,
-0.0509351533,
-0.32776902],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00069350004],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0896977952,
-0.4205997549,
-0.7450078774,
-0.5546650119,
-0.3927742155,
-0.9173619994,
-0.1458645934,
-0.3631265996,
-0.4802285252,
0.6347974999,
-0.59090902,
0.249176692,
1.2870359691,
-0.3843676528,
-0.7054022345,
0.6159225843,
0.4120555153,
-2.4112156492,
1.126460467,
0.0751751116,
-0.0175055351,
0.0650813267,
0.3419992817,
0.0145452319,
-0.0507365388,
-0.6846982653,
-0.0702395558,
-0.1651406748,
0.2056731977],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006053448],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.411215724,
-0.7317565032,
1.544833492,
-0.1029172302,
-0.0453691782,
0.5413959242,
-0.8216076098,
0.5156135304,
1.636380336,
-0.6538640096,
-1.9255170354,
0.589973037,
0.5454825884,
-1.6943051841,
-1.7836441573,
-0.01450281,
-0.0462320577,
0.0753009621,
0.5234854737,
-0.7008728542,
-0.254002257,
0.8917043229,
0.2802110002,
1.1798386276,
1.3312104295,
1.7293316493,
-0.2632121582,
-0.7127004441,
0.0565857418],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00040006638],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5588538843,
0.1174857755,
0.3690558958,
0.8520461037,
-0.3316524169,
-0.4655287422,
0.0376437297,
-0.0431712479,
-0.255951492,
0.1913212327,
1.4578874636,
0.9646397672,
0.0121816676,
0.5198438528,
0.2705254651,
0.3729842843,
-0.7573176836,
0.4319881545,
-0.3395344289,
-0.0835619613,
0.1643126012,
0.3726334651,
-0.1475352144,
0.8859180719,
1.0450336708,
-0.7484258185,
0.0264878878,
0.0795726514,
0.3270506659],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008761883],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1559611689,
-0.9372394121,
-0.2510950874,
0.8576627247,
2.8705083835,
2.2563666688,
-1.0068768979,
1.3446818574,
-0.7007803584,
-0.1401316329,
-1.2247278039,
0.0471235697,
-0.1662355177,
0.2970077227,
-1.5343828665,
0.8329301219,
-0.8486660142,
0.1912195349,
-1.1323037879,
0.6850248045,
0.3678929193,
-0.3621413382,
0.0401633565,
1.6857582286,
-0.632981668,
-0.4970025875,
0.1849215003,
-0.7253580664,
0.420908071],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014442205],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4902297381,
-0.5842227651,
0.637261386,
0.6015890385,
-1.2713072415,
-0.5064468764,
-0.4563589685,
-0.0549763363,
-0.3685935726,
0.5796657626,
-0.5368751578,
-0.1700133852,
-0.4834387234,
-0.0547976993,
0.3908897503,
-1.7483475809,
0.2029550077,
1.6313185842,
-1.6904565428,
-0.3954509704,
-0.1741860481,
-0.1446264335,
-0.1793477316,
1.4736280063,
0.7257075652,
-0.5546400015,
0.1072305306,
0.2118958185,
1.0503175049],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017440319],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0319392911,
0.0149457943,
-0.9986660098,
0.4421186739,
0.1514611829,
-1.0358277246,
0.4605973713,
-0.3888879489,
0.277987906,
0.1178557911,
-0.8318591048,
0.4322606266,
0.036635714,
0.4087806335,
-0.5370164417,
-0.6676292621,
-0.1084554337,
-0.9615464891,
0.1653415343,
-0.2880104038,
-0.0291788309,
0.1903297064,
0.1151646189,
0.1626397008,
0.4268569945,
0.7752085047,
-0.2081524719,
-0.2168538958,
-0.1664819783],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015468001],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4723317054,
0.0724084806,
0.5604367623,
1.8650813115,
0.168185066,
1.3118975241,
-0.3387728645,
0.5138387325,
-0.1249798299,
0.3134646686,
0.1131751224,
0.2384861053,
-1.0212088244,
0.116046124,
0.2685107339,
-1.3837184033,
1.385234693,
-2.9148858418,
-2.8457952912,
-0.4702360814,
0.0768713085,
0.6110331278,
0.1692430326,
-1.0653347561,
0.4641410035,
0.3871416947,
0.1753406238,
0.0368911406,
-0.2594940826],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00083473325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7542945397,
0.1612159187,
0.5180938597,
-0.9582453021,
1.4790239027,
0.6266637141,
0.4522827616,
0.2933819166,
-0.3494476936,
-0.6439761095,
0.6058469671,
0.2791688987,
-1.0731604071,
0.4597558512,
-0.604453898,
-0.6129868312,
-0.017803225,
-1.6203081242,
-1.0244306616,
-0.7064611605,
-0.2996163329,
-0.689239782,
-0.9869086327,
-2.7077359513,
0.821645884,
0.8565371983,
-0.3348592664,
-0.2042130228,
0.0845218177],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030735135],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7049736918,
0.35312852,
0.7671032178,
0.6759360428,
0.3753867862,
0.6202581447,
-0.0357644114,
0.567795256,
-0.6765808766,
-0.3644161697,
-1.3895085103,
0.2353431378,
1.7204183615,
0.1029895545,
2.0078290513,
0.1576353606,
-0.3675015577,
0.5175095102,
0.8265392911,
0.7475970856,
0.3002900942,
0.5500320219,
-0.4343943564,
-2.1527368509,
1.070349674,
0.0069910798,
0.5689289585,
-0.0296428432,
0.7414421834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044062734],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9928438083,
-0.3074703626,
-0.4387675279,
-0.0076863775,
-0.1608767071,
0.184114085,
-0.5077999616,
0.1691650346,
0.7818735673,
0.1633049049,
0.3270565757,
0.5163371795,
-0.5164663294,
0.2408250422,
-0.0424803327,
0.9137774311,
-1.0475969471,
0.3530976773,
0.5801200674,
-0.1949658673,
-0.3490771298,
-1.0680316193,
0.6960977853,
0.2641009782,
-1.1655435457,
0.439429852,
-0.1402777099,
-0.1515148421,
0.0436749302],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006451905],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0578195901,
-0.575074491,
-0.3189590282,
-0.268096867,
-0.830705253,
-0.454425485,
-0.6689443969,
-0.1131706708,
0.3411285942,
0.5042442773,
-1.1979347521,
0.3626864003,
0.4882296747,
-0.3977407687,
-0.3079223901,
-2.1371201192,
0.118248493,
1.3554963388,
-0.9356261595,
-0.8304769,
-0.2420545734,
0.4448419932,
0.2483366678,
0.0157058332,
-0.1164272042,
0.4703807929,
0.0779936829,
-0.1388586041,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039836764],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6263687586,
0.724499737,
1.1183474582,
-0.4323033053,
0.0741741483,
-0.1216639116,
0.3937531508,
0.5268451864,
-0.4146318198,
-1.1375607121,
0.1854954919,
0.8109479319,
-0.5366031504,
0.2782662001,
-2.2224522592,
0.767279862,
-0.964622177,
0.1305880652,
-1.2922169333,
-0.517307703,
-0.2237510602,
-0.8587999166,
-0.5151962165,
-0.0717081428,
1.2803897568,
-1.6131989364,
-0.2558186676,
-0.04492675,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003426671],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.1336719669,
-2.5055911607,
0.7562339212,
-0.1550321291,
1.6325073173,
-1.2876177171,
-1.3707936032,
0.832796846,
0.2926009375,
-1.2109478003,
0.1754872954,
0.4782500567,
-1.0382559282,
0.6497791344,
-0.5234035139,
0.7631536139,
-0.7010487367,
1.2974097008,
-0.5822929007,
1.6131096779,
0.9697442873,
0.2151211393,
-0.2421347097,
1.3192555921,
1.3019974709,
0.1395400135,
-0.2187520128,
-2.0402118077,
0.989877048],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039064884],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6039499544,
-0.0931298388,
0.158318009,
-0.020799503,
-0.4970997641,
-0.894003509,
0.0726622129,
-0.1824142495,
0.2530586299,
-0.1746412747,
-0.2955919292,
-0.1123493995,
-0.5840231921,
0.4307992595,
1.2272275823,
0.2748226705,
-0.2521697458,
-0.6569126629,
0.1935907175,
-0.0091577425,
-0.2876791899,
-1.056697178,
0.1362400103,
0.6924044893,
0.2567775978,
1.7416995698,
-0.2524004771,
0.0474792726,
0.5266335895],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00058567524],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.1387492332,
-2.8851775477,
0.3486861608,
3.4726198278,
2.6942842548,
-2.3408420785,
-2.4500740372,
0.7478028819,
-1.1784192207,
0.6882408333,
-0.1638521973,
0.95062783,
0.8393121316,
1.0123853835,
0.9825627661,
-0.6808462888,
1.4084853234,
-1.066069669,
0.7919240824,
-0.3078253432,
0.0171125756,
-0.3982744434,
-4.1914609776,
1.5247763639,
-0.3080952762,
0.7120137256,
2.7948687725,
-5.5255906984,
-0.1712180933],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017678738],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0143942635,
0.5025992031,
-0.5630567183,
-0.3454150182,
0.9524682506,
-0.695898878,
1.0054272358,
-0.1770377623,
-0.2345891032,
-0.7422233997,
-0.5306297787,
0.347439493,
0.9400099467,
-1.1872672825,
-0.5016563619,
0.127046166,
0.5031444021,
-0.3361007072,
-0.4289550975,
0.2708840215,
-0.175993095,
-0.3734942872,
0.460603943,
0.8837891309,
-1.5112665562,
0.2939166584,
0.7775297581,
0.6996890649,
0.4888846102],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00054609776],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1043813972,
0.5864508604,
-0.1254817538,
-0.3417184329,
0.6536675386,
-0.4116995515,
0.7964755075,
-0.3481208708,
-0.0559152265,
-0.0134244904,
-1.1902392738,
0.6081089095,
1.540949051,
-0.256456187,
-0.2208334544,
-0.2727597238,
-0.6242407153,
-0.8453828553,
0.7710762347,
-0.1845915303,
-0.2073273854,
-0.5607051696,
0.305047383,
-1.1454569206,
-1.5893800766,
0.2836363788,
-1.1065693043,
0.3762936021,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039818883],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.9219628925,
-3.7995636025,
0.4361685558,
-0.9201538188,
3.2213659671,
-1.4183276166,
-2.2655512947,
1.2068756724,
0.5532160246,
-1.3844280151,
0.576426359,
0.9209555932,
-0.6311449577,
0.9052075795,
0.7085286554,
0.4287739982,
-0.2964685543,
-0.6759677039,
-1.965905721,
2.2823728911,
0.6845671715,
-1.3376057098,
-0.0397629454,
-2.7092124095,
0.3426941488,
0.7104768925,
0.449047537,
-2.9283833878,
0.8224140127],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011125207],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7342765514,
-0.0063370992,
1.3814568673,
1.1100281436,
0.873198976,
-0.2833245982,
-0.0639213578,
0.1218674008,
1.1579004138,
-0.7168670187,
-0.2829166475,
-1.902027701,
2.0364051501,
1.0655347301,
-1.6809975201,
-1.1604220337,
1.2724420246,
-0.4766745795,
1.3323134113,
0.6449978482,
-0.8284462041,
-2.0716793923,
0.2153609796,
-0.3547524937,
0.8612269489,
-1.6867374455,
0.6952963965,
0.5165602642,
0.3438648652],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000600785],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6919169233,
0.0310519511,
1.7585188534,
0.3878435435,
-1.0876663499,
1.9524079903,
-1.8581387925,
-1.5770185833,
-0.2391756831,
-0.225895851,
-0.5330168541,
0.5805263321,
-0.7154135933,
-0.7720920569,
-2.152879155,
-2.0608733584,
0.6703863116,
2.7876157596,
0.3576906475,
0.157362692,
-2.0248921169,
0.941093082,
-0.870511758,
1.1584668285,
0.3848309211,
-0.514816486,
0.3188737957,
0.3863853136,
0.8224140127],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [7.426739e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2804076332,
0.3438625807,
0.6583478916,
-0.2776269879,
0.0460798139,
-0.6136637973,
1.154572924,
-0.1491042551,
-0.9166161723,
-0.5244545861,
1.4517949651,
1.1227323626,
0.7032355538,
0.3150732983,
-0.7573793705,
0.346444892,
-0.9022790195,
-0.0287825495,
-0.6890075692,
0.249642482,
0.2418456504,
0.308498873,
0.2102480119,
0.9346032713,
0.2541198159,
0.3108028729,
-0.1836770341,
0.0908270347,
0.9441992717],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005415678],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6066988884,
-0.316915444,
0.0957078719,
-1.1656790399,
-0.437414661,
-0.269508615,
-0.3155554773,
0.062377348,
1.0483156223,
-0.8006756447,
1.4379546579,
1.1302952407,
-0.1142546643,
0.4597705138,
1.6034480207,
-0.407011172,
-0.3467567599,
0.4258638117,
0.7421465575,
-0.0569536492,
0.3174448901,
1.0327840302,
-0.3118527786,
-0.3891668417,
1.0148495567,
0.3404508406,
0.0417704463,
0.0177413667,
0.2126676486],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039365888],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0332058645,
0.5484151876,
0.1803970923,
-0.445574813,
0.3739921627,
-0.7483119677,
0.8348015566,
-0.1550730579,
-0.0908526939,
-0.3699982002,
-0.8548933259,
0.2754061283,
0.2999321366,
0.0662617037,
-0.4287716988,
-0.1692010635,
-0.4425036247,
-0.9880695756,
-0.1633239696,
-0.0390283096,
-0.3571212838,
-0.7646130635,
0.1115577677,
-0.1479990257,
-0.9207781269,
0.3034137299,
0.6109299846,
0.3141783197,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006169677],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0357803801,
-0.0305849975,
-0.7039489911,
0.2654270721,
-0.0373822878,
-0.8471620613,
0.1720134386,
-0.2756980327,
0.4507579915,
0.0663154578,
-0.8026947998,
0.4895238621,
0.2985171886,
0.237637024,
0.0211582235,
-0.0873415487,
-0.3968986231,
-0.9844256264,
0.2479706619,
-0.2677969642,
-0.4101096314,
-1.0044069808,
0.5614680713,
-0.1847050405,
-0.511177941,
0.4218520903,
-0.1748314889,
-0.181776123,
-0.9788406928],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012376308],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0040785585,
0.473945099,
0.2217685975,
-0.4949959394,
0.301038978,
-0.5841033398,
0.7042267824,
0.0022100116,
-0.2098921467,
-0.1975951627,
0.7821416633,
0.5282611698,
-0.7284098916,
0.4614166741,
-1.0999791606,
0.0482841928,
-0.604035209,
-0.3280640693,
0.1315991114,
-0.1033700877,
-0.2848210116,
-0.6726760361,
0.1476823455,
-0.019708627,
-1.0753894475,
0.2537883088,
0.5863837021,
0.2813621935,
-1.1289470305],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007250011],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5461140935,
0.2831484014,
1.8399392529,
0.3280122811,
-0.7443969432,
0.3081940103,
-0.2168878444,
0.3173916461,
1.2091833671,
-0.5143809439,
-1.6195059117,
-0.2449693585,
-1.5730201963,
-0.9994312323,
-1.7937453443,
-0.7755647379,
0.6622548563,
-0.3199890119,
0.932249129,
-0.0415738821,
-0.2738531718,
-0.2474916328,
-0.4972160981,
0.6843128835,
0.5649777161,
0.8622869819,
0.1313921871,
0.4502899318,
-0.0786189661],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030976534],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5327623837,
-0.3972421596,
0.6187684991,
0.3402334375,
-0.7067551442,
0.3284373331,
-0.4811379473,
0.2067009021,
1.0425875773,
-0.3606609321,
0.2486061972,
1.5243817541,
-0.0589277644,
-0.7083002541,
-2.7867858287,
-0.5456107043,
0.3262275429,
-0.725159405,
1.6864743483,
0.052451233,
-0.5959542123,
-1.3597923042,
0.0303801809,
0.1170085839,
0.3999822018,
1.6701798388,
-0.1071084869,
0.0340550658,
0.6221401258],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036102533],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5815103589,
-0.0815612076,
0.3004429639,
0.5792632514,
-0.3743893781,
-0.1937732808,
-0.1253300473,
0.0674493317,
0.5822142713,
-0.1749627529,
-0.6480042892,
-0.1739835423,
-1.4349960293,
0.2483232817,
0.202543425,
-0.5756109563,
0.4441341047,
-1.154081916,
-0.1686132735,
-0.2669257099,
-0.2908317685,
-0.7023279136,
0.084022412,
0.0972040781,
0.6357944066,
0.6236936542,
-0.049123241,
0.0399853583,
0.1226782527],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007661879],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9909020806,
-0.1390187963,
-0.8049345988,
0.1926562054,
0.0921478544,
-0.4355836491,
0.122978219,
-0.1298167092,
0.2761479735,
0.18697999,
0.639174012,
1.0867968439,
0.0682852791,
0.428481157,
-0.9548376063,
-0.0408237549,
-0.5692928975,
-0.4412603223,
0.6687081699,
-0.1995790816,
-0.2717843149,
-0.6758457321,
0.377583871,
-0.6399082519,
-0.3773395078,
0.5760218086,
-0.1968580863,
-0.2181033675,
0.226203858],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00065502524],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5066939805,
-0.4786439106,
-0.2857634739,
1.0222134693,
0.3482033203,
-0.2997746169,
1.0299945408,
-0.1138613918,
-0.8009059598,
-0.460123048,
1.0285836931,
-0.1511643008,
-0.254806675,
-0.2822606286,
1.7047181479,
-0.634598298,
1.1731125758,
2.1826610379,
3.2926995639,
1.6362937917,
0.830919212,
1.4132748782,
1.0359597505,
-0.7121564718,
-0.0735001104,
0.6176443749,
0.1568549613,
0.7349212355,
1.4536487723],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00087195635],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0880167559,
-0.3126243731,
0.7266159576,
-0.2995409483,
-0.6432481946,
0.6837839876,
0.2397500691,
0.3538712556,
0.8477261341,
-0.7227673875,
0.0288556317,
0.4199732205,
-1.1885866973,
-0.4367707152,
-2.031111402,
0.2986183899,
-0.441731883,
0.3830228109,
0.3692876599,
0.2460428111,
-0.0032821564,
-0.2287171318,
0.9861283854,
1.2274253227,
-1.3438204161,
0.5902593929,
-0.1030971577,
0.0667736444,
1.1345428378],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017783046],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5452848371,
-0.8318203229,
0.645597424,
-0.2110047673,
-1.2422522826,
0.115636383,
-0.9283508766,
0.2129122183,
0.3045166883,
0.3009141828,
-0.8176946449,
-0.9844350787,
-1.5441513316,
-0.5498919147,
-0.2741038923,
0.5918596634,
1.210907042,
-2.0849377432,
0.6588211739,
0.1884270012,
0.1085102979,
0.1363230883,
-0.0643310255,
0.1008552986,
0.4198292299,
-0.4560211228,
0.0901300435,
0.1293773907,
0.9200562749],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000747025],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3364505151,
1.0916950702,
-0.6369608053,
0.5278748808,
0.1324194952,
-0.5113516661,
0.2480443608,
0.5446734781,
-0.5717274737,
0.0617546379,
-1.6276204457,
0.0168873821,
0.392426216,
1.0013253388,
0.7247900973,
-0.0508734918,
-0.2134143149,
0.3176639228,
0.8962665854,
-0.0108439354,
0.1655241091,
0.5174368252,
-0.004071275,
-1.0244190181,
-0.9048752713,
-0.710033326,
0.7547642452,
0.4351944677,
-0.1231026233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000364393],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0358461003,
0.5148642467,
0.1711910503,
-0.4324547166,
0.2881815469,
-0.8288278989,
0.8086557637,
-0.1393104594,
0.0196472539,
-0.3431252524,
-1.0311864388,
-0.1700410174,
-0.5151326919,
0.2261750546,
-0.3835328363,
-0.0632411168,
-0.4503137069,
-0.7671135753,
-0.0719073686,
-0.0942133317,
-0.3758298321,
-0.887856304,
0.1266275288,
-0.0860075325,
-0.9453018689,
0.2971757428,
0.5886706533,
0.3111018366,
-0.9295224856],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041016936],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4839669007,
-0.3505200005,
0.4627546545,
0.4267312392,
-0.7397882503,
-0.3057937672,
-0.2641213399,
0.0023385043,
0.535981194,
-0.1255520058,
-0.745441051,
-0.3029525101,
-0.4429279454,
0.140521077,
1.6654350282,
0.9074958465,
-0.7409236028,
0.301238492,
-0.3500114051,
0.2530373718,
0.0742696319,
-0.2920706694,
-0.1705967405,
0.0733060842,
0.2373820737,
0.8260544828,
-0.1026993402,
0.1593455998,
1.0424671593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043180585],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2084298866,
-0.3861092843,
1.0890715984,
-1.6740862536,
-0.514264535,
-0.950326892,
-0.3307763289,
-0.0760551355,
-2.05776465,
0.7206742552,
-0.7000112702,
-1.2289861032,
0.0785238561,
-0.3680954456,
-0.0018628951,
-0.1295097395,
0.2598202862,
-0.0940239546,
-0.8937678174,
-0.3947860171,
-0.4433785991,
-1.0725275943,
0.2985504777,
0.481893131,
-1.0114393214,
-1.411452314,
0.3032119593,
0.4891770197,
-0.4870420574],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011411309],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4549097949,
-1.1963264399,
0.1058471676,
-0.9321730394,
-1.1947992508,
-0.2533117393,
-0.4745026888,
-0.139965004,
-2.0283445564,
1.261329373,
1.1382515652,
0.2337987214,
1.4245563139,
-0.2381746241,
-0.0917682554,
0.0175608373,
0.0726914706,
0.3946512939,
0.1920593373,
0.4954689663,
-0.3168654029,
-1.4193581318,
-0.1969700473,
-0.0316025174,
0.1037940912,
-1.0593721422,
-0.0559256798,
0.2309363472,
1.401918103],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023496151],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1524371001,
1.7309575157,
-1.1174125692,
0.6283713174,
0.2449099257,
-0.0042981972,
0.0639644681,
1.2748276391,
-1.56421364,
-1.1762056936,
0.1121845566,
0.4421443846,
-0.4391356834,
0.3480778009,
-0.7537043155,
0.0950180096,
1.9016523612,
1.3600488181,
1.4463634416,
-0.6053259674,
0.2915232578,
-0.0279716221,
-0.8032568746,
0.1668443215,
2.2782219235,
-0.5142575299,
-2.3689833299,
-0.6165271721,
0.2970817551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0019234419],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9811656028,
0.1691975767,
-0.70081208,
0.954566268,
0.0844497123,
-1.0605279525,
0.473012373,
-0.3614363068,
-0.0609086968,
0.2558516896,
-0.154011106,
0.7385814547,
0.5358229995,
0.5610564409,
0.4111214587,
-0.3139474884,
-0.4428709499,
-0.9002313807,
-0.7590715238,
-0.28130221,
-0.1013913363,
-0.2315087069,
0.4484869063,
0.5995720399,
-0.0048765569,
-1.7267015123,
-0.0108228939,
-0.1145331893,
0.1113896847],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00082936883],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6328706476,
-0.2134689275,
-0.4664242713,
-0.6035329486,
1.2467247282,
2.649914094,
-0.7898541962,
0.6613757503,
1.4143221143,
-0.4110747193,
0.8676055842,
-2.4900857834,
1.8153958285,
1.6498071422,
0.8291340041,
0.9049414827,
-0.2320603552,
0.7273090935,
-0.04883781,
0.1245133884,
-0.1465042201,
-0.355909545,
-0.1134407108,
1.7034022743,
0.6955589163,
2.1545314568,
-0.2268039581,
0.0200835788,
0.353278955],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006003976],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.4307510694,
0.0636726614,
0.2301365152,
-1.7841814216,
-0.7369688896,
-0.4156388248,
0.0361774771,
-1.1273989365,
2.4455517336,
-3.1719767183,
0.7797993718,
-2.2971420541,
1.9388748043,
-0.9952436503,
0.9116331842,
1.8472605053,
1.8773009515,
2.3218945375,
-2.0354166465,
-1.077633007,
1.8524350403,
-0.5441500645,
-1.384886196,
-0.4331545476,
1.1275180775,
-0.520116207,
1.858219701,
-1.2240764868,
1.3697783911],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008085668],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3420985337,
-0.8647595885,
1.0056992284,
-1.4920773103,
0.0171147609,
0.2583715878,
-0.5542768595,
0.0719516876,
-2.0123394021,
1.1370602098,
0.1936102014,
-1.3355137032,
-0.5147383598,
-0.4021883385,
-0.1121093265,
-0.7546595581,
0.5012799437,
1.2336889218,
1.6514721197,
0.2866562523,
-0.1241077545,
-0.0549413784,
-0.2057456831,
0.2948107255,
0.7726373677,
0.1682575221,
-0.3314968282,
-0.4615010675,
0.6375391331],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036534667],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5448087099,
0.0773668423,
0.1430253329,
0.8391811867,
-0.2256582596,
-0.6942139456,
0.3110499527,
-0.2321979457,
-0.112355845,
-0.0285734819,
-0.2812193562,
0.4606352114,
0.5395646544,
0.3179255082,
0.947976583,
0.0325916369,
-0.5098914024,
-0.2169948003,
-0.5006729247,
0.0847335095,
0.1165496158,
0.1563187247,
-0.3010040931,
0.6880174097,
1.295182428,
-0.7002409344,
-0.0025228199,
0.1245945581,
0.7685898237],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00091668963],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1135217662,
-0.8837824356,
-0.4806710511,
-1.1812273948,
-0.8948120378,
-0.2530227834,
-0.9615006005,
-0.0940655007,
-1.3558612969,
1.4991960495,
0.6137668148,
0.3804644776,
1.457442167,
-0.5218304511,
-0.963628821,
-0.3624702093,
0.1170624253,
0.4167533873,
0.1755758904,
-0.4326162077,
-0.1415632146,
0.3060670235,
0.3270925609,
-0.655845015,
-0.4203271755,
-0.3651652064,
0.0540908007,
-0.1655938095,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021272898],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1956181369,
1.5498227944,
-1.1370057278,
3.6638560519,
0.7050745201,
-0.4523627258,
0.5139345987,
0.1096706267,
-1.8400808037,
0.6231657188,
-0.0166142748,
-0.2760268897,
1.2861642043,
-2.8472713189,
0.2953450752,
0.7141156337,
3.1083466855,
1.030412827,
0.7226966061,
0.2154189642,
-0.2628233844,
-0.5680108793,
0.428861073,
-0.38128448,
-1.1491840991,
0.3665578269,
-0.2871523015,
-0.2189738845,
-0.1174843597],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011282861],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3270186524,
0.2601197685,
1.0235870488,
0.6575789704,
0.2255111384,
0.8552930384,
1.1337882432,
-0.0731942405,
0.0257910547,
-0.5567418224,
-2.0561643724,
-0.2232994486,
0.017214516,
-0.5689774311,
-0.7440936685,
-0.8045563662,
-0.0787019905,
-0.3474763153,
2.0410082333,
0.611028906,
-0.7390483492,
-1.974857138,
0.0883943786,
-1.9291935219,
0.9611005065,
-1.5831893648,
-0.2572055669,
-0.4346991074,
1.0917474003],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077566504],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9808835948,
-0.4274419715,
-0.3315574336,
0.0960027953,
-0.5272529562,
-0.1495833407,
-0.6052594618,
0.0851990908,
1.5327440276,
-0.1569199453,
-1.2759879379,
-0.3388072518,
-1.1930265559,
0.0349533439,
0.7661209992,
0.2292087076,
-0.5014442118,
0.5172512107,
-0.1221783557,
-0.2694287198,
0.3050352674,
1.0176458661,
0.2065612123,
1.1274926191,
-0.2601043397,
0.3241668337,
-0.0118958569,
-0.1014045924,
0.2986523063],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043401122],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3383101752,
-0.8011299565,
0.5258543003,
0.3376358735,
-1.1046722063,
-0.2038822526,
-0.2242231047,
-0.0009192895,
1.0642878791,
-0.505070204,
-0.7944045228,
0.4668736736,
-0.1797478683,
-0.4522844247,
-0.2778675913,
-0.0873157929,
0.1886398979,
-0.6380772522,
0.4695690541,
0.6432276664,
-0.0902133792,
-0.8243560348,
-0.2797247653,
0.7869764779,
0.0575579909,
1.8844374288,
-0.221138005,
0.209826436,
1.3574707128],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000364393],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6273707373,
-0.2469971958,
0.5785351833,
-0.5210102306,
-0.9308052645,
-0.6279856654,
-0.485855191,
0.0038490889,
1.694614637,
-0.9346539526,
-0.5054641157,
0.4368031287,
-0.5988799056,
-0.0317757057,
1.4528808481,
-0.473700004,
-0.1242680446,
0.3212649977,
0.6951723742,
-0.2108479886,
-0.0270583412,
0.2180136991,
-0.0392738465,
0.6506470536,
0.9275533586,
-1.4132998504,
0.2141500208,
0.1174859306,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014618337],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0488444194,
-0.7071629075,
-0.2517260787,
-0.6015338529,
-0.9985620446,
-0.4662829161,
-0.9320436937,
0.0470787047,
0.0408192636,
0.8438958278,
0.7315104893,
-0.4424087973,
-1.1767580098,
-0.0197144123,
-0.4435098615,
1.5365285826,
-0.002899815,
-0.6091662799,
0.87404974,
-0.1196765152,
0.5105866754,
1.4366156413,
0.2589803824,
0.1257928905,
-0.4483864867,
-0.2261267135,
-0.0122063564,
-0.174362195,
0.019307669],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008354783],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5638866592,
-1.4594075571,
-0.2321155638,
-1.3035212199,
0.0691040013,
3.4033478863,
-1.650859463,
0.9187032116,
-0.531742103,
0.8871279878,
-1.1920891976,
-0.4199530326,
0.1776777033,
-1.3427000767,
-2.1727805904,
-1.0934018853,
1.0435074601,
-0.0062660591,
1.0981496632,
0.1566974527,
-0.5675392826,
-1.2712478639,
-0.2223867866,
1.6967643803,
0.87924866,
-0.4435098745,
0.1539129366,
0.1797756006,
1.1551479215],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002641976],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0071691898,
-0.7294062782,
0.0240930321,
-0.35091214,
-1.0517058786,
0.0495874594,
-1.1168184489,
0.1489548042,
0.0741695763,
0.8512247492,
0.3059805742,
0.5785295041,
0.3975552263,
-0.276282933,
-0.0331414126,
-0.6020964903,
-0.8474692736,
2.384598941,
-0.8524588029,
-0.673284615,
-0.3799573206,
-0.3818185671,
0.574038139,
-0.5994265991,
-1.3462750599,
1.0023037644,
0.0058388106,
-0.1218090917,
0.3106242816],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000111460686],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8536865496,
-0.1982734917,
-0.2234548478,
-2.0284223325,
1.7125351418,
2.301018003,
-0.3026400346,
0.4461465346,
-0.8499626996,
0.7874918832,
-0.1022062217,
-0.9857264047,
0.1129601366,
-0.4188719778,
0.46371066,
1.8078959439,
-0.6795049672,
-1.2925939501,
0.6761139875,
-0.439696695,
-0.0416428042,
-0.4157448119,
0.3423557645,
1.6368108767,
-0.1361743541,
-1.3606583578,
-2.1798759489,
1.5665449448,
-0.6750780834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020998716],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5173283975,
-0.9564930595,
0.0424987645,
-1.3742487305,
-1.0650961806,
-0.5479062822,
-0.3135794332,
-0.2115792647,
0.4507101478,
-0.4039675125,
-0.8448304254,
0.7224981471,
1.2142857947,
-0.3227560285,
1.0160329152,
-2.2885653805,
0.0919849366,
1.5813674366,
0.2638076756,
0.0157711398,
-0.3903150858,
-0.7741798676,
-0.4305047672,
-0.1175355132,
0.8609074191,
0.0176292416,
0.0299605722,
0.1869511824,
1.2174632575],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0001746118],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.193774025,
0.741259049,
-1.5767597965,
-0.3992583402,
1.4745885251,
-1.3927936969,
1.2903535059,
-0.2953177252,
-0.1190980553,
-1.4273542578,
-0.7473773964,
-1.4671634985,
-2.0247401341,
-2.2032736907,
-0.9593992104,
0.7020514222,
2.0409476123,
1.0907795418,
-1.3755989735,
-0.4228884447,
0.2133582938,
0.7132303631,
0.0864846674,
0.7226979257,
-2.8013102674,
0.4984702069,
0.6568095636,
1.2446764239,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008112192],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6086837335,
-0.2568129518,
0.7142846623,
-0.4288792243,
-1.1501818217,
-0.8689000798,
-0.4994560769,
-0.0049559664,
1.7180863609,
-0.9245976503,
-0.1112779401,
0.3929140266,
-1.1082688021,
0.0846350686,
1.4599776314,
-0.6256405541,
0.1215946428,
0.1758826406,
0.4494436784,
-0.268322404,
0.0146457129,
0.3071055402,
0.0828316441,
1.5228802776,
0.7653910041,
-1.4784824474,
0.2092698172,
0.131679805,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013223588],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9676365227,
-0.3327269275,
-0.7343954633,
0.0838313247,
-0.1932652273,
-0.432153672,
-0.0801707375,
-0.0299413692,
0.9382306131,
-0.0099789847,
0.2329897881,
0.4132978698,
-1.5283301731,
0.5814313797,
-0.8908768731,
-0.178384112,
-0.432478007,
0.1646338772,
0.9430692363,
-0.2887496869,
-0.1725335162,
-0.4332610828,
0.2540276406,
-0.6077809591,
-0.2132629779,
-0.1825566149,
-0.1177201843,
-0.1929242333,
0.477068427],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011811256],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7565354692,
-0.6247496704,
0.3334188953,
-1.0409072922,
-1.0518884436,
-0.4555339589,
-0.8147891174,
-0.1559057776,
-1.6549520577,
1.2330763891,
-0.7078582361,
-0.5935502932,
1.4027707604,
-0.5645901764,
0.7664151801,
-0.0942947237,
0.2316793255,
0.0021385593,
-0.0781526634,
-0.2962244456,
-0.5302798334,
-1.0553326729,
0.1737163924,
-0.2623124926,
0.4247097723,
-0.7907354239,
0.1033838769,
0.1018095819,
0.2056731977],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021111965],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5902424409,
-0.2182239284,
0.7305397214,
-0.4192862606,
-0.9016109504,
-0.4254628404,
-0.6199044378,
0.0373336985,
2.576532246,
-1.1228011707,
2.2781009649,
-1.1988015566,
1.11848704,
1.6095259548,
-0.1621666041,
-0.3609072234,
0.4937679915,
1.1291542569,
0.7014629182,
-0.2171474667,
-0.1330478712,
0.1805675857,
-0.0174399865,
0.8091252414,
0.7785347558,
-1.5586802586,
0.1383781177,
0.0788909151,
-0.2402067958],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013509095],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1600823857,
0.8418079431,
0.9828358713,
1.599813064,
0.2078458347,
-0.2487580039,
1.0210766617,
-0.1440165799,
-1.5893522658,
0.3131016581,
-0.3351597482,
0.2438752668,
1.1314580235,
0.1787988808,
0.437128528,
0.2861732995,
-0.458968172,
-0.7783518436,
0.0517785403,
0.2432878897,
-0.4299511431,
-1.4984093601,
0.5781510987,
0.5447324122,
-1.4251533763,
-1.0372570365,
0.3039600233,
0.5731566441,
0.6336246173],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043216348],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1287730448,
0.7106307373,
0.8616659547,
2.2816784559,
0.9986298453,
0.056951213,
0.8823973257,
-0.2102997375,
-1.3700700126,
0.8593708911,
-1.3443588641,
-0.0683747102,
0.7441580558,
-0.4354287249,
-1.9118440497,
0.0210370092,
-0.5835004745,
-0.6073282386,
-1.293252749,
-0.0064322351,
0.2370984598,
1.1051590546,
-0.3870504558,
0.018199807,
-0.6649429675,
0.1132590633,
0.0311385447,
-0.059488994,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012961924],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0229910772,
-1.0392040089,
0.251719675,
-0.4097516981,
-1.142483095,
0.9952644987,
-1.6890548606,
0.3691937493,
1.4174273973,
0.2938457596,
-2.1363606609,
0.0475382348,
0.7618006062,
-1.9170855061,
-1.8962407479,
0.9378965047,
0.5415964891,
-1.1721966436,
1.3470123292,
0.1019421836,
0.3643794336,
1.6438410649,
0.0928863169,
0.1899624878,
-0.2514660616,
0.0620151473,
0.2151637375,
-0.0771544296,
0.3390245406],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00056117773],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7219620956,
1.0322019884,
0.5412304702,
-0.8217638751,
-0.6382926913,
-1.2173230545,
0.1389183822,
0.5473441314,
-0.4550350147,
-0.7568044634,
-0.0826553507,
1.0055790322,
1.0725661448,
0.452098408,
0.1659325806,
0.5158110023,
-0.1767643698,
-0.7772813039,
-1.117023351,
-0.0329597004,
0.0630126315,
0.0520551915,
0.1166154428,
1.6609747564,
-0.4122588842,
1.5188378806,
0.2797161675,
0.3873414398,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006057024],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5418979667,
-0.1673017822,
0.5087143821,
0.0063486524,
-0.5552530576,
-0.1651385663,
-0.3117606788,
0.1184766409,
0.0723231298,
-0.0498310346,
1.8406395991,
1.0666609979,
0.0498906014,
0.3388923397,
0.8838449227,
0.4245927698,
-0.3543968763,
-0.5052962978,
-0.2499650979,
0.0095639067,
-0.1026978963,
-0.4739732099,
0.2818602635,
0.4244334399,
-0.25231884,
1.6175048014,
-0.1456956033,
0.0453300189,
0.4828145808],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044056773],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5691350802,
0.7142174866,
0.4142469245,
-0.5177357535,
0.8588052665,
0.89396609,
0.5480259747,
0.5151507467,
-0.1141327549,
-0.7143044852,
-0.4900828165,
-0.1047797882,
-0.9529955908,
0.5075491896,
1.0068683504,
-1.7260517445,
1.0328667955,
-2.0637556185,
-0.4614677325,
-0.0944410305,
-0.2936916867,
-0.5455414021,
-0.3889820527,
-0.6587088413,
0.9500986467,
-0.5896360216,
-0.2666774968,
-0.5533685408,
-0.575115106],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00053852797],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5580223306,
-0.3868418494,
0.6718559613,
0.1652054971,
-0.8697632614,
0.0609312639,
-0.6331904799,
0.2306205325,
1.2649873824,
-0.4059749592,
-0.7948678255,
-0.1451534371,
-1.5601960423,
-0.216223769,
0.1205668312,
-0.3853272781,
0.5825560947,
-1.0433768469,
0.1326892222,
-0.1856319584,
-0.2837743018,
-0.6271988827,
0.1843153051,
0.1933404189,
0.0099150436,
2.0097317116,
-0.0855449298,
0.0517218809,
0.3658928677],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005044043],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2730629946,
0.60507892,
0.5490314165,
-1.0444116444,
0.7004806022,
-0.8975952404,
1.2958342631,
-0.501030264,
-0.1172558731,
-0.5917172199,
-0.7573776172,
0.5889391894,
0.9494132132,
-0.3876398046,
-1.290769394,
0.1563072753,
-1.122579395,
-1.2002695816,
-1.412491279,
-0.2281629087,
-0.2823578224,
-0.6865267201,
-0.1831531561,
0.0967834293,
-0.6817085636,
-0.2128197516,
-0.9473482823,
-0.1788336677,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044950843],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.4317440955,
-0.1085973414,
1.9224424877,
3.7498576256,
0.0884970123,
1.9996249443,
-1.6108174737,
-1.7334644304,
1.6457098119,
1.3790746197,
-1.1604286293,
-3.1024649239,
1.1165490382,
-0.0300788033,
-1.6050417437,
-0.2875067183,
1.5924541493,
0.9672747665,
1.897605831,
-1.4519583418,
2.4789819296,
-0.5399358043,
-0.904854973,
0.980690869,
0.307802461,
1.2665338199,
0.8574618828,
1.0649361515,
1.0288276732],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024172664],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4644806257,
-0.1490327977,
0.1091776615,
0.92147327,
-0.0387354852,
0.2953519973,
0.1018835076,
0.1090077969,
0.0286398672,
-0.0001286554,
0.8498580711,
1.0638324181,
-0.2064917538,
0.2961699472,
-0.8318748906,
-0.4696896208,
-0.1076786862,
-0.3893220263,
0.0089491344,
0.0881482332,
-0.0027010101,
-0.1154875738,
-0.3665799882,
-0.5049333234,
1.2132520003,
-0.663799082,
0.0267682947,
0.0816642658,
0.9375610605],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00089648366],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1392465291,
0.5127776217,
1.2523132681,
0.0333066604,
0.0489327285,
-0.4702741755,
0.7410813367,
-0.2254020841,
-0.4632341033,
-0.3112059872,
0.4558213826,
0.4481939319,
0.6386623231,
-0.1344023521,
1.0932077685,
-0.4399583562,
-0.0743157986,
-1.0655433476,
-0.7458742608,
0.060447195,
0.00153169,
0.2716504523,
-0.1012728055,
1.056849828,
-0.4884460795,
0.3829271574,
-0.303382594,
-0.502170996,
-0.2444287984],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011978447],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2103986904,
0.4641414204,
1.2136084711,
-0.2928632021,
0.5303890857,
0.4686352974,
0.381051273,
-0.065875484,
1.4303977033,
-1.0092390101,
-0.4308132282,
-3.0703150352,
1.4149256031,
1.3097321027,
0.8593566827,
-0.079067925,
0.0905479433,
0.9287115007,
0.9542502264,
0.1345056051,
-0.4974726401,
-0.9083371936,
-0.5613332428,
-0.25139412,
0.6944374672,
-1.4672646501,
-0.2194950067,
-0.4543310094,
-0.2652078556],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007336736],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8685478595,
-0.557627895,
-0.0465332511,
0.4175431331,
-0.8332871592,
-0.2544965266,
-0.5561216353,
0.0352487155,
1.5076378435,
-0.2089060375,
-1.122794318,
0.2266648651,
-0.284696335,
-0.1955721357,
0.7848675172,
0.4243715743,
-0.680111151,
0.3724726722,
-0.2585411422,
-0.0004122317,
0.1242634801,
0.2525358562,
0.2801839829,
-0.2244602261,
-0.7883241449,
-0.8855759019,
0.0752905178,
-0.0152698694,
0.94540739],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036123395],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3583383408,
0.2699593198,
1.5840403935,
-1.3997886731,
-0.3985300488,
-0.5633511024,
0.3739642545,
-0.0593195211,
1.3319506899,
-1.2725265562,
-0.6312117338,
-0.0059548114,
-0.8279320165,
-0.4225007032,
0.8483938887,
-0.3954889215,
-0.4958412312,
0.3949398737,
0.0229986757,
0.0685369235,
-0.0992887882,
0.2721631032,
-0.6716585277,
0.6170664347,
1.0117898251,
-1.6164993861,
0.4491534502,
-0.2626152593,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00065022707],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4289862824,
-3.4670095803,
-1.3752508481,
0.268877814,
-1.40593532,
0.8317624816,
0.9142681848,
-0.149676036,
1.3525543432,
-1.0284226855,
0.2514421002,
1.9228767068,
1.5008743852,
-0.2956232631,
-1.0092913116,
0.256650603,
-0.5763157423,
0.3929556966,
0.9423186655,
3.9532550748,
0.9214231572,
-1.616454532,
-1.7678480728,
0.3911275067,
-1.8442447097,
0.4666769873,
-0.7370638972,
0.665287816,
2.1749667943],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013634562],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5625738436,
-0.1028568349,
1.4479766532,
-0.0121648863,
-0.1562152147,
-0.1198981202,
-0.2008524981,
0.1447786217,
-1.2047822607,
0.3520305335,
-0.6688022858,
-0.7660344963,
-0.3830735459,
0.0172919447,
1.4091120754,
-1.6275209171,
0.0257522513,
1.6363989551,
-1.8374546241,
-0.5705352237,
-0.1893406763,
-0.1187706227,
-0.2053971341,
0.0047338786,
0.4381048152,
-0.5079996493,
-0.1350146842,
0.592476158,
0.353278955],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [7.5012445e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1412850836,
-0.373038263,
-1.0914091558,
-0.8346710265,
0.0896588427,
-0.4330738512,
-0.2032520681,
-0.3169199133,
-0.6833689902,
0.7382390904,
-0.9495627121,
-0.0349635581,
1.9757395099,
-0.3491287034,
0.2568713384,
1.1526907734,
-0.2470579342,
-1.4492500215,
0.8529657434,
0.1653502522,
0.5517975748,
1.6812620485,
-0.1343301111,
0.3070154609,
0.7155760285,
0.1447835072,
-0.0890196293,
-0.1852350745,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00056666136],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8172018465,
-0.54729066,
0.0422959618,
0.7442042681,
-0.2133005441,
1.5685439722,
-1.0693254465,
0.6453357218,
1.1313302076,
0.1454411213,
0.5939728924,
0.7075147737,
-0.4392248229,
-0.0082253236,
1.104052655,
0.3176843545,
-0.5457094034,
0.1031296683,
-1.767958971,
-0.2388110829,
0.5302345954,
1.6247793835,
0.2322106413,
-2.7934431218,
-0.9801487875,
-0.9933032674,
0.2942417244,
-0.0879963342,
0.7414421834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003118217],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6517805135,
0.1863435686,
0.2138166418,
0.3472071942,
-0.1102454079,
-0.5103070088,
0.1064399016,
-0.1845005442,
-0.0752158503,
-0.0754678616,
-0.4724252398,
0.7002304346,
1.3654486699,
0.0272998243,
1.0475315154,
0.4448130221,
-0.7428915319,
-0.5701156528,
0.0766449363,
-0.0192184838,
-0.3867039981,
-1.0715167358,
0.1201018357,
-0.1664737879,
0.6120620001,
0.2525349759,
-0.062251615,
0.0605636194,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008134842],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0982276101,
-0.3797655449,
1.2531288523,
-1.1289282226,
-0.688260747,
0.5066858613,
-0.8526917057,
0.3216592905,
-2.3246694334,
1.1833269748,
1.497935791,
-0.4737179685,
0.350518366,
-0.2344366028,
1.0641468294,
-1.1664381221,
1.2179382705,
0.2733876673,
0.3238356335,
-0.2152906179,
0.221781359,
1.2229499271,
-0.0714473255,
-0.4961345474,
-1.063429014,
0.056303665,
0.5102086375,
0.4143763225,
-0.4485491344],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024241209],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.3320454125,
-0.8715020603,
1.3800350062,
0.3169653101,
1.4327162809,
-0.7056723919,
-0.9960338117,
0.1923447537,
1.6394171113,
-0.4572447817,
2.0048920909,
-0.6809728097,
2.3094962101,
0.78955239,
-2.9340872066,
-0.6277437817,
0.8829099637,
-0.5438742871,
-0.5332297781,
-0.5462656398,
-0.3420566916,
0.1999761342,
-0.6891224915,
0.496696474,
-0.1656293804,
0.6672704786,
0.3841083221,
1.401641052,
-3.7190230678],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00095281005],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9492250225,
-0.346830268,
-0.2103579295,
0.4337766907,
-0.660956033,
-0.554568864,
-0.4287005952,
-0.0509014385,
1.018481029,
0.0967312351,
-0.9239504908,
-0.194761714,
-0.6578483902,
0.1255245839,
1.029301756,
0.6164637258,
-0.7043092742,
0.2974334044,
-0.6059135042,
-0.1929076567,
0.2910815052,
0.8187442768,
0.2605065088,
0.0957082864,
-0.6325908965,
0.7247430557,
-0.0737720057,
-0.1049394023,
0.5595320846],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043568015],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6642333853,
-0.3068025105,
0.3651123854,
-0.458383473,
-0.7577136226,
-0.6014283277,
-0.4143267711,
-0.0924742137,
-0.8031265196,
0.510396915,
0.3530933885,
-0.3004892475,
0.2256398325,
-0.0818234245,
1.082610741,
0.8690802546,
0.7150041474,
-2.5125738743,
0.1432163766,
0.0818619396,
0.0152525316,
-0.1172088743,
0.2635362684,
0.6617173292,
0.3808015328,
-0.8494625335,
0.0434425937,
0.0803905097,
0.0891016217],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009435415],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.19979861,
0.7549549277,
-0.623046018,
1.4051273545,
2.8245688878,
3.2247317733,
0.7463220468,
0.7147896939,
-1.9130785111,
0.8658515725,
-0.7046889826,
-0.6448075755,
-0.4829622444,
0.5489495984,
-1.2312981933,
0.0116042083,
-0.5818098517,
-0.7963981545,
-1.2563563453,
-0.2080694499,
0.12861525,
0.27283709,
-0.0128024173,
1.135701217,
-0.3798338366,
0.042862827,
0.124166277,
0.4967117845,
0.1023824064],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0001398027],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3723640468,
-0.5984606981,
-0.2053288136,
-2.9708995343,
0.8328014875,
2.5060876013,
-0.227283954,
0.6005610416,
0.1135634423,
-0.5128682029,
-0.3381881858,
-0.112181689,
0.3767864946,
-0.1914446497,
1.5590018138,
-1.2305826396,
-1.0219831636,
2.4471105911,
-0.4370042435,
-0.8996482157,
-0.4529373571,
-0.4057413686,
0.7594675894,
1.6514822564,
-1.2546010476,
-0.6817035753,
0.33653354,
0.2908621508,
0.9361355042],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.1904707e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3125600479,
-1.699401398,
-0.668108151,
0.6075840517,
-0.7825334236,
0.6633052066,
0.0970535814,
0.0803809014,
1.350647402,
-0.5254146189,
0.228051488,
1.6460193431,
0.6052663958,
-0.2496742941,
-1.1792038154,
0.0015682003,
-0.6317365169,
0.5438993643,
0.6504241794,
1.6194696038,
0.3221943468,
-0.8090727182,
-0.5591909619,
0.6067634579,
-0.8584707229,
-1.9984825269,
-0.1369206938,
0.2842758881,
1.7888756578],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000605464],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.5368296186,
-4.8527309026,
-0.6349804724,
-0.6221585651,
4.1498168953,
-2.2012257611,
-2.6354070621,
0.6008611623,
-0.9557033013,
0.2059988088,
0.8811277579,
0.8488719798,
1.1625950295,
0.5388061165,
-0.1964696991,
1.3235611989,
0.2169473136,
-2.4085931031,
-1.6309455847,
-0.0515426363,
0.7559433399,
1.1954106782,
-4.6134768872,
-2.1511552707,
-0.133867921,
-0.0661428992,
2.9709425862,
-5.2534902475,
0.6694232174],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004017353],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5110315013,
-0.1007498462,
-0.2423797161,
-0.0616795667,
0.4558419922,
0.5210568322,
0.1982820002,
0.129468442,
-0.2597939724,
-0.2779904092,
0.8218889364,
0.8668921446,
0.6062271427,
0.5015642255,
1.9494771317,
-1.5535337173,
1.1492602497,
-3.1828225272,
-1.8129714369,
-0.0518174786,
0.1618525351,
0.5407689243,
-0.0279698824,
-1.4260867589,
0.4555090594,
2.4556952559,
-0.1272691313,
-0.0249446694,
0.65805108],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005245805],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4480601495,
0.5559300022,
1.1967485643,
0.6875277786,
-0.2823764239,
0.2680496914,
0.0782884099,
0.2360825629,
0.5014749012,
0.1400838319,
-0.7532644549,
-0.1596856818,
-0.6689946411,
-0.3098856109,
0.5863509574,
-0.866618204,
0.413359461,
-0.150185976,
0.2266250072,
0.2045573939,
0.2005018444,
1.1536701295,
-0.2919753933,
0.1561636282,
-0.153432076,
-0.2980019781,
1.0435895242,
0.9109993954,
0.1068016559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036242604],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4512762671,
0.6447391057,
0.7406999054,
0.1791824258,
-0.2344046079,
-0.3715317099,
0.2493266117,
0.4406921188,
-0.1847249163,
-0.5942333622,
-0.5790723019,
0.1208331837,
-0.8391252786,
0.3858972652,
-0.3024504805,
-0.8596258095,
0.7852045727,
-1.1075676235,
-0.1474712859,
-0.1178516091,
-0.0093638003,
0.1375976441,
-0.0533190825,
0.6977706138,
-0.2985510443,
0.6655931915,
0.5282809909,
0.3679812967,
-0.2343554596],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035759807],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7840420072,
-0.3763504438,
-1.1339589978,
0.4599834429,
-0.0689429608,
-0.8461033715,
0.417011357,
-0.3185844804,
0.7276644145,
-0.8653677189,
-0.2212479892,
0.9222119204,
1.0178710805,
-1.6349995132,
-0.2057668556,
-0.1233114526,
1.2296843807,
-0.1811971199,
-0.0385374984,
0.4656561283,
-0.1206189152,
-0.6409154,
-0.0331041007,
-0.1534102466,
-0.234197003,
-0.2354691442,
-0.1027395027,
0.0767990893,
1.2642156442],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010498762],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9878210702,
-0.2592209879,
-0.3317904988,
0.1284862512,
-0.1478168528,
0.3247775838,
-0.5611215825,
0.1322734958,
0.9556508568,
-0.0210287895,
0.4569772854,
1.4753146353,
1.0966120313,
-0.2313967446,
-0.2895751223,
0.4212710765,
-1.118693405,
0.9137559811,
0.2851514799,
-0.1354483524,
0.3046308775,
1.1936741187,
0.141504533,
0.5437389004,
-0.0223754762,
-0.5000026242,
0.0890600674,
-0.1219568238,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077551603],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1870549847,
0.8827422292,
0.758816855,
3.2513693577,
0.3546099821,
0.3096164349,
0.426489164,
-0.0185347517,
-1.6726751573,
1.344444167,
-0.9672681288,
0.1073659727,
1.2615831282,
-0.0314464472,
0.0664446322,
-0.2157472827,
0.1108955004,
-0.5948256331,
1.696467836,
0.2375566578,
-0.3883576387,
-0.9496168888,
0.8382220581,
-0.0320417996,
-3.7809746767,
-0.7636957097,
0.8435979852,
1.0034680493,
-0.3717549094],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026360154],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.558908497,
0.3336802784,
0.2150313967,
1.9329443284,
0.0731204557,
0.1663135436,
-0.0569763072,
0.1246042981,
-0.4601575502,
0.2036788326,
0.730095342,
0.579719552,
-0.105274318,
-1.1723026529,
-1.6207296085,
0.8297948573,
0.3931873121,
0.6885709264,
-0.4647588397,
-0.1209952209,
-0.1448491743,
-0.227143488,
-0.2680551461,
-0.125477632,
1.2303209266,
0.1643441676,
0.0350734179,
0.1161284733,
-0.1158439146],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011402965],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6541555178,
0.9679110886,
0.5931650472,
-0.7144812287,
0.0469889887,
-0.5346387547,
0.4598825727,
-0.1025629893,
0.7766152886,
-0.4968776234,
-0.4023830389,
0.083570127,
0.2834275036,
-1.7656856813,
0.5048788927,
0.4505062088,
0.4278820013,
0.2853973344,
-0.4601277853,
0.1864246653,
-0.2492999627,
-0.7299381356,
-0.0797171125,
-0.2499068472,
-0.5176023143,
-0.6547186526,
-0.4881993663,
0.8754159368,
-1.1652738786],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043040514],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7478950127,
-0.6145685113,
-0.1412179466,
-0.9329512686,
-0.9301579107,
-1.0301431286,
-0.3730932899,
-0.3020419222,
-1.8442650223,
1.3458395901,
-0.6276867321,
-1.5141473139,
-0.7334874475,
0.2093529029,
0.4309007312,
-0.8109647393,
0.8298475602,
-0.1088240211,
-0.1595708091,
-0.4468229186,
-0.2270172343,
-0.3007178579,
-0.1628098919,
0.5970383936,
1.2140009956,
-0.1719927847,
-0.0469690409,
0.0432286984,
0.477068427],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000580132],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5599219263,
0.2531420137,
0.700486012,
1.703833783,
-0.2969891169,
0.0441704585,
-0.226056859,
0.0988311352,
-0.7211297283,
0.7376706339,
1.1566369625,
0.7958342635,
0.5227148966,
0.1819046693,
0.0029443547,
1.2352905714,
-1.1740441393,
0.6556671426,
-1.1632839119,
-0.110110237,
0.2768262326,
0.7404379667,
-0.1294361706,
0.5847247264,
0.8108861471,
0.1597325435,
0.0219336173,
0.0784496627,
-0.2933976599],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00065359473],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5417944527,
0.0985664405,
-0.6740924188,
-0.3764544373,
1.724638376,
2.5371308205,
-0.0914874135,
0.5358353268,
0.0315430933,
0.3336555979,
-0.0241139163,
-0.144523,
0.067618055,
0.093846948,
1.3826309649,
0.4002853288,
-1.0165285267,
0.1158817751,
0.8896636947,
0.1235653398,
-0.3469841632,
-0.9552610355,
0.6263322601,
1.6244442456,
-1.9662339992,
-0.0887398783,
-0.5362463575,
-1.1080253975,
-0.5876216751],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000495106],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4085143894,
-0.1757122118,
0.2868791902,
1.0013800556,
-0.4010618578,
-0.3694528768,
0.2226183888,
-0.0789186482,
-0.0495760149,
-0.0652569595,
0.148311957,
0.3948877495,
-4.52915e-05,
0.4191205645,
1.3660458068,
-0.1417756663,
-0.1065729039,
-0.8059579693,
-1.2028494368,
0.253075757,
0.118145709,
-0.1810206444,
-0.1463494421,
0.6351557815,
0.6144045675,
-0.9457979868,
0.0076485305,
0.1954222023,
1.1372516423],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007699728],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.243828537,
0.1588099486,
1.5030168557,
0.0295874849,
-0.6138183073,
-0.0692343461,
0.0465416764,
0.0580181113,
-1.336852868,
0.2022095161,
-0.138152075,
0.2212852216,
0.5210596896,
-0.3177199829,
0.3169820431,
-2.9699391798,
1.2921262305,
0.293237498,
0.1507376327,
-0.352558736,
-0.7252360093,
-1.2444428651,
0.0676409361,
1.0003034593,
-0.2437952279,
0.9576520791,
0.1940943965,
0.2689248503,
0.1042811722],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026077032],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.046779027,
0.1863489383,
-1.1681516966,
0.8595401114,
0.639963444,
-0.5442631703,
0.5688441361,
-0.3498462372,
0.0800673063,
0.214938311,
-1.3861369034,
0.5845434463,
0.8085061098,
0.3154641932,
-0.6377377208,
-0.657419691,
-0.4897129549,
-0.6327465883,
0.0441599408,
-0.3065498688,
0.0128193021,
0.4375595245,
-0.1499333522,
-1.1531830819,
1.1278251493,
-0.9254857093,
-0.0244010737,
-0.2056649478,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011840463],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0638788313,
-0.0690963479,
-1.0994296792,
0.0183686246,
0.3376937757,
-0.4145025716,
0.0898993416,
-0.1659458491,
0.8101972267,
-0.0588437946,
-1.4271537736,
-0.3611904987,
-0.6401823312,
0.6154411274,
1.1294856774,
-0.0426215,
-0.8434729629,
0.5280316657,
0.0910198819,
-0.3367089317,
0.2903231317,
0.9851544141,
-0.091848131,
0.1343788997,
0.7994364822,
-0.846133342,
-0.0112925507,
-0.1647296465,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008533001],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0046516449,
0.1791130617,
-1.756172971,
0.8201514791,
1.0703621152,
-0.0379665308,
0.4267255699,
-0.0510468499,
0.066999936,
-0.1452913009,
0.0681729756,
-0.2027772071,
-1.2575490111,
-0.648310966,
-0.921061858,
0.3516007097,
0.5045865513,
1.2000303934,
0.3009936033,
-0.2580193721,
-0.0716743755,
-0.1290802984,
-0.2308939363,
-0.8611305474,
1.0430353758,
-0.9814003097,
-0.0492355516,
-0.1176201297,
0.279174442],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0019674003],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4259612663,
-0.6938937036,
0.8069772305,
-1.3558766965,
0.2281615982,
-0.1569321037,
0.0600017322,
-0.0251190958,
2.4212478205,
-1.4752397984,
1.6542460268,
-1.9519603097,
0.8154802232,
1.4331185075,
-0.3411408334,
-0.7096068232,
0.3615112776,
1.6453225056,
1.2083025033,
0.6283391396,
0.4537867283,
1.4808537338,
0.345065438,
1.1265539017,
-0.5136651772,
-0.3138483266,
-0.1753876599,
-0.1037366575,
1.0210968145],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007493198],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5303884491,
-0.0009526012,
0.6542947919,
0.7871680962,
-0.4428449519,
-0.0142401314,
-0.2634730852,
0.0553391796,
0.2348156927,
-0.1200290277,
-0.0057286969,
0.8149274241,
1.1107583633,
-0.1039132821,
1.6545726279,
0.2472761404,
-0.4804423764,
-0.4240871228,
-1.1798973002,
0.0161312374,
0.1188803877,
0.328276754,
0.0125138877,
0.1466260011,
0.5310298124,
-0.8830445484,
0.1635860263,
0.1556291545,
0.5327303739],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007016063],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2678797896,
0.2025408937,
0.8867175045,
-0.6011548395,
-0.5032100563,
-0.2195189744,
0.5569150539,
-0.0260860861,
0.6999742137,
-0.8614320827,
-1.2788707646,
-0.493500288,
-0.99487385,
-0.1449396642,
0.200979827,
0.1529773774,
-0.5727680981,
0.4951715165,
-0.3168475516,
-0.2660086549,
0.356249057,
1.1661622233,
-0.3021104447,
0.1043808214,
-0.5796851491,
0.1494915641,
0.1605843992,
0.427425547,
0.8623244115],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024545193],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.0150719999,
1.4337863615,
0.0865104478,
-1.179627904,
-2.5357238402,
-0.4013369098,
-2.1394036236,
2.4184610793,
-0.7834826865,
0.1804247555,
-1.004481284,
0.6761037551,
0.6746248217,
1.0495914135,
1.1493511016,
-0.2764094457,
0.9268247208,
1.5688058661,
-2.865576472,
-0.4660671354,
-0.0253896977,
0.0406555133,
0.220367431,
0.6756351077,
0.5548384481,
2.2708156056,
0.1509315945,
0.1060756172,
-0.0459717734],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [4.5269728e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6064573736,
-0.2459635539,
0.5682813717,
-0.562462742,
-0.7443416913,
-0.252060105,
-0.5110538352,
0.0867936427,
1.5973787454,
-0.991733049,
-0.1801513382,
0.8841544075,
0.0796002546,
-0.1439462002,
1.6463541722,
-0.8358175816,
0.1440247251,
-0.3090103475,
0.2463159943,
-0.1939556589,
0.0215678621,
0.4545984772,
-0.0038938008,
0.1517539277,
0.8347573794,
-1.3560437118,
0.2652938546,
0.1112385563,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013814867],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5500744082,
-0.1217209941,
0.5141886629,
0.8542206947,
-0.3271118836,
0.561163283,
-0.4522994153,
0.3159556448,
0.6591850404,
-0.0700724703,
0.5206009488,
0.7806205484,
-0.9571667867,
0.0076292335,
-0.9983128047,
-0.4119589428,
0.0005125047,
-0.0201306171,
0.0930588346,
-0.2639025087,
0.0119511604,
0.3694719907,
-0.2209156477,
-0.4961612614,
1.1302052579,
-0.5004706328,
0.1512528464,
0.0419629853,
-0.0906170678],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010278523],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0437204368,
0.6501044049,
-0.3581612465,
-0.1304059331,
0.2541910941,
-0.517139147,
0.2571673679,
0.3555241725,
-0.129479873,
-0.9906450123,
0.502540694,
0.2908912616,
-0.6995775474,
-0.4758279717,
-0.4513068771,
0.4835115123,
0.5124454557,
1.426349182,
0.5774184155,
-0.3251312829,
0.1640661522,
0.4341316005,
-0.055848651,
-0.7698897121,
-1.1751442604,
-0.8051603506,
0.0731362537,
0.1926953781,
-0.6791197648],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0019667149],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6140610374,
0.6837973212,
-1.036794536,
1.1933131967,
0.4732404951,
-1.4228706566,
0.5417103075,
-0.2186592623,
-0.1290242064,
-1.3158658797,
0.4548149419,
-1.6046747898,
-2.2809452919,
-3.0030683442,
1.4243928911,
1.2686884019,
3.2104027817,
1.9127714163,
-1.0285792102,
-0.1889522797,
-0.3144731959,
-0.9741178403,
-0.327364368,
-0.0138522839,
1.4995314039,
-0.594900623,
0.0519039502,
0.3086830587,
-0.1244338259],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0033447146],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.955906802,
-2.7262985026,
1.7660677919,
-0.3740278875,
2.5797543999,
-2.627343434,
-2.5384381717,
0.5060849893,
2.4719899409,
-1.4230321032,
1.7999226223,
-1.8840861706,
-0.2174760153,
1.9311706509,
-0.4550138842,
-0.2458865198,
0.4313261518,
1.5912140129,
0.1475936556,
1.2499680555,
0.4300895959,
-0.2896376335,
1.0121472506,
0.6994925394,
1.0995483811,
-1.7200483978,
-0.242732305,
0.4839271284,
-0.2402067958],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033903122],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.310563436,
-0.0208827109,
0.6162847041,
-1.4848392048,
0.5888339765,
-0.3538503103,
0.8996678085,
-0.3492068296,
-1.4919189572,
0.0211790136,
-1.4196780779,
-1.2124061488,
0.5821386911,
-0.3920727358,
-0.0402261675,
1.4643302743,
-0.5111589973,
-1.6313745704,
1.0132934643,
0.5863421344,
-0.2349284728,
-1.0175501654,
-0.3579254789,
-1.7393791829,
1.3081398015,
-0.9918380808,
-0.5048256701,
-0.5415194193,
0.753315701],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002810359],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7794784981,
-0.4716168823,
-0.2428436973,
-1.095585194,
-0.4094312029,
-0.400028834,
-0.3462871288,
-0.2681455095,
-2.148866027,
1.2573161535,
-0.4640533908,
-0.2975589381,
1.8329176668,
-0.3066085621,
0.4462174683,
-1.1003217011,
0.7639316631,
-0.8043184358,
-0.3627093034,
-0.350353512,
-0.2270592352,
0.0306537292,
-0.2237260434,
-0.7055695405,
1.3956210824,
-0.0520171902,
0.0470919469,
0.0130623934,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003809929],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2042630311,
-0.0872510363,
1.5346354908,
-1.2525892597,
-0.5550497734,
-0.5356119081,
-0.0220311218,
-0.1412333143,
-0.7128069278,
0.1105816089,
-0.5232273623,
-1.2478924967,
-0.2741403577,
-0.7149328328,
0.5916723659,
1.7499792292,
-0.3010467012,
-0.8415128143,
-0.3821591121,
0.2113181656,
0.5798451144,
1.6586751635,
-0.4967818944,
0.6867448098,
0.0759569661,
-0.4710428131,
-0.1754486719,
-0.3443521071,
0.0203055874],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00073096156],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3448244917,
0.8157347286,
0.5408764849,
0.7346125891,
0.2370934116,
0.5791976195,
0.1376208046,
0.5879104569,
-0.6886418329,
-0.1398561235,
0.3986437633,
1.0236814264,
0.4321635396,
0.4035349061,
-0.5883302565,
-0.8205811867,
0.3102000351,
0.0346585768,
1.5746844798,
0.0871850627,
0.016430909,
0.3822986734,
-0.3747370327,
-1.0646628567,
0.0238833363,
-0.4071086011,
0.7406489193,
0.4050934236,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017808676],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.692831251,
-0.5428332597,
-1.3507614934,
0.5526131427,
-0.0295341562,
-0.975531285,
0.6695656843,
-0.4371032799,
0.3617930408,
-0.5814734322,
-0.2993103647,
0.5040840346,
1.0035710855,
-0.8474421285,
0.9267118244,
0.2728958277,
0.3456839032,
0.6215788504,
-0.619254404,
0.7690441095,
0.5686992082,
0.8182549012,
-0.6186886807,
-0.2284738532,
0.3381121026,
-0.2794339575,
-0.1609740723,
0.1093007004,
1.4612948868],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008928478],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6752500106,
-0.1348991519,
-0.1416927691,
-0.0386577337,
0.1822044245,
0.5371583075,
-0.2352693556,
0.0448367017,
-1.3030963864,
0.8109934426,
0.302764875,
0.8765028184,
1.6995839456,
0.1409445204,
0.2975199891,
-1.3666381569,
-0.798590851,
1.8289243315,
-0.8728485569,
-0.5539942525,
-0.4471386932,
-0.5347744346,
-0.3244229207,
-2.2701989681,
1.3331262972,
-0.4850936268,
0.1331488553,
0.0174979153,
-0.0783150898],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00025123358],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7654364113,
-0.7346069164,
0.3822789938,
-1.0203303331,
-1.2523582019,
-0.4054608196,
-1.0669117897,
-0.0420242083,
-1.2884968627,
1.2945961638,
-1.0813029791,
-1.5711184135,
-0.2878448526,
-0.3348652483,
1.0675357055,
0.0385720912,
0.2850273063,
0.7146128718,
-0.3105067571,
-0.468604426,
-0.1419628137,
0.0791205104,
-0.0830232316,
-0.258628666,
0.7201507034,
-0.1431331401,
0.1027797927,
0.0755642182,
-0.0844281111],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002309978],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1398312305,
-1.0846908739,
0.7221069417,
1.9714613023,
-6.1190240102,
4.3299897412,
6.4422440625,
-1.1120163267,
1.4617937674,
-1.5653719198,
-0.2603921103,
-3.0244713825,
1.5493704869,
-0.5432989858,
-3.2513957179,
0.808923044,
0.2095114723,
0.4870890621,
-2.0091989339,
0.3869311075,
-0.2280362777,
1.079048285,
1.9455022296,
1.2154090656,
0.5382168952,
-0.0003729869,
0.9956170353,
-2.3738141771,
2.2928021914],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026085973],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3246363723,
0.4226069287,
0.922047475,
-0.2530693543,
0.5561304232,
1.1163804328,
0.1870862029,
0.6067902396,
-0.5216576415,
-0.2724061355,
2.088251881,
0.6160734971,
-0.8563072679,
0.6251053415,
1.4368972501,
-0.9437085036,
0.6852205783,
-2.0050860826,
-1.5473004921,
-0.0686440192,
-0.0824698369,
-0.0845475061,
0.2220521196,
-1.7813826883,
-1.0596464046,
0.3814518125,
0.7858571649,
0.31127532,
-0.3817077872],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00059077144],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1669966034,
0.8217334037,
-0.3406228912,
-0.1093570616,
0.4093703193,
-1.0707632014,
0.6539407962,
0.0565160158,
-0.4779206532,
-1.1327464088,
-0.562764274,
0.2113775306,
0.7009056161,
-0.5889241926,
0.602046912,
0.0666477161,
0.6766786316,
0.8268759396,
-0.1255840355,
-0.1691399257,
0.5430075142,
1.5803866942,
-0.3458483573,
0.0045067257,
-0.8281052644,
-0.3401181564,
0.2704530922,
0.5444362103,
-0.4440983022],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011236072],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6665607309,
0.7786837604,
0.3523417809,
-1.089376592,
-0.0914874213,
-0.2048091765,
0.1319530916,
0.4181039183,
0.0135318278,
-0.0597661062,
0.9653752854,
0.451269468,
-0.6033709475,
0.4446223959,
0.0324342846,
0.6024105472,
-0.6634190668,
-0.2530582077,
-0.8018927804,
-0.2324975403,
0.0440422835,
-0.0265042033,
-0.0303421091,
-0.4749480014,
-0.6451969417,
1.4385509383,
-2.2789628608,
-1.5888653931,
-1.1872867597],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049230456],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0666413368,
-0.1055191717,
-1.3532625739,
0.1182357014,
0.5365509816,
-0.3408461432,
0.280492642,
-0.1697928556,
0.5639960279,
0.126886005,
-1.7768071997,
-0.7319188436,
-1.4555289228,
0.6714043946,
-0.1547686537,
-0.3331327844,
-0.2812649977,
-0.5147661464,
0.5650636608,
-0.3520576894,
-0.1418645562,
-0.2862460997,
0.0631206685,
-0.124235454,
0.4648384312,
1.2070117902,
-0.2743030222,
-0.2438920121,
-0.2343554596],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011188686],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1011569438,
-0.3077230794,
1.7286679832,
-0.073657243,
-0.6660477912,
1.1580537842,
-0.3465740004,
0.0600371192,
0.8075922369,
0.3272384167,
-2.2899423797,
-0.3918282703,
-0.3706895178,
-1.909732318,
-2.2399943361,
-2.0807157959,
-0.1509962679,
2.1067072496,
-1.1684761847,
-0.6431126976,
-0.3493892958,
0.711393191,
-0.2628960324,
1.0542130717,
-1.1763861492,
-1.3277802678,
-0.2699281192,
-0.7415463879,
0.477068427],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [3.373623e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3283298447,
0.3548677112,
1.3286189094,
0.1966679346,
0.1045180775,
-0.2352025689,
0.2242474254,
-0.1340934788,
-0.0266499369,
0.1243046306,
-0.5933215112,
-0.1440746214,
0.6663507442,
-0.417293225,
1.7492585889,
0.2877127071,
-0.6436036734,
0.2200023441,
0.843357601,
0.3812673294,
-0.2384795559,
-0.3420552321,
-0.4526342956,
-0.158703515,
0.3204268331,
0.7421349298,
-0.0843208937,
-0.5505889615,
0.0074299149],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00081565976],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5904529296,
0.0237178192,
-0.1498144606,
0.5209326349,
0.1069711888,
0.3476408069,
-0.2794465048,
0.261167342,
0.4910621581,
-0.5360621945,
0.5906823661,
0.0530422612,
-1.3493572295,
-1.1642128386,
-0.54826462,
0.3351923569,
1.059926234,
0.6101014461,
0.2896624991,
-0.1898637083,
-0.2351595838,
-0.4358863542,
-0.2762131655,
-1.5199653696,
0.9898053068,
0.9890778202,
0.0074584778,
0.0681102197,
-0.2212335278],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015555322],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3711821775,
0.5112265889,
2.2560915796,
3.4799660162,
-0.3598200581,
2.2387473751,
-0.3287518437,
0.222925861,
0.9317111946,
0.7448832841,
-1.0945518944,
-2.7038080721,
2.4871323302,
-0.2984484349,
-1.9119571139,
-0.4814972996,
1.2969523483,
0.8942941395,
1.8720289225,
0.2967453184,
-0.1608613106,
0.7732010237,
-0.689968693,
0.8074121391,
0.2379834191,
1.1335676723,
-0.5041684176,
-0.3308995037,
0.8467702182],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003450215],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0006104544,
0.2183490192,
-1.2063590128,
0.9183850752,
0.6563959403,
-0.7434926103,
0.6117225306,
-0.4021377133,
0.7417257003,
0.1603037377,
1.5594427502,
-1.7738217122,
1.47040907,
2.5300138339,
-1.4181087656,
-0.2567731352,
-0.0451283435,
0.5731385718,
-0.2361691568,
-0.3254046064,
0.0980822339,
0.6471203677,
-0.2152095605,
-0.6529798176,
1.0422640136,
-0.9434554793,
-0.1865410892,
-0.245627927,
0.3133998969],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012376904],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7774828358,
-0.587998146,
0.0147120599,
-0.5682822604,
0.6967038212,
-0.7304746269,
-0.1994673908,
0.2621213512,
-1.3668871667,
-0.158806956,
-1.5178674904,
-0.09059159,
0.8976884313,
0.4480967108,
0.3435856173,
-2.0247515956,
-0.0070907714,
2.0926014166,
-0.5501681814,
0.0172928148,
0.2625790407,
0.5671456638,
-0.4666899595,
0.8440385564,
0.8159218733,
0.0826188536,
0.0377393262,
-0.4666638173,
0.5595320846],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002527535],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0664074036,
0.0011676752,
-0.073544508,
-0.8952325368,
-0.3004751269,
-0.673022477,
0.6521536595,
-0.2687159398,
-1.02688339,
-0.3394004826,
-0.4291733834,
-0.4693069171,
1.1844924293,
-1.803882133,
-0.3620137014,
1.2113600666,
1.3130063861,
-0.9293193849,
0.8641808328,
0.5690445506,
0.4981293858,
1.2955054823,
0.6102633078,
-0.0407169777,
-2.188829056,
-0.704683662,
0.6104216349,
0.9675064126,
0.9990483035],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034037232],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4332132055,
0.7336715736,
0.8537292421,
0.742278827,
0.0409482546,
-0.3575641571,
0.4677790035,
0.163614946,
-0.7617787752,
-0.0234963755,
0.9753700302,
0.4455260277,
-0.8261053082,
0.6244041209,
-0.5343024431,
-0.6353647079,
0.1002542609,
0.4041623137,
1.1802730586,
-0.126848203,
0.1564864823,
0.5332176543,
-0.6207826261,
0.9247601958,
0.5027676906,
-0.5164110448,
-0.7428343427,
-0.7067700333,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017074645],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2458817323,
1.0269283317,
-0.8631896296,
0.6162781245,
0.994772632,
-0.0127364614,
0.9367761708,
0.3265889529,
-0.9945906498,
-0.6085859031,
0.2323351318,
0.0174829381,
-0.5256328607,
-0.5013811056,
-0.9172422063,
-0.1407974289,
1.1077913956,
1.4531901496,
1.4045703319,
0.1769147655,
0.1288836953,
0.4288810392,
-0.3608481862,
-0.0691689625,
0.2909631241,
-0.8040155959,
0.7323384319,
0.6643691094,
0.5156891312],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0018909872],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6862346095,
-0.3121127371,
0.1281194506,
-0.4535358539,
-0.7026004501,
-0.8786082016,
-0.2437258872,
-0.249677949,
-0.8438166511,
0.5722378125,
-0.2135332874,
-0.5477901343,
0.3080595187,
-0.0842912089,
0.6964898016,
1.1002192141,
0.3253847204,
-1.6382609085,
0.6326522158,
0.1873208737,
0.3202484414,
0.7412213643,
-0.2385684248,
0.6942444593,
1.2013001146,
-0.2473295998,
-0.0317139529,
0.0612149762,
0.4007647137],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009830892],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1586800859,
0.4988302749,
0.0348914553,
-0.334835102,
0.6979264449,
0.3844770832,
0.4616672853,
0.0924490779,
0.4406540811,
-1.0258829177,
0.2305325055,
1.0057314168,
0.4961831572,
-1.7953258906,
-2.331921285,
-0.31664267,
0.6274099408,
1.1140948252,
0.4091436255,
-0.1436404355,
0.3993614335,
1.5848740989,
-0.8172480799,
0.3577950347,
0.880335684,
-0.007565019,
-0.4266528559,
0.1762129672,
-0.273228993],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010647178],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8440463656,
0.0858642407,
1.0229127876,
0.54219834,
0.4743674786,
-0.0368395288,
0.0682074883,
0.3291388929,
-0.6191151186,
-0.0823524349,
0.4424109441,
0.1407411279,
-0.1920438143,
0.4622018606,
0.9409081421,
0.5765455372,
-0.8387107771,
1.1067698691,
1.5138458244,
-0.1794272351,
-0.2873289992,
-0.5623917058,
1.0670846902,
-0.9621155034,
0.7672350193,
-0.9390812413,
-0.4901771409,
-1.0094264267,
-0.1231026233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009202063],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6646169221,
0.1754854117,
0.1221627738,
0.2906306704,
0.0025789224,
-0.3643569155,
0.0903408969,
-0.158438595,
-0.0320498666,
-0.0703461134,
-0.7953625763,
0.5034576221,
1.2613978096,
0.0392905622,
1.0942490546,
0.5642393623,
-0.8724725601,
-0.4153689648,
0.2377849657,
-0.0213672304,
-0.4210615712,
-1.1763213497,
0.0525414178,
-0.7438502237,
0.6889277079,
0.2974066893,
-0.0654250574,
0.0479994088,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00072300434],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5467448808,
0.462483012,
0.0146327266,
1.3227451868,
1.8613024085,
-1.5018372061,
0.5533793919,
-0.2563845622,
-0.9573890917,
-1.3324686432,
1.3568689273,
-0.5475126591,
0.0372098202,
-3.6248309442,
1.8504936116,
0.0274187264,
3.8595018391,
1.2673293481,
-0.1893691357,
0.6829281529,
-0.0333752704,
-0.1515763752,
-0.2538680973,
0.1370952896,
0.4443763705,
-0.3978979867,
-0.0925087116,
-0.0104964572,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0030574203],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-4.7942831237,
-7.9236294775,
0.8728188556,
0.058917376,
4.0148536321,
-3.9561062826,
-4.1355637941,
0.190506874,
-0.3025834684,
1.5122585493,
-1.0410196887,
-0.9707433926,
0.6958037966,
-0.8339183356,
1.4763967009,
0.9695370452,
-0.3100327359,
1.1336033426,
-1.3382045112,
0.1936425963,
-0.1158120444,
-0.0887874901,
0.7461956322,
-0.0667367118,
1.3567985261,
0.0638894338,
2.2962911638,
2.8406008618,
1.8350313144],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [1.0162592e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3640885093,
0.6979406492,
1.2121627248,
0.1484050686,
0.3668210439,
-0.0771823369,
0.5257819773,
-0.0266052637,
-0.5307054619,
-0.4452964279,
-1.0284276333,
0.0895799775,
1.0402099846,
-0.1233601019,
1.0855274004,
0.4689612844,
-0.9530755989,
0.1937436709,
0.2478850453,
0.0636387278,
-0.226197601,
-0.7859655887,
-0.4991701279,
-0.8170711212,
0.6573945576,
-1.1439776698,
-0.1599422252,
0.2999238312,
-2.5243063932],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000931859],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4094756457,
-0.4849932959,
0.3432927035,
0.2054028991,
-0.6691448893,
-0.1524018208,
-0.1548055387,
0.0415205018,
0.204128142,
-0.0797264963,
1.0830332968,
0.7178074203,
0.0027630462,
0.3198460589,
0.8049980544,
0.9752529152,
-0.9602154842,
0.5971992538,
0.19161438,
0.4915611314,
0.0846040061,
-0.4957611913,
-0.2271972253,
0.0637384144,
0.088764943,
0.8815861318,
-0.1751427081,
0.1547452255,
1.2152261357],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034847856],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6515642356,
0.4288276391,
0.3591359313,
-0.0088791207,
-0.3093399871,
0.0284550738,
0.9107215194,
0.2857370646,
-0.9971663635,
-0.5277475888,
1.2271396545,
0.5462919159,
-0.4097251367,
0.9330760506,
0.189911663,
-0.0190823819,
-0.0814076845,
-0.1653849598,
0.0060992118,
-0.240446162,
0.2121262078,
0.337513517,
-0.2307814368,
0.0869379675,
-0.1108128909,
0.6717847252,
-0.1742019018,
-0.3381669982,
1.152817392],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00080910325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4411213664,
0.6148637076,
1.036822328,
0.2962323821,
-0.2475573462,
0.0281744683,
0.4029295159,
0.1773386934,
-0.1555585843,
-0.4437377914,
-1.2855865059,
-0.2924979309,
-0.4020267569,
-0.034339164,
0.1971188608,
-0.3935972514,
0.2141687589,
-0.2430782986,
1.6441725817,
-0.0087654051,
-0.3906278171,
-0.9531012758,
-0.2979519821,
-0.2294486062,
0.4287395964,
0.6448644588,
-0.8861456879,
-0.7407658243,
0.4244644506],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00087201595],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5266777458,
-1.9075746922,
-0.1714401404,
-0.2501981692,
-1.5239230741,
0.7315422365,
-0.870742564,
0.2137395653,
0.6120116929,
0.3507480356,
0.2247531455,
1.2942670029,
0.7311002571,
-0.8939002185,
-1.8506075879,
-1.4760911967,
0.0962112319,
1.6108973977,
-0.3646503613,
0.6744178585,
-0.1549917377,
-0.8980808434,
-0.0397419452,
1.3089401807,
-1.7548968937,
2.1766158784,
-0.2664032051,
0.1411834989,
1.6418141536],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016406178],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8943463958,
0.2067236486,
-0.5993105299,
2.7714529137,
0.2452960879,
-0.3795834353,
0.4309551157,
-0.1523074516,
-0.8424166421,
1.3079551676,
-1.3497956596,
-0.8787326841,
-1.396564556,
0.6817613986,
-0.9326428178,
0.7473114541,
-0.6531898471,
-0.7102419543,
-1.6950956904,
-0.2972253693,
-0.1553979971,
-0.7656559633,
0.3252566893,
-0.0771933746,
-0.2089140194,
-0.3763085769,
-0.1867037404,
-0.1150249068,
0.7499273462],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00029820204],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2036906186,
0.4598389354,
1.1289784406,
-0.0176467451,
-0.1588792815,
0.1441916572,
0.3401943938,
-0.0978047518,
1.0318706808,
-0.7675623137,
-0.0716291833,
-2.3063399286,
3.060355231,
1.0064034194,
0.4447936292,
0.83432247,
-0.2397798365,
0.7071396023,
-0.1575769823,
0.0207277669,
-0.1637389087,
-0.1132481283,
-0.1020871362,
-0.7748434276,
-0.265885929,
0.7270493521,
-0.2459284747,
-0.0119024294,
0.6979200088],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00032302737],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1923741752,
-0.1940118242,
0.5617930953,
-1.8861284459,
0.2110427197,
0.5386205452,
-0.0058770345,
0.2388587881,
-0.8469873173,
-0.1259616738,
-0.3304013774,
-0.7492856777,
-0.195537189,
-0.4086117318,
-1.1518327833,
2.025119818,
-0.8052655161,
-0.2313917462,
0.528850558,
0.2063546438,
0.5518787196,
1.297420895,
-0.4671681341,
-0.5812741605,
0.20023281,
-0.3465529678,
0.2144756274,
0.396853812,
0.5245544411],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004452765],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0639725517,
0.0036069006,
-0.9524046729,
0.0754589859,
0.4430028768,
-0.2418721704,
0.169172575,
-0.2113419174,
0.3377487939,
0.0346193195,
-1.174533124,
0.7889885222,
1.4529145807,
-0.0220728908,
-0.0050622496,
0.0863228292,
-0.7388690802,
-0.8576510216,
0.5371946994,
-0.1205345254,
-0.4581038376,
-1.1202369396,
0.4764340998,
0.0980204588,
-0.2545762084,
0.4216179285,
-0.1718030605,
-0.1728820612,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001210928],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.579506642,
0.0205301268,
0.1036356386,
0.9287507683,
-0.0152810513,
0.0784657367,
0.0307605837,
0.0603626619,
0.4109635528,
-0.086771012,
-1.1110302032,
-0.1763374505,
-1.0609363842,
0.2562294926,
0.051853325,
-0.5977071884,
0.1644510499,
-0.7947502862,
-0.2264774447,
-0.2457985406,
-0.1817792509,
-0.3559983483,
-0.2216012336,
-0.7536636223,
1.3177101049,
-0.5790333996,
0.0628297098,
0.0512928514,
0.282719461],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009072721],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7326511824,
0.2569589617,
1.4323286517,
0.9898494567,
-0.6829633716,
0.0769725174,
-0.3636143053,
0.693702509,
-0.3259527367,
-0.2216829756,
0.8332975305,
0.4020750008,
-0.7750118473,
0.4097158657,
0.38218368,
0.0969236376,
0.0464069121,
1.323666773,
1.0751114652,
0.4880601583,
0.4370710476,
0.9434550331,
-0.1824837616,
0.9000084986,
0.6172711761,
-0.1579309381,
0.5491620024,
0.0524169023,
0.7057263199],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007838607],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5895337536,
-0.9601347814,
0.1087723541,
-0.896587882,
-1.1325360744,
-0.4099954712,
-0.6136138994,
-0.1088628071,
-1.6549784765,
1.2026434929,
-0.3209575872,
-1.1242669573,
-0.1214606762,
-0.0724740768,
1.005889485,
-0.7449571428,
0.9410849437,
-0.44996834,
-0.810313338,
-0.0946653024,
-0.1301205054,
-0.3548218168,
-0.1216471703,
0.0833594206,
0.4950726596,
-0.3847726612,
0.0151510821,
0.1460036058,
1.0998067989],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026613474],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2723550033,
0.8930368421,
-0.5806552144,
-0.6850404527,
0.8665526071,
-0.1307764545,
0.6542146308,
0.1146287329,
0.2604972045,
0.2352622681,
0.6273658473,
0.4199026685,
-0.0034289362,
-1.0693391002,
-0.8901006694,
0.630125735,
-0.0575492523,
0.4014303744,
0.1338220364,
0.5487346434,
-0.5726201734,
-1.2254870466,
0.1067345878,
-0.1495041586,
-0.4453513301,
0.3058258774,
1.2954674969,
0.8513960446,
-0.9996350273],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009756386],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0880952957,
0.7155284838,
-0.5602063864,
-0.3236123899,
1.0905492719,
-0.6333530453,
1.3323806084,
-0.4131009385,
-0.4862493631,
-0.3883485222,
-0.8888948603,
0.696734682,
1.231707278,
0.3010014625,
-0.6178488022,
-1.3379082492,
-0.1925378703,
-0.6186641203,
0.551199992,
-0.1167910769,
0.4546932754,
1.6117926238,
-0.342395568,
1.1577254069,
-0.9551582906,
-0.4923732173,
0.251611253,
0.7979888841,
-0.8187135109],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007287264],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4847989443,
-0.311943068,
1.0347230765,
1.1340612906,
-1.0544260356,
0.1463599582,
-0.7104865543,
0.1992655378,
1.1168445237,
-0.1827986595,
-0.9924930468,
0.2374930135,
-0.2930046076,
-0.5710643637,
0.213485525,
0.309082233,
-0.3219224632,
0.4981621325,
-0.5734934286,
0.0216172569,
0.3024370441,
0.9658885781,
-0.2984962706,
0.6925950354,
0.8139392593,
-0.3748277816,
0.1874834599,
0.1883735218,
0.7831401169],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004067719],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9801351814,
-0.3339391906,
0.1442379196,
0.3979765874,
-0.800751652,
-0.2709650244,
-0.8590373749,
0.0389428929,
2.5515844067,
-0.3146225924,
-0.1347862142,
-2.7958452767,
0.6142143168,
1.3923392341,
0.2284092576,
0.7239704396,
0.2311915729,
0.4722999973,
-0.6901507365,
-0.3809463988,
-0.1747009198,
-0.0498574086,
0.5962842463,
-0.2622709078,
-1.274282554,
0.9367294206,
-0.1147728713,
-0.1378295326,
-0.0921763942],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039467216],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9363645264,
0.3293516646,
0.149459222,
2.7611710839,
0.2008077811,
0.5896873958,
-0.3576414408,
0.0575295364,
0.57099421,
0.8480289253,
-0.136886636,
-2.0791638953,
2.9318643107,
1.1074903845,
-1.2951569969,
1.3783665367,
-0.3460399685,
-0.2602082897,
-2.2518913739,
-0.2745601776,
-0.4723870688,
-1.0154385263,
0.8015470288,
0.7933815386,
-1.0119507308,
-0.9228608881,
-0.0361397794,
-0.0605387048,
-0.2298057093],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023397803],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7280513388,
-0.2957516333,
1.1922734595,
-0.5614668088,
0.171950781,
-0.9489124265,
0.0750779331,
0.2073219038,
-0.1737552601,
-0.3804327708,
1.1788641909,
-0.0064928033,
-1.4732934183,
0.5182397254,
0.1177759683,
0.9043329109,
-0.799204693,
0.2979530097,
-0.3611984511,
0.5384976217,
-0.049343727,
-0.86631936,
0.6645511732,
0.8183427538,
-0.6647842223,
1.2178871003,
0.4107559463,
0.5617712224,
0.7643533383],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00025507808],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0990391597,
1.5355124061,
-0.1619199736,
-0.1496914351,
-0.293225713,
-0.0737807331,
-0.6241520842,
-1.3514492074,
-0.2427187513,
-0.209629296,
-1.0722733207,
0.5382956282,
1.0714008383,
-0.0480813,
0.8514519933,
0.9133729137,
0.1901158446,
0.1710803285,
0.1767356818,
-0.6106239494,
2.8361260856,
-2.259287585,
0.6010885615,
-0.9218728267,
0.2179544724,
0.2603466482,
-0.0628486476,
-0.0154409674,
-0.2882784377],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005236864],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4564082431,
-0.6804613778,
0.6794930683,
0.8778399048,
1.3497596854,
-0.8459463003,
-0.4431952862,
0.114512465,
-0.1610041676,
0.4176665119,
1.1483730798,
-0.1895066895,
-1.8196748253,
0.7812356981,
0.8671459704,
-0.4584559638,
-0.2013066112,
0.4540834092,
0.3378278383,
0.4069222205,
0.4167980811,
0.7426261854,
0.5052535651,
-0.0527143799,
-1.156583139,
-0.8254573701,
-0.2324645446,
-0.3808444907,
-0.6326576507],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008802116],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6124753429,
0.1345657858,
-0.0132220692,
0.6991205264,
0.4344781073,
0.6572597189,
0.0159061616,
0.1280268238,
-0.0620122132,
0.0220779319,
0.305283027,
1.3844492203,
1.0686488072,
-0.0158784334,
-0.9180182074,
-0.2726589915,
-0.5328977655,
-0.2594634912,
0.4429117532,
-0.1098655091,
-0.1644260278,
-0.1116115217,
-0.380610146,
-1.8498402746,
1.58858222,
-0.5381833577,
0.0988481983,
-0.0048575023,
-1.0173187446],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007137358],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1476986765,
1.2107072017,
-0.3844989315,
0.690241156,
1.1057849253,
-0.9642497907,
1.1223160179,
-0.1362292244,
-0.8859271167,
-1.7601955003,
0.7767946525,
-0.8520588003,
-0.5202300637,
-3.4314306335,
1.1628290688,
0.6968381323,
3.4054185627,
1.3307783514,
-1.2891939299,
-0.0567857921,
-0.0827574048,
-0.1107745534,
-0.4543603755,
-0.4475820587,
-0.2343743499,
-0.7788915433,
0.4862596692,
0.7489010594,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.002372235],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6232400529,
0.1131429229,
0.4077563969,
0.4988471686,
-0.5377256921,
-0.9087219281,
0.0109398156,
-0.1352537623,
0.1415671164,
-0.0249824382,
-0.0806128879,
-0.0658071976,
-0.759003091,
0.4768560277,
1.2180013252,
0.2784728261,
-0.2754136176,
-0.6033772585,
-0.29325375,
-0.2227805132,
-0.3438458387,
-1.0835003658,
0.3386341538,
1.1265841634,
0.2754013982,
0.1607443095,
-0.0904675633,
0.0730792332,
-1.4765548991],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00105533],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3806674628,
0.1092768875,
1.5237277622,
0.7130244844,
-0.3741826071,
1.9302983139,
-0.0375091679,
0.6401734383,
0.741059371,
-0.7912505626,
-0.1752631906,
0.8619403714,
-0.2206931543,
-0.9170970202,
-0.440191808,
-2.1457480947,
1.7250289055,
-2.3809654377,
-1.859744165,
-0.3383308407,
0.3699501354,
1.8414230544,
-0.0565069335,
-0.9660309132,
-0.1602514734,
-0.1346009771,
0.2403712189,
-0.0024473529,
0.8784773338],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00053194165],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9927917407,
0.2448388295,
-1.5234396692,
1.0527378406,
0.7317695116,
-0.6752619024,
0.5559198843,
-0.2457916136,
0.1765636246,
-0.309647736,
-0.7140641181,
-0.3263373605,
-0.8306122182,
-0.8941113794,
-0.2847943363,
-0.1902398031,
1.1300115337,
0.1911989405,
-0.4886621701,
-0.2644643472,
-0.0514342117,
0.0019234524,
-0.0289688503,
0.7695968057,
0.9006320555,
-1.0651341475,
-0.0299424366,
-0.0522389306,
0.3048854672],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014506578],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.384289137,
0.6045853605,
-0.6254724277,
-0.8142080369,
0.6546972994,
-1.0975611379,
1.3720233683,
-0.2667556398,
-0.1326987739,
0.2881121792,
0.8147929101,
0.143593906,
-1.2810359736,
0.9898734629,
-0.7494726657,
-0.5808616979,
-0.6107963559,
0.1023997109,
0.0073232351,
0.0452019976,
0.2735457617,
1.3045743019,
-0.3853325487,
0.0790699077,
-0.5445794788,
0.177182323,
1.6123913297,
1.2515284343,
0.6920001304],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00052651763],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5919325949,
-1.0860525054,
-2.2065374174,
-0.1751947046,
1.6407868582,
2.5335911769,
0.3388066368,
0.4613313311,
0.0470011694,
0.0003805925,
0.0223233035,
0.2395582473,
-0.1507992392,
0.8399729214,
0.6999129995,
-0.3070666994,
-0.4465260081,
-0.6596408722,
-0.4584842148,
1.034076538,
0.4770234528,
-0.0575532558,
-0.5033402727,
1.2837340992,
0.041751011,
0.7662826146,
-0.3667286732,
0.0215863644,
1.5912083117],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036600232],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5518794125,
0.0713554223,
0.3315391732,
1.05970143,
-0.2566469636,
-0.2631267889,
0.0870418661,
-0.0192436673,
0.2528611773,
-0.1081584181,
-0.2630409023,
0.507335818,
-0.4123187719,
0.1460721846,
-0.1084322489,
-0.9078833375,
0.452439812,
-1.2272308892,
-0.6188252446,
-0.2157375422,
-0.0952210819,
-0.0559817624,
-0.0596514467,
0.6870045574,
1.1598792311,
-0.6911078565,
0.078136882,
0.0829664696,
0.2714059272],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008723438],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5685459111,
-0.0721051222,
0.3871717881,
0.6330342067,
-0.4804501018,
-0.3292553266,
-0.1095853215,
0.0432284998,
0.5392583707,
-0.1804614701,
-0.3337551412,
0.0193056023,
-1.3278434159,
0.2354117375,
0.1574911167,
-0.6912244002,
0.5691315356,
-1.3042318566,
-0.3251305139,
-0.2619567285,
-0.2570046195,
-0.6018357306,
0.1497260158,
0.6813746807,
0.561732831,
0.5786281367,
-0.0464637185,
0.0529786525,
0.1556561305],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000690192],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1135840901,
-0.1298182028,
0.0086274697,
-2.5340569213,
0.2569520913,
-0.683035195,
0.5968632141,
-0.3763228369,
0.2494535195,
-0.3341433617,
-1.3401860009,
-0.2196858877,
0.1453188295,
-0.275817471,
0.1104785733,
-2.6690408182,
-0.3261770412,
1.8866614181,
-0.436450017,
-0.4753091843,
-0.0888820134,
1.0513348972,
-0.4479554022,
0.8560258636,
0.0286008255,
-0.1575729399,
0.339861013,
0.0692966979,
-0.1184712257],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000117599964],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0189637107,
-0.3441218167,
-0.4663103709,
0.0447566703,
-0.1138729269,
0.3970650404,
-0.6294526469,
0.1531050098,
0.9808006809,
0.1667134996,
-0.4916183219,
0.5490735483,
0.2286917512,
-0.1270253826,
-0.2800898702,
1.0174051813,
-1.3844247458,
1.1354996428,
0.6666074859,
-0.180568546,
0.1693974591,
0.7424693802,
-0.0194732701,
-2.2348582272,
-0.2442227414,
1.3085779587,
-0.0670707826,
-0.2123860887,
-0.2551430327],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021961331],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5598682943,
0.0256004134,
0.7033563704,
1.1509919837,
-0.4712690388,
0.0946106389,
-0.2629760412,
0.0980379734,
0.6489721835,
-0.2349811769,
-0.413344194,
1.1391991367,
0.4466147913,
-0.5193506246,
-0.8964339982,
-1.0713079846,
0.5903086889,
-1.2673252217,
-0.4753021091,
-0.2349932035,
-0.0837691173,
0.3338422217,
-0.0463742692,
0.7314462475,
1.1484863751,
-0.5766332681,
0.1889486481,
0.0923583353,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012022555],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8792107879,
-1.4861712402,
-0.849540841,
-1.3014960058,
-0.4903705974,
1.3326181237,
-1.1582183972,
0.4106181459,
-1.0437740063,
1.3470651787,
0.5091488666,
-0.6063167268,
-0.4723137613,
-0.0745706374,
0.2303422576,
-0.9209555899,
0.9173965008,
-0.4759543727,
-0.9805910557,
-0.1285491428,
0.074777553,
0.2577857611,
0.1950705839,
-1.6525482404,
-1.0002268101,
-0.2354311355,
0.0444266757,
-0.0856396908,
1.2330447223],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014036894],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6278636866,
-0.0851409206,
-0.090273567,
-0.3862037531,
-0.0675437948,
-0.3547622624,
0.0795951441,
-0.0560417181,
-0.1030185152,
-0.0339616655,
0.7771883747,
0.5357231311,
-0.147654256,
0.5684452563,
0.3947140716,
0.8047551712,
-0.8420761982,
-0.3299114614,
1.2535890904,
0.0676128529,
-0.725831634,
-2.4130101219,
0.276359895,
-0.8755090931,
-0.1118146999,
1.9149836536,
-0.3353846862,
-0.0202902915,
0.4435833312],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002296269],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0433909566,
0.0182903107,
-1.1345312205,
0.2767855595,
0.2577115116,
-0.6227500183,
0.0670232381,
-0.1042600822,
0.6635678891,
-0.2839345919,
-0.9526783925,
-0.7889032913,
-1.5849863155,
-0.525277744,
0.4284888074,
0.4860093002,
0.5842624516,
-0.0434848186,
0.1525358282,
-0.3400075676,
-0.5462042896,
-1.5603752574,
0.6004353203,
0.54833641,
-0.5518482253,
0.3862042139,
-0.1843008649,
-0.1027721273,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011632442],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8969893959,
-0.507829474,
-0.0488103157,
0.3389055963,
-0.6845951312,
0.1066668269,
-0.729528633,
0.2101493467,
1.0608426808,
0.1618933641,
0.4127827867,
0.4945854219,
-0.6978755531,
0.0915289644,
0.2038594434,
1.0097096842,
-1.0412853097,
0.8317539983,
-0.0764734296,
-0.1086976705,
0.1289041158,
0.2511400053,
0.3815855826,
-0.6913512045,
-1.1289773227,
0.3485763306,
-0.0345751205,
-0.1055122561,
0.7285574964],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039178133],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1364199781,
1.2766682856,
0.1663613015,
-1.289676447,
-0.4189951879,
-0.2056287832,
-0.0812271543,
0.6709762458,
0.9803598192,
1.2562785636,
1.0636332172,
0.5656300716,
-0.5642699327,
0.0693150366,
0.2283963977,
0.7210121673,
-0.7277922117,
-0.245199133,
-1.143993864,
0.9899217789,
-0.3074239545,
-0.435588422,
0.1973430697,
-0.5336028663,
0.1124464339,
1.6352611813,
1.937256593,
1.2947459828,
-0.8067743881],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024563074],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0360193457,
0.5524548951,
-0.2317886736,
-0.9844538713,
0.9090179716,
-0.5948977865,
0.9942488492,
-0.0544642707,
-0.3254490049,
-1.0436757164,
0.8892181454,
0.7257150014,
-0.0432062089,
-0.8245609295,
-2.0118805443,
0.9742535312,
-0.3693185098,
0.1791232872,
-1.3962270912,
-0.3306390514,
-0.1657039486,
-0.5455193268,
0.3888894361,
1.0943054129,
-2.4743310771,
-0.5565727208,
0.4336997822,
0.8837596361,
-0.2343554596],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038540363],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9949022958,
-0.2353229863,
-0.1933414334,
0.2438804382,
-0.6060305919,
-0.5959726941,
-0.4473550953,
0.0130534624,
1.3851475653,
-0.1591894511,
-0.8988735395,
-0.3110429492,
-1.4929376589,
0.4060810301,
1.3990823856,
0.2571453516,
-0.5751955603,
0.1541900438,
-0.2598518201,
-0.4635876737,
-0.1818684101,
-0.4412981781,
0.6661739493,
-0.202678582,
-0.8227715142,
-1.890110414,
0.1224715067,
-0.087232852,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045207143],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5165709836,
-0.8556267507,
0.4919224903,
-0.3382292893,
-1.1621913673,
-0.1088320155,
-0.7183332604,
0.0046079265,
-0.0992681152,
0.3708075643,
-0.9412334422,
-0.6255103472,
0.2827306429,
-0.6763083156,
0.4615275365,
1.5469840709,
0.1651080311,
-1.1094055723,
0.8137550769,
0.6210564199,
0.3534860552,
0.4816491868,
-0.4093648724,
-0.1402341416,
0.6369457528,
-0.3648232775,
0.0273840668,
0.1869084495,
1.1677620896],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005069971],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.51283403,
0.4544484525,
1.6207045748,
1.6241911025,
0.8929252135,
0.5619029012,
0.3610013008,
0.1615467774,
-0.8578208441,
0.425713165,
-2.2764318216,
-1.5655130475,
-1.1822406793,
-0.4092013512,
-0.9979749276,
1.6596697675,
-1.5550405773,
0.5132849733,
-2.5579188796,
-0.1040662036,
0.1302183428,
0.3120849371,
-0.8614530631,
-1.4073607907,
1.291746194,
0.1924936008,
-0.3908436238,
-0.4983487108,
-0.4390598515],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00028976798],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.511204706,
-0.7133714585,
-0.0935612041,
-0.2984891159,
-0.6703303505,
-0.4300687676,
-0.1012666604,
-0.1383388189,
-0.6346565341,
0.4209597955,
-0.3516786272,
-0.7296225893,
-0.616446623,
0.0049651198,
0.1132329086,
0.3131979896,
1.0726042435,
-2.3473680382,
0.495048054,
0.478119745,
0.3948374406,
0.6128197019,
-0.5008059817,
0.1887727602,
1.1999125256,
-0.1103428923,
-0.085421505,
0.1121507601,
1.1727196735],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007766783],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3474221186,
-0.5049770196,
0.0995367301,
0.5538837112,
-0.6438949792,
-0.6888661969,
0.3301536486,
-0.1901052006,
0.1277982007,
-0.1649880169,
-0.3319848844,
-0.1039762438,
-0.5314477986,
0.4969073739,
1.2832134992,
0.4317407338,
-0.3927997598,
-0.4484178245,
-0.2193997705,
0.6195117873,
-0.1242615853,
-1.3965046416,
-0.1850905354,
0.6429767198,
0.110536569,
0.3519768126,
-0.2488799662,
0.2248144428,
1.3760497188],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00052806735],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0432823219,
1.3303595159,
-0.1766399945,
0.3875300652,
-0.3222390094,
-0.1557189894,
-0.2011247006,
0.8149802195,
-0.4752334371,
0.5052239308,
0.2242141723,
0.5248989609,
-0.162413651,
1.06636698,
0.4152684284,
0.3180714771,
-0.3470454551,
1.0819306173,
1.1471694134,
-0.0966838824,
0.3280291814,
0.530693744,
-0.2800261263,
-0.6065141607,
-0.2281322255,
-0.7757957113,
-1.7398095664,
-0.412471846,
-0.4667610502],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011228323],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8536820983,
0.0358678955,
0.7745997756,
2.2735401087,
0.0538290688,
0.4985933411,
-0.3037444642,
0.4914000435,
-0.6416796215,
0.5324316838,
-1.8499409779,
-0.1566421849,
0.810827422,
-0.1599504989,
0.390385462,
0.1650888339,
0.050386105,
0.654590319,
1.549964846,
0.31824084,
0.1835760122,
0.6417526213,
-0.8218937751,
-0.8209971314,
-0.3527077622,
0.8014375488,
0.8966597232,
-0.3403180787,
0.9202610135],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00057047606],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4793773008,
-0.3681717419,
1.815252469,
-1.3642605646,
-0.8916202865,
0.3206027053,
-0.26619011,
0.2968035899,
0.1385101591,
-0.7193625356,
-2.1771346803,
-0.3363480176,
-0.4001639657,
-1.3412893835,
-2.4950302842,
-1.1825970099,
-0.1873302456,
1.3348630859,
-2.0112306643,
-0.6172895199,
-0.5606829683,
-0.8214084617,
-0.2689378314,
-0.1640470544,
0.6721100436,
1.854533229,
-0.0478676337,
0.1799064009,
0.6587435452],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [8.133054e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3793927541,
0.5140080918,
1.8099752121,
1.1554477007,
0.0755628274,
0.474658196,
0.0713532673,
0.3266595008,
-0.5002967201,
-0.2335059838,
-0.8144148738,
0.1894984487,
0.3423690281,
-0.6477892534,
-0.7267933426,
0.5326039287,
-0.4251292901,
-0.7236599738,
-2.1478032441,
-0.1820065848,
-0.0190252771,
0.0274695809,
-0.3334080189,
0.1138309752,
0.618574045,
-0.1895607539,
0.0154764268,
-0.024886275,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00083339214],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9606193944,
1.4505308663,
0.4105051355,
-0.017682419,
-0.4278312679,
-0.2855974268,
-0.3841255621,
-1.5846931553,
-0.1290965292,
0.0287059773,
0.47724335,
0.9000855187,
0.6992110186,
-0.2494931777,
1.0569797936,
-0.0034130129,
0.8891302836,
-0.9279159017,
-0.9548074969,
-0.3213589992,
2.8654924612,
-1.7657676604,
0.8564989147,
0.8658859086,
-0.1756674859,
0.2005369032,
1.1276108915,
0.5750232112,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007880628],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1382602894,
0.5981838835,
1.5696625547,
2.1338830351,
-0.4088392622,
0.4775577055,
0.1770897077,
0.1023256408,
-0.9108855109,
0.4340627019,
-0.6920176544,
0.2853597648,
1.4814671317,
-0.5444261426,
0.7461155799,
0.0047323277,
-0.0631236234,
0.41930521,
0.8876937201,
0.4375228979,
0.3750789073,
1.248990222,
-0.0226912391,
0.6523501636,
-0.8870548108,
0.5638156299,
0.4758938272,
0.5701278853,
0.6112227168],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045076013],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0185535743,
-0.5492873683,
-1.3094655521,
-0.5468364005,
0.2787235386,
0.0811231904,
0.0079664413,
-0.1727999137,
-0.9125793586,
0.883067279,
-0.1013118204,
0.858421131,
1.3859644334,
0.1985311861,
-1.0343239606,
-1.4836769374,
-0.7355596654,
1.5211889111,
0.1019014116,
-0.3610988983,
-0.6223466971,
-1.310322634,
0.1187245679,
-0.5501246682,
-0.0627377317,
1.0710021685,
-0.2352358038,
-0.1797215207,
0.8705341889],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035724044],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6723879157,
1.1391159333,
-0.1058465658,
-0.1114941197,
-0.0707804075,
-0.6531972367,
0.4815701379,
0.0941620714,
0.1155916456,
0.5691562367,
-0.8179938272,
0.2609792586,
0.2430834985,
0.2603898755,
0.3183429083,
-0.6918849681,
0.2375678959,
-0.8166496279,
1.239473261,
0.2810367418,
-0.2333341025,
-0.6246350789,
0.2489635534,
-0.0227355141,
-1.2610757457,
0.5652584304,
-0.2101118214,
1.0544402116,
-0.3414883855],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023546815],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0055603329,
-1.2158710846,
1.091860382,
-1.5329133995,
-0.1871646436,
-0.8679768953,
-1.4354044137,
0.5949701136,
-2.213136385,
0.6058794865,
0.3503636974,
-0.8804270728,
-0.401315866,
0.1471027714,
-0.3144603423,
0.5097867354,
0.0550651414,
1.4469015606,
-0.6740519555,
0.0460897274,
0.2775314279,
0.1053485661,
-0.5171172963,
-0.0337454235,
0.6549525597,
-0.4062524165,
-0.0926075919,
-0.8674169229,
-0.394148772],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00052037835],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9827376593,
-1.010678545,
0.0465579608,
-0.574133046,
-1.2997541455,
0.0922810227,
-1.4113627464,
0.2416509886,
0.7933578455,
0.6188644664,
-1.1652913111,
-1.5070668096,
-1.4874918709,
-0.4856897247,
1.048599622,
1.9567665386,
0.019848656,
-0.5265503761,
0.1508078332,
0.0690321838,
0.6196620422,
1.5042343621,
0.3289718156,
1.0931607144,
-0.9545610137,
-0.2518116412,
0.0594392709,
-0.0386731458,
0.7699202117],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00042811036],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.023394556,
-0.6816073547,
0.0093011841,
-0.4096769898,
-0.9235412585,
0.1401368972,
-1.1263522327,
0.0643850081,
0.0989868237,
0.7140683431,
-1.0235524462,
0.3719425583,
1.872700544,
-0.6957866972,
1.4022796107,
-0.4521317353,
-0.9693868466,
2.1300373437,
-1.6118035913,
-0.4933714771,
-0.1575669254,
0.2310419247,
0.5296215346,
0.8305855722,
-1.2073004741,
1.1900856482,
0.0340905955,
-0.0420423907,
0.4344413353],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [6.341934e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9184451016,
1.0175843785,
0.7269224817,
0.8029340598,
-0.4040553427,
0.0447092636,
-0.0332853105,
0.7967688215,
-0.11908516,
-0.4794813857,
-1.3991655044,
0.8095978328,
0.3904000004,
0.1050380102,
-0.957232286,
-0.8676916213,
0.8136676928,
-0.8037653963,
1.5150317201,
0.0451874174,
-0.6875070194,
-1.7713898588,
0.032671542,
-0.130309668,
0.9660186146,
-1.6160043824,
0.2569584593,
0.1902205249,
-0.0055247838],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004862845],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0187024346,
-0.2025449729,
-1.9457257859,
-0.3729688207,
2.0182078103,
2.4446015071,
-0.0784012008,
0.5533381374,
0.1693503785,
0.1351759493,
-0.1330461299,
0.3207323831,
-0.3551638696,
0.6581736019,
-0.0464835865,
-0.7318066917,
-0.1952732039,
-1.0659699083,
0.0139489056,
-0.1843086906,
-0.0306845925,
-0.0198884125,
0.1750389751,
1.2492500115,
0.4800831417,
0.8235392543,
-0.1684734775,
-0.2355375814,
0.0439126834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007455647],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5289680613,
-0.7460245959,
0.5959171132,
-0.5047730496,
-0.5402256029,
1.684949462,
-1.2317230653,
0.6941806941,
-0.1655941919,
0.3882356972,
1.3441527994,
0.803151681,
-0.3129540479,
-0.1652917556,
0.6528701505,
-2.5831317182,
1.1607089102,
-0.2869116821,
-2.1735561241,
-0.7437775525,
-0.4267770299,
-0.3065196975,
0.3300118479,
-2.2297195136,
-0.5271436533,
1.837625844,
0.1575731117,
0.0132119729,
0.3857927086],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023949146],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2089934753,
1.2807024953,
-0.0770044279,
-0.7966903522,
0.6891796631,
-0.5693036821,
1.0781837524,
-0.3521518124,
0.7317582277,
0.9952750169,
-0.2974408618,
-0.8661826959,
-0.5423083463,
-1.6027280501,
0.9147495789,
0.2055299337,
0.3009771675,
0.3902927766,
-0.7568775244,
0.7457104979,
-0.1403476712,
0.3952607838,
-1.0139515133,
1.0340089521,
2.1382603171,
1.5481376387,
0.0599544842,
1.154095987,
0.2460803337],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00056016445],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0608065642,
-0.4131050983,
-1.7329703246,
-0.3634229279,
0.3063437815,
-0.9257336127,
0.5111992658,
-0.4830359869,
-0.9857782186,
0.9022523589,
-1.3391775758,
-0.6340464967,
-0.4236171192,
0.8041156438,
-0.2891353449,
-2.4033963645,
0.10672057,
0.9824719382,
-0.7015812614,
-0.6056931211,
-0.1175713028,
0.18967489,
-0.2695650009,
0.8882463217,
0.9906125184,
2.0542314144,
-0.3623354469,
-0.2239489202,
0.796070831],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006278455],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5786986934,
0.2186954749,
-0.3206024126,
0.4454869955,
0.2755168491,
-0.1201046433,
0.0505088119,
0.1574187617,
-0.2210672077,
-0.4165968838,
1.9978966348,
0.0803285658,
-1.4999277514,
-0.5022009246,
0.9634034629,
0.1333485012,
1.3673011196,
-0.1131540671,
-0.9332296704,
-0.280905037,
-0.0639122274,
-0.1634396348,
-0.0158813314,
-0.6953850162,
0.675028302,
0.8566614122,
-0.0371776254,
0.0631164727,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0023985505],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9945712226,
-0.0919809096,
0.3158071881,
-0.0930441262,
-1.0302962486,
-0.1337088996,
1.3183538723,
-0.0606834035,
-0.0086072645,
-0.2031773006,
1.1226072205,
0.273840567,
-1.1144982494,
0.3230930091,
-0.5010856543,
0.4154380528,
-0.4980691324,
0.1720609339,
-0.139732476,
-0.5719541628,
-0.2408066052,
-0.1823613118,
-0.5897879043,
0.9727080909,
1.1957013898,
0.5627806157,
-0.9543140297,
-0.9882926797,
1.4318457583],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005902648],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5452059338,
0.4783492184,
0.9341417087,
0.9050490702,
-0.2588080518,
0.267636759,
-0.1405975363,
0.4706096247,
0.2043527687,
-0.4697779908,
-1.015566755,
0.6472534837,
0.1283638149,
-0.2439844156,
-0.6684387093,
-1.2734192961,
0.9373541652,
-0.7226080159,
0.7812921639,
-0.3867279665,
0.1139301926,
0.7473126109,
0.1573469543,
0.1960120481,
-0.5043645741,
-0.6061049662,
-0.2489153313,
0.2136656991,
-0.2314553608],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047031045],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4312180289,
-0.0954603222,
-1.0201796281,
0.1856305889,
-0.765662812,
-0.3247395547,
2.1551281358,
-0.0983738484,
-0.621924034,
-1.5459200709,
-0.3529907965,
0.4446212237,
1.4269500386,
-0.8082300576,
0.6389882043,
0.212012903,
0.7079378477,
0.9020274149,
-0.5265244338,
1.3793359124,
0.9421498619,
1.4877707453,
1.9833865916,
-0.2055866781,
-0.15728105,
-0.3547898489,
-0.4430652648,
0.2721280777,
1.6762849845],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008354187],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8661163059,
-0.7172326767,
0.938138583,
-0.0745119786,
1.589782255,
-1.3069000584,
-0.429978373,
0.1454997046,
-0.5384615909,
-0.300519017,
0.9364382146,
1.0016549388,
0.5945948254,
0.3196514434,
-0.3325649911,
0.7404408568,
-1.1728744058,
0.2371059298,
-0.267003664,
0.5850451965,
0.0908475647,
-0.6865741232,
0.6564298097,
-0.0395107865,
-0.9027705147,
-0.2553805576,
0.0473723648,
0.5808208943,
-0.1944465718],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00062921643],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0270136452,
-0.0427876822,
-0.6683370523,
0.2860088792,
-0.082572978,
-0.851448515,
0.1483855386,
-0.250442646,
0.4731474227,
0.0652387763,
-0.6651145059,
0.4306473724,
0.0260952985,
0.3011336967,
0.0901900414,
-0.1886424897,
-0.2565926586,
-1.1120006241,
0.0917617045,
-0.3050376963,
-0.3931677813,
-0.9605278711,
0.6109626897,
-0.0331916608,
-0.5924710868,
0.415413539,
-0.1700535365,
-0.1809486765,
-1.1816916919],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013194382],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5304567668,
-0.2631775252,
0.7385666009,
0.6090248763,
-0.7615606225,
0.1334817964,
-0.5601635182,
0.2118654449,
0.930232888,
-0.2404033905,
-0.6278313468,
0.0584509732,
-0.8464031386,
-0.1908610327,
0.5963123556,
-0.100538094,
0.1808410723,
-0.6559796492,
-0.5082453704,
-0.1268230533,
-0.0659198807,
-0.0863616686,
0.0652773106,
0.1383454163,
0.266351031,
0.7118811627,
0.0418906271,
0.1037270829,
0.5136563059],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00075006485],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3779106471,
0.0405310936,
2.0336862267,
1.2698172096,
-0.3342314362,
1.2006768983,
-0.4462641609,
0.3732167211,
2.0009307083,
-0.3910627052,
1.3957525205,
-1.3882249835,
1.3458604732,
0.3275054267,
-2.6526378935,
-1.3809610623,
1.5333194937,
0.4782871104,
1.2553150504,
0.4427569447,
-0.1291217474,
0.8770039545,
-0.1442277416,
0.0089137555,
-0.3012289895,
-0.3379831762,
0.6692562307,
-0.0709534109,
0.4987126301],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00069373846],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5901442342,
0.1249319645,
0.0120697694,
0.4004520965,
-0.1299501102,
-0.9180757758,
0.4593268212,
-0.3103093497,
-0.2892024294,
-0.0848447043,
-0.068178612,
0.6572850405,
0.7663924222,
0.3653875069,
0.7463216442,
-0.0061765129,
-0.3239140669,
-1.1162558512,
0.1049780863,
0.0830899322,
-0.4711326706,
-1.5658139515,
0.161656295,
0.6742698576,
0.5603254001,
0.2671156919,
-0.176150202,
0.0770571295,
0.6074019319],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00068995357],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5179508833,
0.8764452178,
-0.1602554423,
-0.7307136396,
0.6657665643,
-0.6419274079,
0.701762344,
0.2536776436,
-0.3438127793,
-1.1541684112,
-0.9766978325,
-0.117349791,
-0.0685698516,
-0.7215240954,
-0.5842730005,
0.6840303972,
0.3924240269,
-0.1787717977,
-0.736213933,
-0.1401902407,
-0.402338694,
-1.3231766248,
-0.166207773,
0.7891889257,
-0.1116644975,
0.1754064078,
0.104996215,
0.3892779991,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031083822],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1454068628,
0.422044103,
-0.6539022116,
-0.1174324783,
0.5078299611,
-1.0230521653,
0.8145094385,
0.1062132606,
-0.6104676378,
-0.4818385032,
0.480549647,
0.5423112957,
-0.9589668954,
1.2915599181,
-1.2007000565,
-0.8297654436,
-0.0679009467,
0.2972624989,
0.8306045193,
-0.2263891183,
0.528260003,
1.2994078351,
-0.2078050838,
0.1722611071,
-0.2093495968,
-0.3062990377,
-0.1129536354,
-0.0895286427,
0.3484006725],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014453232],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1416223153,
0.8891206047,
-0.6676360814,
2.4273668659,
2.231631668,
3.5619340428,
-0.0320106493,
1.1544887039,
-2.3023523027,
1.1635239741,
-0.6273072846,
-0.6976425088,
-0.0773210047,
0.9750628166,
0.659951374,
-0.6409881058,
0.4493472459,
0.2196569101,
1.2384910897,
0.2175659303,
0.7154531045,
1.9031794033,
-0.440255337,
1.2749013062,
-0.2096506363,
1.5801496556,
0.1989392803,
0.3342887486,
0.1169633093],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000747174],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0503920865,
-0.3687391259,
-0.3343065342,
-0.1641956203,
0.8563000576,
-1.0840929908,
0.3824848058,
0.3532936336,
0.124166696,
-1.6471422453,
-1.1820648578,
-0.3794031169,
-0.7499850859,
-1.1979005786,
-0.365687358,
0.2577561911,
1.4268753368,
0.5993385581,
-0.0060697088,
0.8748074371,
-0.0124072031,
-0.9527732937,
0.1502742743,
-0.9656540863,
0.4228759373,
-0.1190809735,
0.4864694539,
-0.2219964453,
1.0339700432],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00076013803],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.5286298581,
-2.265947276,
-0.7905394937,
0.5593514424,
-0.0542113941,
-0.456806588,
0.1907933196,
0.2638216564,
0.8665567012,
0.2244418535,
-1.0135242206,
0.1952224276,
0.8157039535,
-0.1294594791,
1.3199376399,
1.4171578496,
-0.7676110098,
0.1645435182,
-0.0449812967,
-4.0926805281,
-0.9798339823,
1.2234913121,
1.9008157464,
1.2874435087,
0.9746031209,
0.7382667234,
-2.6848420427,
3.5652946309,
0.832280288],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [5.4061413e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0346721874,
0.0004253139,
-0.7913587684,
0.1764892841,
0.2379378089,
-0.4487581473,
0.1702939341,
-0.222390829,
0.3014073281,
0.0255809082,
-0.5894292315,
0.997739573,
1.3136419762,
0.0278337993,
0.0007852268,
-0.1801595566,
-0.4173225389,
-1.1981822363,
0.1556922361,
-0.1483507056,
-0.3912034143,
-0.933902948,
0.6159784136,
1.0528639819,
-0.4455914038,
0.3521938627,
-0.1640807984,
-0.1531212369,
-0.7463605294],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001191318],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4512951705,
0.4338219337,
-0.1848709905,
-0.4801600771,
0.4670357752,
0.2237217653,
0.9659158931,
-0.148581167,
0.7711397683,
0.5987618934,
0.1615593599,
0.3301306767,
-0.4643280628,
-0.2278994014,
0.2427066488,
-1.5478892167,
0.6229932245,
-2.8414641526,
-1.7497441064,
-0.1765508981,
-0.3209661738,
0.080625703,
0.4384019855,
-1.0033327004,
-1.7620598872,
0.3765295097,
0.0192820308,
0.3498881844,
0.7704734933],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013130903],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0518786218,
0.5639927185,
-0.3892416006,
-0.554828527,
0.9284747152,
-0.1284443724,
0.7697857442,
0.0423072101,
-0.3189435378,
-0.6043374047,
0.5897017576,
0.595868021,
0.4327822081,
-0.9421276887,
-1.0438539646,
0.7436539855,
-0.1160245922,
0.5099727899,
0.3196957184,
0.1666231404,
-0.4245053175,
-1.1190219558,
0.1209912163,
-0.0157305271,
-0.6703010626,
0.260969402,
0.5121640011,
0.2360580079,
0.0787926297],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008145869],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5974833372,
-0.2142250259,
0.6780077928,
-0.4550078422,
-0.8163376068,
-0.3320537,
-0.6143953608,
0.0405394241,
2.5668490358,
-1.1268098489,
2.1261143846,
-1.1795134724,
1.3201910762,
1.5635473179,
-0.1654385423,
-0.3022737635,
0.3982398683,
1.1848442844,
0.796621425,
-0.1945161502,
-0.1491350367,
0.1465480476,
-0.0648335184,
0.4714222312,
0.8416367123,
-1.5334586366,
0.1403377914,
0.0734216137,
-0.2402067958],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013000071],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2383513873,
0.3157419479,
-0.305194312,
-0.4767957962,
0.5183000444,
0.7627795398,
1.2202282798,
-0.0555613513,
0.0502712302,
-0.4082666277,
-0.5486279258,
0.0014893542,
-0.7424336363,
0.321123903,
-1.0996180296,
-0.3556143538,
-0.7309422261,
0.6878581319,
1.6142476071,
-0.359926594,
-0.0039386429,
0.3324246434,
-0.2821193197,
-0.7703483933,
-0.3440633984,
-0.6157327824,
0.0991279759,
0.3523198332,
1.0811307052],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008209944],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.116703439,
-0.2788683286,
0.011890068,
-1.3388860553,
0.3566637846,
0.0481159027,
-0.0950693581,
0.1539678791,
-0.810337437,
-0.4933418993,
-0.0512729274,
-0.9737397356,
0.0671576501,
-2.1094232696,
-0.6985315149,
2.5895584384,
0.6166390917,
0.8144577648,
0.9798999569,
0.5122080287,
0.4091677269,
0.8042025359,
-0.3317177503,
-2.5309127373,
0.6005869118,
-0.0349571678,
-0.0537779287,
0.0097748983,
0.7643533383],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024721026],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1092903563,
0.006640474,
1.1997168215,
-1.4089445762,
-0.6241811973,
0.6894794034,
-1.1630523857,
-1.1166918312,
-0.7880877405,
0.1620633902,
0.4428347123,
0.3525051339,
1.6625703881,
-0.7368454437,
0.0893449291,
2.7487258836,
-1.0449225333,
0.0567522198,
0.0723790051,
-0.1387234912,
2.6175201859,
0.60392777,
-0.8027411653,
-1.3217846665,
2.9972542364,
0.1022842582,
0.3444184099,
0.4378494659,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [7.453561e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6829333689,
1.6865902683,
-2.3564168931,
-0.1860766286,
0.6307936048,
-2.1320578189,
0.7778190501,
-0.5656252159,
0.2565907136,
-1.0790392804,
0.5732552168,
-0.8242905079,
-1.2944054342,
-3.4272238803,
0.3779345481,
0.98579561,
3.8726836463,
1.7337251059,
-1.494031146,
-0.1293636018,
0.9110736852,
-0.2760606333,
0.1650689262,
0.1318610194,
-0.004068419,
0.1284586636,
0.3580929223,
-0.3855372647,
-0.4621452828],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.003778398],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6267054017,
-0.4787345656,
0.3573488713,
-0.4243817114,
-0.9592703456,
-0.7121591406,
-0.4473849572,
-0.1502270362,
-0.6192206148,
0.5233681668,
-0.238401639,
-0.6371691955,
0.1253612476,
-0.1878853564,
0.9732791515,
1.4289646043,
0.219323932,
-1.5123431488,
0.5605519841,
0.3055302272,
0.2107182118,
0.2186216589,
-0.0805618696,
0.6385021696,
0.6379345862,
-0.599456035,
-0.0050341152,
0.1207693196,
0.7727355459],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000849545],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2557459045,
0.6280961478,
0.6881666078,
-0.3140433003,
0.4754753635,
0.0820565579,
0.4945478533,
0.0765262269,
-0.5518356899,
-0.0333934536,
0.3719585469,
0.5702077078,
0.7756339889,
0.1189300737,
0.1834656795,
0.771896482,
-1.25612666,
0.542257891,
0.9287879377,
0.2125457045,
-0.322159425,
-0.9100225124,
-0.2094138337,
-1.4183723384,
-0.079835115,
0.2342591461,
0.3226961828,
0.3023461802,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005970001],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0077874287,
-0.2827094317,
-0.6799780727,
0.0996635179,
-0.2063033551,
-0.368916374,
-0.2601025853,
0.0467070311,
0.7512006015,
0.2620315135,
0.204919086,
-0.2791616764,
-2.2157179959,
0.7913484614,
-0.1830761981,
0.4211762522,
-0.6365682207,
0.3910439375,
0.4409776263,
-0.4254996466,
-0.0294257806,
-0.0712609292,
0.3145907064,
-0.8189544452,
-0.5102165541,
1.182857793,
-0.2098479301,
-0.2403782426,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012193918],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4100692199,
-4.071392481,
-1.8854096821,
-0.3149393127,
-1.8400213196,
0.059264073,
1.0395775034,
-0.5688315394,
-1.4264295249,
0.6934123072,
-1.5162573662,
-0.6229429733,
1.5986947637,
-0.1046619239,
0.3666147734,
0.1644970269,
0.0426255997,
0.0992065765,
-0.1875308435,
3.9766249735,
0.4544659837,
-3.3536141674,
-1.7769722044,
-1.6945774805,
-2.1272750628,
-1.6601468801,
-0.7322088843,
0.7719562898,
2.227527103],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.2768974e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.088711289,
0.6118679248,
-0.5274100897,
-0.7308876272,
1.311267016,
0.9775394491,
0.5028517863,
0.4383558969,
-0.0578661094,
-0.4207833563,
1.0692246384,
0.4781596541,
-0.2885476315,
-0.8006062236,
-0.10705868,
-0.2069802041,
0.8326975046,
-0.993368034,
-1.0094818059,
0.0835582242,
-0.391239891,
-0.7636543375,
0.1906877896,
-1.7823057778,
-1.0311862463,
0.4738707134,
0.9037951232,
0.3748666858,
-0.7976822462],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00074118376],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6125180065,
-0.1469931557,
0.1586022234,
-0.9241396419,
-0.5711540532,
-1.0330154042,
0.0512838025,
-0.1875747403,
0.9298691861,
-0.9333776442,
0.6730758164,
0.979434362,
0.0949296329,
0.4204524631,
1.9754949685,
-1.0794713326,
0.3976299117,
-1.1778091539,
0.2955705384,
-0.1105862329,
-0.1554542251,
-0.3331358984,
0.203465759,
1.076164813,
0.5587459034,
-0.2685819238,
0.0087881873,
0.0700870972,
0.0680394105],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009199977],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.957760633,
0.191623134,
-0.0417116027,
2.5750524309,
0.077753776,
0.5185221856,
-0.4166301375,
0.1666390763,
-0.3866061962,
1.2833632825,
-1.5138874973,
-0.6040763652,
-0.0985984388,
-0.0527080865,
0.0259961603,
1.7112965444,
-1.3666054584,
0.3724562129,
-2.1884272258,
-0.3363589273,
0.2257347138,
0.622572563,
0.3755705093,
0.7087376151,
-0.4341910223,
-0.038279984,
-0.0015644549,
-0.0763984014,
-0.809402912],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020253658],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9875032439,
-0.3222080012,
-0.3729686778,
0.1243269034,
-0.2002472741,
0.3409267182,
-0.6273542847,
0.1943478994,
1.1277521169,
0.0098044528,
0.1781383685,
0.8002665501,
-0.1242286612,
0.0135396103,
-0.1342861036,
0.5143859048,
-1.0744043758,
1.1263380171,
0.3345921455,
-0.2273163837,
0.2798186641,
1.0294356621,
0.1440596061,
0.3435098668,
-0.081976435,
-0.4811551867,
0.0678448584,
-0.13137878,
-0.1944465718],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00080147386],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9441940577,
-0.5894333804,
-1.3684999685,
-0.2395255028,
0.018286367,
-0.6605459608,
0.3671473645,
-0.3781975377,
-1.130814249,
0.9342019357,
0.5004200576,
0.8798768313,
0.7744844556,
0.5483019956,
-1.2936197851,
-2.1707446247,
-0.1939207036,
1.2416236273,
-0.4368445486,
-0.3463045255,
-0.1683384817,
-0.0654910628,
-0.2421273881,
-0.5602263606,
0.4412758844,
1.4480844264,
-0.2847688352,
-0.1933680611,
1.0740253448],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007227063],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7793207813,
0.8254585738,
-0.8818202828,
-0.7084593018,
0.4034867126,
-0.7873551994,
0.2182757261,
0.6409686649,
0.3002834537,
-1.9058841243,
0.5803436852,
0.699514068,
-0.5286170966,
-1.5866886935,
-1.2419208144,
0.263757335,
1.8887478302,
1.8323088653,
0.2665268391,
-0.4393108853,
0.2153449657,
0.7928225227,
-0.4269814181,
-0.9489237884,
0.3233520717,
-1.3109928092,
0.0300092959,
0.3484621982,
0.1317278233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012639165],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3164679228,
-0.1458560939,
1.4346541235,
-1.2814501183,
-0.5934113902,
-0.0850642392,
0.0610463528,
-0.0744181968,
-0.6159250449,
0.1494962655,
-0.348287899,
-1.3587749328,
-0.6225661594,
-0.6614436944,
0.9311298111,
1.4547212964,
0.0169540028,
-1.3298320311,
-0.8217069495,
0.0796195596,
0.6126786045,
1.7826762093,
-0.3780490498,
0.154457326,
-0.0874342052,
-0.4291926336,
-0.4090720525,
-0.3491923286,
0.6446368299],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049319863],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4662248908,
-0.3024800491,
0.6582116119,
0.8360118204,
-0.5434735163,
0.6247073039,
-0.5504814559,
0.3576388486,
0.6730968756,
-0.0748604447,
0.6882714309,
0.6913710805,
-0.8444544118,
0.0408332191,
-0.1666285197,
0.1371272386,
-0.323978452,
0.2698456989,
-0.2230821682,
-0.0257277143,
0.051819186,
0.0916390195,
-0.1523701068,
-0.538969736,
0.5724255088,
-0.7906667574,
0.1477318068,
0.1196070116,
0.8046118342],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00065150857],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2018167082,
0.04655962,
-2.4712241995,
-0.8265775399,
2.1853279305,
2.2255340795,
1.2876871651,
0.7143691849,
-0.6707096265,
-0.4113558039,
-0.4609845944,
0.064402397,
-0.3873130222,
1.4557484155,
-0.1694067472,
-1.2996054071,
-0.0736430344,
-0.2971416021,
0.0851395089,
0.6248223904,
0.972706938,
2.2464264781,
0.9991381142,
1.2476799429,
-1.7510065296,
-0.2685904223,
0.910952044,
0.9651126698,
1.2929697829],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00015473366],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8018054642,
0.6295550437,
0.1154063469,
-1.062893823,
0.4369841958,
-0.3869601275,
0.9977143924,
0.2838560375,
-0.3740473285,
-1.9500922801,
0.6304624555,
0.8013772073,
0.0565282757,
-1.2702602462,
-1.9408591633,
0.8389005048,
0.5069864973,
0.6645331972,
-0.8652035885,
-0.3616103065,
-0.2369493448,
-0.7747837954,
-0.4024534656,
-0.8666548994,
1.8650716891,
-0.2977776867,
-0.5231611496,
-0.1602046015,
0.8321825861],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005467832],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6300420872,
-0.0642863953,
0.3860790152,
0.0301322576,
-0.3467140668,
-0.0800300742,
-0.4618430274,
0.0145579235,
1.4047377142,
-0.2931195883,
1.6277878665,
-2.0955805553,
1.4478177732,
1.749026211,
-0.0399601405,
1.0040576837,
-0.2053084118,
1.1117731522,
0.183395197,
-0.0936083505,
-0.0903634606,
0.0145334001,
-0.1755406138,
-0.5753431395,
0.4965776796,
2.1823630902,
-0.240524674,
-0.0280294765,
-0.0921763942],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004505217],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2338113871,
1.372211128,
0.7889504839,
-0.6294439134,
-0.0599798922,
-0.8175059524,
0.6489664337,
-0.0796367774,
0.6479969218,
1.2822565568,
-0.1930867645,
0.249966578,
0.477224397,
-0.5012156829,
0.609425388,
0.3049740381,
-0.8085846476,
-0.7070766267,
-0.9672978766,
0.960504538,
-0.5927263634,
-1.1846767799,
-0.2964479057,
0.5825622465,
1.0985427037,
0.0732108526,
1.4854488741,
1.676395131,
-0.5432222462],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00029796362],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.187814855,
0.5434166643,
-0.0660080264,
-0.7057460203,
1.2700333511,
0.0319934179,
0.7524467688,
0.0831289928,
-0.5484316976,
-0.919559987,
0.0838768817,
-0.0420369048,
-0.3210683762,
-0.7238158365,
-0.8954636846,
0.8344194735,
-0.1662221797,
0.8221645756,
0.7097594984,
-0.0056203443,
-0.401360278,
-1.2974612464,
-0.330244082,
-0.6776350165,
-0.278599519,
0.3955599696,
0.1229480968,
0.4602792238,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010008216],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0835191482,
0.6786062945,
-0.3320705795,
-0.3310672958,
1.2064015633,
-0.2636927035,
1.0960147036,
-0.308929687,
0.2323606255,
-0.4978410206,
1.5429360733,
-2.0706257311,
1.7331988288,
2.3851109913,
-0.8050109927,
-0.9681274117,
0.4747526393,
0.7123556821,
1.6604411449,
-0.0480506074,
0.177918157,
0.8990491367,
-0.7122433531,
0.3972177572,
0.1765956453,
0.6036918685,
-0.0876967595,
0.3859217293,
0.0901858743],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017042458],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0202498833,
0.0642739676,
-1.1682649213,
0.2324247801,
0.2635945921,
-0.7451615649,
0.1142309036,
-0.154721274,
0.3823490975,
-0.2463182624,
0.8924935664,
0.3131714922,
-0.5911941598,
-0.4436673868,
0.3064627372,
0.5972724266,
0.0452987554,
1.4307007818,
0.0085039358,
-0.2846928507,
0.2965391456,
1.0055223867,
-0.1188745838,
-0.8226790214,
0.4965659005,
-0.1957890588,
-0.0307461322,
-0.1360211537,
-0.7428892969],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011821985],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6123930183,
-0.8753821483,
-0.1000929174,
-1.0959053126,
0.3802317966,
3.1071115275,
-1.517773919,
0.9093145311,
-0.0676048458,
0.491755092,
-0.5732124101,
-0.1486412492,
0.5024734459,
-0.5313540451,
1.0220323232,
-0.6619974259,
-0.6800208783,
2.3121804921,
-0.7590766137,
-0.2245128161,
-0.2936703024,
-0.4314317046,
-0.0759698304,
1.7686682637,
0.2909276428,
2.3867410333,
-0.0089804473,
0.1163849221,
0.7465738083],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00012892485],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.831891143,
-0.5945621188,
1.1617507555,
0.4132166073,
-0.3683989082,
-0.2257435443,
0.8507195278,
-0.0613481114,
-0.4803186548,
-0.7582679424,
-0.2750486716,
0.4463687422,
1.357712827,
-0.2292352482,
1.2918792572,
-0.1561480442,
-0.1637839665,
0.2926765243,
0.4652171447,
1.5023135285,
0.7107098166,
1.0352809278,
1.0226296267,
0.6488268632,
1.000418721,
1.2922544719,
-0.2335607813,
0.3739146244,
1.4578415108],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00050479174],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1826211468,
0.4578290736,
-0.1021456551,
0.3507990148,
0.3281423762,
0.8183713443,
0.3069304649,
0.591613105,
-0.6219967541,
-0.2412372409,
-0.473495417,
-0.4625209866,
-1.0461087938,
1.0520540223,
0.880983898,
0.3760063439,
-0.643683337,
1.1220225505,
1.1333628384,
0.0120323515,
0.2435792038,
0.2785966852,
-0.0291161059,
-2.9358235388,
-0.0198263807,
-0.4268268801,
-0.1844962259,
-0.1338628986,
0.8224140127],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011223257],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.166201351,
0.4299584486,
0.5652897131,
0.7275883347,
-0.1286124945,
0.1982664699,
-0.4275828719,
0.4418003355,
-0.1899317821,
-0.2866638104,
-0.8523599623,
0.2555766043,
0.9809996254,
0.3055441352,
2.4321121439,
-0.8394463058,
0.498460556,
0.9129935659,
2.9053637982,
0.3257032709,
0.5258991992,
1.5494596655,
-0.1822690378,
1.1135192566,
-1.1916836388,
0.2640916876,
0.3791445551,
0.3354154997,
-1.3891632464],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00086453557],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.7354767208,
-2.7599271494,
1.7573995231,
-0.3967034547,
1.9079623217,
-0.8333656032,
-2.4418869252,
0.7869275113,
-0.218141735,
-0.0804722525,
0.7792175816,
0.4428241443,
-0.4545606763,
-0.815024667,
-2.0097347655,
0.1919989125,
1.195394209,
-1.8184783137,
0.0561586617,
1.4826356529,
0.9593889023,
1.348824023,
0.8730659689,
-0.4328109791,
1.2176400814,
-0.0655369064,
-0.1383541564,
0.4029088998,
0.7384438012],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024157763],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0152123076,
1.6480839366,
-1.0657442709,
-0.7689961777,
-0.2683448688,
-1.9179999465,
0.7468689414,
0.3480993379,
0.4249028853,
0.8494634095,
-0.4189106703,
0.0099809441,
-1.3390114762,
1.2205152251,
-0.1500944017,
-0.8657878371,
0.3081922997,
-0.6585282407,
-0.81865257,
0.5088371584,
0.2782930688,
1.174684403,
0.1076584384,
1.5486678898,
-0.1931110605,
0.1368117141,
1.869639716,
1.6108258976,
-1.656206039],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018447638],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3028147465,
0.4745305864,
-0.2188185955,
-1.4564192748,
2.328878865,
2.6788402636,
0.5072458999,
0.7180667236,
-0.4873587907,
-0.9592746611,
-0.089553837,
-0.182510832,
-0.3640474954,
0.6180977246,
1.0865378347,
-0.4598233528,
-0.6879117676,
0.1514664848,
-0.4294266581,
-0.0521634006,
0.3704376493,
0.9616482411,
-1.1027326963,
1.2112388798,
2.2251795222,
-0.5716545509,
0.1248874298,
0.136774006,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003362596],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.015939678,
-1.0052025164,
0.2751789644,
-0.0841259346,
-1.215877464,
0.9931830039,
-1.6695581219,
0.4094638052,
1.4644182578,
0.4198649514,
-2.6305018807,
-0.0445748188,
-0.1225922659,
-1.4654702391,
-1.6611920262,
-1.577526498,
0.1367067423,
1.8720684704,
-0.3174227534,
-0.7478011463,
-0.4709021091,
-0.0564747025,
0.3586532402,
0.1931402044,
-0.7816194319,
1.5446217674,
0.1319040887,
-0.0842005865,
0.1317278233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011655688],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1061386553,
0.6618449914,
0.5996539908,
0.8751264015,
-0.2874713994,
-0.3248767067,
-0.3954606542,
-1.4578761881,
-0.3849566114,
-0.0105397407,
0.0752906145,
0.2668124189,
0.4635140929,
-0.1146715506,
2.0649394267,
-0.1716925962,
0.7956481745,
-0.0855783901,
1.640317093,
-0.1750733219,
1.7314198051,
-1.8080782596,
-0.0557036305,
0.5846762392,
0.8110300016,
0.8323224151,
0.4924209478,
0.7825732719,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011199713],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2935735833,
-1.6408656903,
0.6782642779,
-0.988360926,
2.0236236917,
-0.0236370618,
-1.0400666591,
0.4374660663,
-1.1998885807,
0.2625241601,
0.9186917779,
-0.0841414869,
0.1855714335,
-0.0843661993,
0.2171332567,
0.1523791542,
0.8948973305,
-2.2180812574,
0.8805654944,
0.3402212546,
0.4436448459,
1.1344700137,
0.7343781493,
-2.6933560783,
1.456419682,
0.3512023077,
-0.3548937632,
1.0253176313,
-1.1264508552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022092462],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9174092569,
0.2064753225,
0.1468295246,
2.8224476211,
0.091971989,
0.6955020169,
-0.4851362318,
0.0884494414,
0.7888319993,
0.8510368841,
-0.3744365574,
-2.2946344188,
2.6539574348,
0.9997026251,
-1.4515233435,
1.2502287231,
-0.2761866851,
0.3194020254,
-2.4882444689,
-0.2506085074,
0.1287238806,
0.8217796957,
0.2827979002,
0.9144165809,
-0.3137202665,
0.0417959746,
-0.0321402237,
-0.0752923176,
0.2263686947],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020086765],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0254770905,
-0.0094338071,
-0.7409223454,
0.2933355768,
0.0573850363,
-0.8099944064,
0.276950805,
-0.3414560326,
0.325039025,
0.0174384236,
-0.6910126129,
1.1259921459,
1.4264135139,
-0.0333805631,
-0.4108349525,
-0.3247220715,
-0.3587913465,
-1.1847560558,
0.3084056413,
-0.1457852535,
-0.3272207063,
-0.6598457153,
0.4227639439,
-0.1045117397,
-0.2426515325,
0.5727536982,
-0.1669859865,
-0.1781760909,
-0.1301314558],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00079107285],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2017739233,
-0.332838428,
1.5670686963,
0.1808224222,
-0.8294563669,
0.3557505539,
-0.8207174645,
0.2652746759,
-0.0043494302,
0.2089756995,
-0.960125429,
0.5783284422,
0.3135954749,
-1.2172329875,
-1.4387777292,
-3.4389161971,
1.7522189009,
0.2293018611,
0.7256811794,
-0.6229265029,
-0.756316119,
-0.8206220115,
0.106666997,
0.7401611917,
-1.2100021524,
1.269866674,
0.1326116257,
0.1252526739,
-0.435936499],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017631054],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0433739383,
0.1438501881,
-1.0980619584,
0.2577959911,
0.4437785568,
-0.5708965911,
0.2244492019,
-0.2381157485,
0.2793329695,
-0.3578379237,
-0.4837461018,
0.6983734584,
1.2572243098,
-1.0984832861,
0.0885360359,
0.3377384073,
0.4012818373,
-0.453761866,
0.1283798098,
-0.0990494897,
-0.5004388474,
-1.2393796188,
0.5401902045,
0.67789559,
-0.3700971351,
0.3664246486,
-0.1398441698,
-0.0830515849,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015962422],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9304601599,
0.7737998147,
0.3006487579,
0.7411463417,
-0.4583326438,
-0.0377844582,
-0.3767925367,
0.9140057732,
-0.439002944,
-0.2862389522,
0.1959834344,
0.986897285,
-0.1904456384,
0.779069404,
-0.8313014135,
-0.0899290372,
0.2115854854,
0.5136424005,
1.6240912738,
-0.648816866,
-0.0575624324,
-0.190014873,
0.4697905477,
-0.0179139691,
-0.6500363245,
-1.1842918916,
-1.6116353523,
-1.0105048428,
-0.2176044086],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008339286],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5466106449,
0.3567868577,
1.2406648391,
-0.0359342588,
0.5759068038,
-1.0163233568,
0.307302685,
-0.065318595,
0.7194274228,
-1.1789215471,
0.4956285753,
-3.0498710935,
0.797193732,
1.2513281681,
-0.0757113984,
0.670372539,
0.6848556585,
0.2687558895,
-1.0149013773,
-0.013055207,
-0.484644791,
-1.5286243543,
-0.0922496767,
0.3943118482,
0.3615102476,
-0.0307873491,
-0.1472420202,
0.2501548254,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006878078],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6506964201,
-0.134588362,
-0.1439331967,
-0.3561084835,
1.093119835,
-0.8149115135,
0.6662287693,
-0.1977601909,
0.21461777,
0.0648071934,
-1.255923596,
0.3548812037,
1.0080949378,
-0.2480689904,
-0.2975150927,
0.0744762202,
-0.8122269577,
-0.8366936398,
0.27618215,
-0.4931185522,
-0.7013661931,
-0.7065949941,
1.7542061612,
-1.192722216,
-0.112849311,
0.4922596725,
1.2822651958,
-0.1311694797,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011122227],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9351790308,
0.3550518644,
-0.2249291664,
2.7174190616,
0.4193434593,
0.4415660654,
-0.1082044526,
0.0365907061,
0.1466604857,
1.0895282872,
1.4328202462,
-1.9029791086,
1.8622157812,
1.7426324716,
-2.3664596901,
1.1789747927,
-0.391121444,
0.4572275743,
-1.8366080783,
-0.3475738918,
-0.0964869458,
0.0228632796,
0.4044381096,
1.115378827,
-0.2458729066,
-0.3228920881,
-0.1484402044,
-0.148958263,
-0.2092378705],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005952418],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3186761805,
0.4807289435,
0.5152002837,
-0.9938695072,
0.6275062306,
-0.2917408848,
0.7224361812,
0.0908781432,
-0.5050352737,
-0.3658571249,
0.0947770074,
-0.317962329,
-1.1147338792,
0.6291388212,
-0.2715347413,
0.9166548702,
-1.1711303492,
0.1422144667,
0.638438853,
0.0930894038,
-0.6018625165,
-1.9464823339,
-0.168823705,
-1.4544448056,
-0.2219216016,
1.1469370029,
0.4656302179,
0.4155112601,
-0.3178446693],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003427863],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9723085753,
-0.1315985844,
0.2639505978,
1.5275437266,
-0.5658408663,
0.089622023,
-0.6029890835,
0.059697787,
0.1845295857,
0.7870022624,
-1.1527751308,
0.671665885,
1.1682911454,
-0.9504863272,
-1.7011251938,
1.0324993287,
-0.387228016,
-1.4107634381,
-0.6897947638,
-0.1612000943,
-0.4436282767,
-0.9507147466,
0.8516050721,
0.2184777851,
-1.7507458138,
3.9901570921,
-0.3247502758,
-0.1735631565,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00066140294],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0131412516,
-0.0937060649,
-1.103055307,
0.2941980855,
0.276666132,
-0.5027921892,
0.2466278253,
-0.1152547884,
0.2404289899,
0.3000657908,
0.5720780866,
0.2727368631,
-1.5763142714,
0.9077218339,
-1.0740561807,
-0.3442582713,
-0.3102101155,
-0.1183079487,
0.540615792,
-0.3601920093,
0.0131946827,
0.0983011257,
0.1911088272,
1.2918639454,
0.2986383394,
0.6755763822,
-0.2545073086,
-0.2356034958,
-0.1231026233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013226271],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9714179348,
-0.6961028428,
-1.0596403812,
-0.6983165743,
-0.3330082795,
-0.7661147694,
-0.04105513,
-0.2557283206,
-0.8060987862,
0.8751394824,
0.8125125999,
-0.194174514,
-0.3236673468,
0.4773851872,
-0.421503209,
1.3139693166,
-0.145567008,
-1.2754315722,
1.2868466484,
0.3092923546,
0.2201566767,
0.0387584297,
0.0894992044,
-0.5830759477,
-0.2216683313,
-0.6761430324,
-0.203857411,
-0.1544635329,
1.0342957917],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005146563],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2029448758,
-5.4913716275,
-2.1432597603,
0.5622756837,
-2.4079931879,
0.7925839379,
1.4796156719,
-0.3182314243,
-0.1403119503,
-0.1088386426,
0.2232852677,
-0.8364392244,
-0.8846049579,
0.5592089986,
0.4697715669,
2.3986899975,
-0.3652916166,
0.5388113813,
0.0338647934,
6.3076055101,
2.5354105912,
-0.3429299119,
-3.4319428948,
0.5071742877,
-2.0439352945,
-0.6932071365,
-1.1132649141,
1.1424744447,
2.4058286421],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [4.824996e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6729706218,
-0.9142931266,
0.7725416397,
-0.9057693929,
-1.4316888768,
0.3468019868,
-1.4184292864,
0.2787804748,
-1.1289196211,
1.2302729099,
0.9504475075,
-0.0893488965,
-0.0504234837,
-0.6628534649,
-0.708867839,
-0.6327995151,
0.8854379401,
0.1933891783,
-0.1887738953,
-0.4639478749,
-0.2209392527,
0.0676983648,
0.1413933278,
0.0052342492,
0.2508840878,
-0.3784208585,
0.2055160466,
0.0752489262,
0.1792129317],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004645288],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1944300965,
0.0469701778,
1.2651620777,
-0.4061510843,
-0.3806825393,
0.6248006335,
-0.0174220492,
0.3649878993,
0.3458269209,
-0.698973627,
0.6558750063,
0.8530914998,
-0.2386951568,
-0.4412914691,
-1.0253320234,
-0.2253997809,
0.081450776,
-0.3234155349,
0.8072884651,
0.0868608797,
-0.1076433414,
-0.1426350188,
0.0775531467,
-0.4077801398,
-0.6432521876,
1.9274757947,
-0.0390368621,
0.0285101398,
0.5433979379],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033685565],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0540638572,
0.1414914641,
-1.274241973,
0.0486340139,
0.5749734752,
-0.9539518233,
0.5585152595,
-0.477314756,
1.0071644697,
-0.1721823336,
1.8257161519,
-1.2693857273,
2.2517848414,
2.336863703,
-1.2424013152,
-0.4773285561,
0.087167761,
0.2956022339,
0.3779781177,
-0.2783085868,
0.0527251657,
0.683845773,
-0.15203595,
-0.54080966,
0.8702338665,
0.4114402066,
-0.2799229173,
-0.2937801,
-0.4634597159],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012190044],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5723565999,
0.4851978784,
1.2102744346,
0.1583571807,
0.2663706458,
0.1204123242,
0.8017347983,
0.1158205943,
-0.584546181,
-0.5809519647,
1.1620239786,
1.045132952,
-0.1478646602,
0.0487426452,
-1.5369327618,
-0.4971862755,
-0.1748542513,
-0.5520376406,
-0.7972761038,
-0.2298674791,
0.032910422,
0.2058626843,
-0.3785227367,
0.3702707675,
1.2418194101,
-0.8989612344,
-0.1440486104,
0.1555062361,
0.5335317394],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004645586],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5664938403,
-0.062916018,
0.6353731642,
0.3747244021,
-0.56709786,
-0.0374274835,
-0.4577346826,
0.2195909203,
0.1952131287,
0.0659280083,
1.6048689269,
0.5850094748,
-0.8471930764,
0.4842738587,
1.026350271,
0.5090830291,
-0.4400118149,
-0.0319115356,
-0.5777592464,
-0.2227690271,
-0.0067174684,
-0.0903180005,
0.2623668356,
0.3580182335,
0.0100543685,
0.4455791456,
-0.0031949439,
0.0514632219,
-0.5800801251],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009738505],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4105313404,
-0.3479178703,
0.2453936599,
0.3140708482,
-0.3057671496,
0.1598816681,
-0.0217388758,
0.0819304442,
-0.1235091671,
-0.0582508594,
1.4482295092,
1.2358540553,
0.7552794609,
0.3046342985,
0.7881583085,
0.507959343,
-0.6608463172,
-0.3114387248,
-0.2180792173,
0.4404243692,
-0.0605916307,
-0.7825768733,
-0.0726247953,
-0.4670284079,
0.0232513746,
0.4493805422,
-0.1185315941,
0.1369032121,
1.1627546802],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035002828],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.759141301,
-1.8279536376,
-0.05931577,
-0.4335647012,
-1.8478814598,
1.1235458881,
2.5995202106,
-0.3791676749,
-1.0063853206,
-0.3865687212,
-0.8762497212,
-0.827229367,
0.7237650436,
-0.7370353258,
-0.1385505788,
0.6005027522,
0.5630798593,
-1.4797233301,
2.0895345724,
3.2162164389,
0.5909162102,
-0.4250506948,
4.1688756711,
0.7903881557,
-1.0664969268,
-1.1536922374,
-0.6951778751,
0.1943122174,
1.9487395051],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00039589405],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.741093553,
-0.5024316888,
-0.2149679885,
-2.0641435703,
2.9502798416,
1.4963044179,
-0.305892468,
0.4767879387,
0.7668477956,
-0.7217447226,
-0.0472344609,
0.1537555833,
-0.1749799828,
0.2036397757,
1.3315702546,
-0.2994966985,
-1.1770937446,
0.5468298214,
0.4872518932,
-0.0521853284,
-0.0924770622,
0.127744472,
-1.0126359411,
1.7519000695,
0.8326217933,
-1.5991425155,
0.6475018883,
-0.381905153,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030761957],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3788531278,
-0.9199420902,
0.8113177638,
0.6055033603,
-1.1352169856,
0.8346902221,
-0.8707727843,
0.317459411,
1.9435543783,
-0.5910797926,
-2.2590509628,
0.2321565636,
-0.3153870397,
-1.2274308303,
-1.321591015,
-0.0529482896,
0.0619631564,
0.3085004771,
0.8508862582,
0.4816053462,
0.1609881018,
0.444755562,
-0.7400133987,
-0.7719961208,
0.7956752144,
1.8176602958,
0.0037642999,
0.1871764434,
1.2586837879],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005711615],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9679210221,
1.4281286617,
0.0615826741,
1.8172770691,
0.1796062389,
1.3753449381,
0.3274451193,
0.7624073586,
-1.6538228326,
0.7713445717,
0.3318730548,
0.4575741047,
0.7855248396,
0.8543338012,
2.1279673998,
-1.7380728299,
1.7739709311,
-2.5153918254,
-0.7808301524,
-0.4594415145,
0.4182105453,
1.1506926761,
-0.0863751379,
-1.5328480924,
-0.6456399075,
0.5735510608,
-3.1046953216,
-1.7974782219,
0.7104269267],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005376339],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2407411078,
-1.1033433813,
0.4287362924,
0.3625641117,
-0.3293875507,
-0.5193124887,
-0.1454525897,
0.0925314848,
0.7273600855,
-0.3481051373,
-0.9463223885,
0.038399927,
0.1927991173,
-0.3093399342,
0.9154989456,
0.5074362775,
-0.5382246715,
0.4166308862,
0.1744643665,
1.0190460011,
0.4648537003,
0.4166263469,
1.9094432542,
0.0363078553,
-1.9482901983,
0.9421051408,
-0.316615399,
-0.0505307421,
1.320906284],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00019204617],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5785300374,
0.1555919686,
0.3061848061,
0.6681005849,
-0.0770942066,
-0.0534238551,
-0.0336722965,
0.0760130351,
-0.237381941,
0.108240166,
1.5635554735,
1.1110682166,
0.1872311109,
0.5234185293,
0.5891818608,
0.0677133804,
-0.521475666,
-0.1588729953,
-0.5505082633,
-0.188680364,
0.037206489,
0.147997254,
0.0015496123,
0.0217837482,
0.8641409929,
-0.8820858054,
0.0844242255,
0.0495802611,
-0.7837216001],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009895861],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9561257745,
-0.8559327685,
-0.2495840377,
-0.5770673906,
-1.035325638,
-0.3844197128,
-0.8170879954,
0.0639307372,
-0.0224303894,
0.771228194,
0.8906080414,
-0.2989317899,
-1.1063361222,
0.0367050222,
-0.3360099865,
1.6048169232,
0.0428261571,
-1.1287353013,
0.9727944912,
0.1148625298,
0.0874258842,
-0.1672780582,
0.565003386,
-0.0735437983,
-1.2002924161,
-1.0545232179,
-0.0399225243,
-0.1018586126,
0.863243318],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00070521235],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6166529431,
0.966824865,
0.5219873291,
0.6539226633,
-0.362854392,
-0.7817646359,
0.3696452613,
0.1685435822,
-0.2697624689,
0.2783728875,
-0.4097868557,
-0.2675533896,
-0.6969711141,
0.6049720204,
1.186859862,
-0.3920534585,
0.0924058835,
0.1170877314,
0.3611518876,
-0.084486178,
0.2017773278,
0.6947874151,
-0.1167747003,
1.1730508087,
-0.5704352747,
-0.8793539426,
-1.3665522876,
-1.1434650016,
-0.3037966543],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00051379204],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2498621381,
0.6169074916,
-0.179400159,
-0.720704731,
0.8982056842,
-0.1502015513,
0.9289237363,
-0.2509357034,
0.4713933396,
0.45892246,
-1.3021213738,
0.0078127279,
0.5665734271,
-0.4214487602,
-0.2478239335,
-0.0555753116,
-0.9178659234,
-0.7786499312,
0.1303515201,
0.3486321063,
-0.5993268855,
-1.006673863,
0.2210252535,
-0.0623755099,
-0.5060261127,
0.2702534881,
0.4716391648,
-0.0215546779,
-0.312955654],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035962462],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6644211759,
0.162824519,
0.1184580757,
0.2926031329,
-0.015724805,
-0.369358827,
0.0752055007,
-0.1454240986,
0.00541464,
-0.0632211201,
-0.8411091904,
0.358365865,
0.9841459807,
0.0952607075,
1.1274436638,
0.5787353021,
-0.8546138569,
-0.3752918547,
0.240059674,
-0.0443226612,
-0.4253538229,
-1.2077894834,
0.0581047396,
-0.7564724197,
0.6710512156,
0.2992909768,
-0.0698572159,
0.0461886983,
-1.4765548991],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00078606606],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4240140557,
0.2229179777,
0.6740311891,
-0.3301870234,
0.978249321,
-0.6944819625,
0.3962744804,
-0.023423585,
-0.3985867697,
-0.7932661852,
-1.117300046,
-0.1775490798,
0.5677477222,
-0.5080788862,
0.5085819442,
0.9892642856,
-0.7077799813,
0.1397123277,
-0.4910770987,
0.1632786633,
-0.2560154888,
-1.1218958049,
-0.008701448,
-1.0702557113,
-0.3966614961,
-0.0837155894,
0.1128755698,
0.4713462341,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004917085],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4406665574,
-1.1909240905,
0.3685544184,
-1.4012409066,
-1.4722240502,
-0.3755776251,
-0.6897825943,
-0.0875213835,
0.6523768988,
-0.3634353891,
-0.7411596398,
0.3549827126,
1.1046995533,
-0.3538853604,
2.3570356626,
-1.4037772579,
-0.4288321163,
2.4952707141,
-0.4351652375,
0.2061864189,
0.0292700585,
0.0918281502,
-0.5355842287,
-0.1183890202,
0.4124159801,
0.2466829935,
0.0648352061,
0.2640062585,
1.3468377423],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [7.635355e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7192781208,
-1.2370741626,
0.4073747525,
-1.803373345,
-1.33941787,
1.3921827071,
1.6202092318,
0.2947060371,
1.7720160199,
-2.6781254317,
0.4263859519,
1.4899610714,
0.1056260882,
-0.3524635695,
0.9828676839,
-2.7093908053,
1.493674617,
-2.1737726542,
-1.2119138277,
1.3936686201,
0.7233808497,
1.3136479047,
2.8058566334,
-1.1516928583,
-1.3987206633,
-2.1845265271,
0.3593127401,
0.8110255532,
1.7375354219],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026789308],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3694596163,
0.6043350169,
0.6111109375,
0.7818926426,
0.4226781952,
1.5086258514,
0.0188384108,
0.8721269815,
-0.8423318381,
-0.4384870415,
1.7119059834,
1.6225621453,
0.4355035294,
0.5489161507,
0.2109535548,
-2.1270747505,
1.6138445717,
-2.0025182515,
-0.2283252969,
-0.1900718295,
0.323131107,
1.2211615403,
0.1301020423,
-1.6653432301,
-1.075018536,
-0.4018404918,
0.3261059174,
0.2749981273,
0.2036073274],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0019146502],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5922929004,
-0.1895043904,
0.771043481,
0.6237920104,
-0.9226872083,
-0.2465345168,
-0.5931885441,
0.1499232592,
1.0604283565,
-0.1606410986,
-0.9987724524,
-0.5035736641,
-1.7366965853,
-0.0477676824,
0.4236222523,
0.2706798763,
-0.0810916051,
-0.0006008143,
-0.0348682173,
-0.2730899157,
-0.1544700359,
-0.3198872151,
0.0971450476,
0.6268792131,
0.3793056258,
0.6656094042,
0.00667514,
0.0853854918,
-0.2551430327],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000675261],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0221153511,
0.6668873205,
-0.6169451902,
-0.0368223667,
0.1773949065,
-0.9490479569,
0.6370201317,
0.1309801754,
-0.1774946329,
-1.1006060574,
-0.7322695568,
-0.4661810929,
-0.5914974072,
-0.4724244159,
0.8400211168,
0.2180945684,
0.8490403994,
0.9733977832,
-0.3234263863,
-0.2191856893,
0.4985847292,
1.2982825175,
-0.0235614168,
-0.3112056095,
-0.6563228065,
-0.2995624342,
-0.050081678,
0.1422050906,
0.5245544411],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008069277],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0234002712,
-0.5645919229,
-0.5295126004,
-1.0770354971,
-0.5602915463,
-0.4432961248,
-0.5401709,
-0.068428979,
2.1804517647,
-0.8601467743,
-1.3215826048,
0.5217667301,
0.1342018357,
-0.1854635751,
1.2431006756,
-0.387792848,
-0.5070414343,
0.543657681,
0.9376415352,
-0.1758207537,
0.3040682093,
1.2898669633,
-0.0528655679,
-1.0895674369,
0.0945284598,
-0.0400265663,
0.0832627249,
-0.1417325233,
0.2276854291],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043737888],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0049676331,
-0.6811313585,
1.2199369191,
-0.7410104755,
1.3713193253,
0.0669775624,
0.1460329481,
-0.1202589825,
0.6466125846,
-0.3377938956,
0.149132474,
0.3363972781,
0.0118153191,
-0.7107172905,
-0.6099268549,
0.5602598358,
-1.6522465748,
1.166385436,
-0.1724769379,
-0.1353654267,
0.0694868317,
0.8813133102,
-0.18962487,
0.1793409257,
1.8153261665,
-0.5110395379,
-1.4753242535,
-0.2435644207,
-0.174155162],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00073480606],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3954362542,
0.1938672603,
1.6845670086,
0.0371787319,
0.1323576455,
0.2714299692,
0.8150540764,
-0.1783423582,
0.9346168872,
-0.7555307684,
-0.8090688709,
1.1767517571,
0.388156071,
-1.5845245706,
-3.3702167541,
-1.0258514265,
-0.0381326991,
-1.94169811,
-1.9182990708,
-0.1938364061,
-0.4722431117,
-0.4642231075,
-0.0672054684,
0.6522587421,
-0.5105076794,
-2.0382771191,
-0.7161086357,
-0.871679991,
0.329736506],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000102579594],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0687364256,
-0.8524026924,
-0.6459587102,
-0.9208177903,
-0.9895865695,
-1.0788541138,
-0.4189076979,
-0.4058001409,
-1.4350984778,
1.3299391671,
-0.4248995076,
0.0130733722,
1.3103032556,
-0.4569982922,
-0.879266282,
-1.2081160174,
0.916426879,
-0.9629822053,
-0.0698081417,
-0.330490028,
-0.4251269712,
-0.6769069987,
0.4971764602,
0.7483618045,
-0.440666883,
-0.7553763501,
-0.036911652,
-0.1021233302,
0.7754255721],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036504865],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.589588729,
0.1475129491,
0.2566698129,
0.5178069064,
-0.2945729487,
-0.5971765181,
0.0059685223,
-0.043177103,
0.0611175044,
-0.2730504657,
0.3584354866,
0.136294324,
-0.3871952691,
-0.1258767608,
1.506895972,
0.1247972779,
0.4827402619,
-0.9131315372,
-0.8455984913,
-0.1784140193,
-0.3307095607,
-0.9975053303,
0.3503830503,
0.5695440905,
0.1571545434,
0.2161302875,
-0.0332554654,
0.1087520085,
-0.2343554596],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014308989],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3128324394,
0.3266215348,
1.0086122593,
0.6664390148,
0.9498594301,
0.7850919396,
0.485194684,
0.0801695415,
-0.5849398493,
-0.0209874622,
0.2193691758,
0.4990975972,
0.2776506402,
-0.0909667393,
-0.3349141316,
-0.8888725313,
-0.1195916438,
0.1892345755,
1.9361961804,
0.3750574898,
-0.1143667174,
0.0281013827,
-0.7487519843,
-1.8928284422,
1.1144067833,
-0.2192531669,
-0.1888390947,
-0.508166475,
0.0215501813],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001116395],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5900150633,
-0.1711943761,
0.5061024434,
0.4163636709,
-0.2934025652,
0.5923476114,
-0.5328195714,
0.20942005,
0.817883822,
-0.2626067117,
-1.2886940946,
0.4136842299,
0.6358609464,
-0.5224554894,
0.5169521279,
0.1562909719,
-0.3193003196,
-0.4620876485,
-0.0372112448,
-0.0413676759,
-0.1576449599,
-0.1776160817,
-0.1385962093,
-1.4921284757,
0.6245921532,
0.8372721374,
0.0709185607,
0.0666007052,
0.2013595924],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00050646067],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6343818665,
-0.2983754053,
-0.5478701201,
-0.6628862526,
1.2032116034,
2.7161000984,
-0.7105852152,
0.7552735106,
0.4392625954,
-0.1618600147,
-0.2734499162,
0.1477130213,
0.0117720687,
0.0087397125,
0.7148472361,
0.5083160783,
-0.7156541536,
0.0232084081,
0.6030057681,
0.1308636665,
-0.153675414,
-0.5540626451,
-0.0786318754,
1.8024749063,
0.8032813174,
2.119393144,
-0.1506541105,
0.0281784178,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00067806244],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5283279006,
0.138671857,
0.22073085,
0.8147044293,
-0.116742258,
-0.4590594216,
0.3112711713,
-0.1021876598,
-0.5049350397,
0.1332585052,
1.5055174027,
1.3259453453,
0.5703430313,
0.5584398566,
0.0612680144,
0.363779371,
-0.7871789396,
-0.3060639721,
0.1457903611,
0.0775336148,
-0.5111845753,
-1.8134416849,
0.2546805214,
0.4538795218,
0.4198209256,
-1.7838864633,
-0.011627059,
0.1162208843,
0.707486405],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007084012],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6484507978,
-0.3176986081,
0.4259959804,
-0.566197658,
-0.6812304568,
-0.2566072182,
-0.528287142,
0.0334060645,
-1.0589155756,
0.635382299,
2.0018566494,
0.6647992114,
0.7534272887,
-0.047812286,
0.2915543043,
1.1673485853,
0.3211010284,
-1.978362972,
0.5648749835,
0.1385397481,
0.0140388877,
-0.1263372429,
0.2885059628,
0.3542453918,
0.2373944171,
-1.0004595317,
0.0583312334,
0.0547720835,
-0.0322136909],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005066395],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0145180946,
0.5425586251,
0.0480472455,
0.7453666019,
0.9200746532,
-0.6228479299,
0.6120586725,
-0.2574632974,
0.624489672,
-0.1382361874,
-0.1764511238,
-2.322063283,
2.6405913096,
1.7704336369,
-0.1075662994,
-0.4427337757,
0.2752804293,
0.4168689204,
0.6078727202,
0.2824751631,
-0.0320582066,
0.4215855753,
0.0353990175,
-0.834528661,
-1.0849336007,
-0.8351945737,
0.9675399865,
0.7220818813,
-0.1174843597],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005592108],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0096263297,
0.0162838074,
-0.6594444734,
0.9822003323,
-0.0701950321,
-0.7493145299,
0.109038302,
-0.1910940555,
0.5668739975,
0.2630316513,
-1.1241373757,
-0.288980118,
-1.1593322264,
0.5371579065,
0.0901598819,
-0.2162498462,
-0.4115584201,
-0.0089497884,
-0.5245365477,
-0.4694603855,
0.2133299519,
0.8449539834,
0.0695596326,
0.03038716,
0.5087299072,
-0.9523351499,
0.0107156713,
-0.1574585231,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007954836],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5855820304,
0.0806408369,
0.2524064212,
0.9962705397,
-0.1690763292,
-0.1397477559,
0.016216577,
0.0370887837,
0.3727350747,
-0.0793800665,
-0.665688077,
0.023137899,
-1.0793167343,
0.2659975097,
0.0006136274,
-0.7673834847,
0.3638046488,
-1.0030888615,
-0.4507666746,
-0.3254675646,
-0.1559276562,
-0.2035875708,
-0.0783711202,
0.1062368607,
1.2131857421,
-0.6392726633,
0.0765759899,
0.0547436381,
-0.352426465],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000926286],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2022085747,
0.4867775658,
0.9642229838,
0.5044295797,
0.3541627759,
-0.1089405852,
1.167550422,
-0.5792941081,
0.1474501551,
0.7135651616,
-0.1417902322,
-0.8311739957,
-1.0412308626,
-0.1670821564,
1.6372582631,
-0.9348579414,
-0.211798525,
-0.3667179403,
0.0820245418,
0.241815329,
-0.022279881,
0.8150266443,
-0.3841729477,
0.1039643959,
-0.7541544506,
-0.812071344,
-0.7463104272,
-1.3703431306,
0.5802083826],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00061267614],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0252647913,
1.0549183416,
0.2516451591,
2.1623406805,
1.3510991532,
0.4775521735,
1.047995303,
-0.0523407322,
-2.1478275049,
0.9236655582,
-1.5210229006,
-0.5294097362,
0.9734838504,
0.3356050706,
-0.1880062294,
0.5997709652,
-0.9165570933,
-0.3599583691,
-0.3580186193,
0.0468567208,
-0.1036871604,
-0.4279225936,
-0.101644239,
-0.0287612609,
-0.9504040757,
-0.2942519895,
0.3742249913,
0.6284519352,
-0.466099031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003502965],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2418116464,
0.2683039768,
1.0789005565,
-0.0385837623,
-0.7656344724,
0.8623679248,
-1.2951190463,
-1.5467615222,
1.3465880817,
-1.1329112891,
0.4444536869,
1.1184199419,
-0.7581634834,
-2.1011439745,
-2.6082966924,
0.3869473942,
1.287417755,
0.5909136889,
0.0523570214,
-0.7844476372,
2.788080515,
-1.675270519,
-0.3320702366,
-0.1001529199,
2.8426617239,
1.6742286679,
0.1899450435,
0.1576091236,
-0.0283515943],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009588599],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1842118223,
-0.8022161001,
-0.8311190837,
-1.2585748259,
-0.51415996,
-0.1309435661,
-0.8485642129,
-0.133334362,
-1.1444085705,
1.3890518885,
-1.4807241956,
-0.8341182356,
0.9092795001,
-0.517776522,
-0.1443419666,
-0.5412292056,
0.3222442362,
-0.0133549807,
0.0906342173,
-0.521215384,
-0.3007747034,
-0.12975181,
0.3381095103,
0.0179343295,
-0.0947443988,
-0.306091652,
0.0205846228,
-0.1568580281,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00028812885],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9236813768,
-0.3644109174,
1.0570004996,
-0.8604657151,
-0.8256930299,
1.9374574309,
0.4857889942,
1.0176031776,
0.0055413324,
-1.6090518996,
1.4401804943,
1.172868099,
-0.529834885,
0.0187098748,
-0.5089117496,
-0.9189635078,
1.2229582676,
-2.1623880158,
-1.6054965369,
0.5906873154,
0.3011797761,
0.184294381,
1.3539836856,
-1.6704384662,
-0.1827317834,
2.5459540063,
-0.5387110873,
-0.0263507758,
1.4564897146],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016897917],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6174480809,
-0.0884860086,
0.4713874612,
0.0942370846,
-0.5187306994,
-0.2476918833,
-0.4925070563,
0.0271635097,
1.4734825001,
-0.2762635695,
1.8256286354,
-2.3304351332,
0.7154769564,
1.9058772658,
0.0117878767,
0.9233318349,
-0.0161743879,
1.0716538698,
0.0229321509,
-0.1648154237,
-0.0687746634,
0.0294122089,
-0.0860755702,
-0.0120240314,
0.3632872415,
2.1416296276,
-0.2499920529,
-0.0212149546,
-0.0921763942],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00068315864],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8331961179,
-0.4699426116,
0.9572157097,
-0.4502244319,
0.3486618023,
-1.2187193823,
0.0888814061,
-0.0656153909,
1.5255014811,
-0.7359316239,
0.3060185575,
-3.1304166311,
0.4957750997,
1.5748419748,
0.0036785417,
0.7992253619,
0.0816816315,
0.130503026,
-1.0318889612,
-0.380766357,
-0.4681358535,
-0.6134973642,
1.9934397534,
0.4896343013,
-0.09602716,
1.4953460236,
0.4506006869,
-0.1132061904,
0.1113896847],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038656592],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.9375952934,
1.5489550561,
0.7753200967,
-0.9357606129,
-1.3725670724,
2.447896305,
-4.385999106,
-8.3483652116,
1.3105176323,
-1.9426536187,
-2.4450899683,
0.8803767371,
-1.5953962286,
-0.0548414504,
-2.2672694622,
0.668443992,
0.8390815392,
0.2940738195,
-0.4721718734,
1.8117298245,
-1.0834867234,
0.7209694419,
1.2567478643,
0.9260051707,
0.6038768349,
2.8676622149,
0.2360480844,
0.1018734047,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00016203523],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0251711439,
-0.485915914,
-1.3921472189,
-0.5372535892,
0.6989353625,
0.9377367213,
-0.1822692198,
0.1727598163,
-0.8600866833,
0.8446208163,
0.5669505612,
0.6803460646,
0.1486184069,
0.5347745016,
-0.5290613167,
-2.8825175888,
0.5769868763,
-0.0733925091,
-1.340303146,
-0.8294360886,
-0.3711102186,
-0.152313372,
0.2326669126,
-1.5485208637,
-0.0172441281,
1.4196778224,
-0.0993601553,
-0.2773825403,
0.1881900682],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008713305],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4780472959,
-0.2376292067,
0.7036197183,
1.0140722469,
-0.6788471949,
0.1874891808,
-0.4522397402,
0.1953966389,
0.7231817415,
-0.1197817075,
-0.5972220208,
-0.0126777608,
-0.7168403379,
-0.0464808903,
1.0149429079,
0.0392612294,
-0.1029806254,
-0.1359005545,
-1.0803270498,
-0.0375078316,
0.2719428774,
0.7227187347,
-0.2139831964,
0.1339130952,
0.7191873146,
-0.4544130166,
0.1449748543,
0.1578669181,
0.8110757874],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049322844],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9578689835,
-0.2158338643,
-0.4436247633,
0.6675106432,
0.0524542531,
0.5676396155,
-0.5175873026,
0.2279716758,
0.6508801836,
0.3406262156,
0.0392532022,
0.4335130138,
-0.2028860119,
0.2397992676,
0.2886964861,
0.9770993786,
-1.4386761089,
1.3217982797,
-0.3011726789,
-0.2000011517,
0.3276195612,
0.9452523212,
0.0943892558,
-0.2450163359,
-0.0570058494,
-1.1620773937,
0.0973320222,
-0.1067658596,
0.3202720308],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049093366],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0237281527,
-0.2272754049,
0.6844969411,
-1.6259698449,
-0.6260383381,
-0.5553512152,
-0.0075507915,
-0.1516949371,
-2.0001527909,
0.7507621366,
-1.2438749711,
-1.5186551441,
-0.1723977562,
-0.349503103,
-0.281259311,
-0.9267331298,
0.7572631047,
0.2036333779,
0.4155586922,
-0.3584349454,
-0.1508594653,
0.1238216344,
-0.2837447822,
-0.0912019489,
-0.1122536494,
-0.1353526451,
0.2959316125,
0.4049459306,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022536516],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3314522056,
0.2169960927,
1.9124679506,
0.4266479871,
-0.2189176599,
0.1663239239,
0.0515450524,
0.0584067938,
0.1414776889,
-0.3957474376,
-0.1279053208,
0.3434778585,
0.2951375848,
-0.6949032343,
0.7067129262,
-0.8042635627,
0.4640407586,
-0.6872733198,
0.4648777862,
0.2616847435,
-0.0207887408,
0.3826389057,
-0.282551386,
0.7674119794,
-0.0633463039,
0.8870888315,
-0.1938381125,
-0.4215948892,
-0.2551430327],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009913146],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2093253293,
-1.3463909016,
-0.5137930852,
-0.3412062606,
-0.4801705383,
0.2955091144,
0.2218716627,
-0.1024075369,
-1.0256903976,
0.4045564231,
0.7985248515,
0.370465341,
0.7934799533,
-0.0308510517,
-0.698767903,
0.7841579895,
0.3747872185,
-1.5484150213,
1.1038450651,
1.5039367032,
0.6825623742,
0.4654922639,
-1.2192083145,
-1.201903738,
1.2091572653,
-0.1206093134,
-0.2259797398,
0.2401100828,
1.6495462759],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002721548],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5798671502,
-0.8969197899,
0.5996706023,
-1.4528154481,
-1.4592458694,
-0.307991436,
-1.0144627498,
0.0998754987,
0.8056213757,
-0.2941928219,
-0.2984218181,
-0.0540539559,
-0.2765144165,
-0.0873289637,
2.7160713389,
-1.8572505661,
0.1660926777,
1.9044009005,
-1.030508474,
-0.4602328381,
-0.0628895192,
0.3753427653,
-0.0683724775,
0.1251051407,
0.1972773285,
0.2936742057,
0.1727374648,
0.1585110659,
0.8224140127],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [8.7440014e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6717543902,
0.6249160533,
-0.2952991384,
-0.2581783083,
-0.6592815864,
0.9985761863,
2.4029204978,
-0.476857451,
0.9714468578,
0.3060796871,
1.0713311174,
0.9171093816,
0.3047895524,
-2.4831210818,
-2.610378302,
-0.3449429854,
0.6519411871,
-0.2642279956,
0.4713940588,
0.2973872716,
-1.1485527476,
-0.9960954952,
-0.2890045995,
1.1070149893,
0.4310973152,
0.1031481912,
1.6704407253,
-0.4010590569,
1.5505787512],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006993115],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1995729902,
0.6766381794,
-0.7839531173,
0.0064386637,
0.1607942826,
-0.9389002079,
0.3560851356,
-0.6186733169,
-0.0105251165,
-0.8302683978,
-0.6733016642,
-0.0689795299,
-0.0032881266,
-0.5487110599,
0.735065407,
0.2845678539,
0.6904703612,
0.9014957892,
-0.2588613298,
-0.7619844531,
1.4365655054,
0.9659904971,
0.4529965621,
-0.1890552628,
-0.3506056176,
-0.2850147626,
-0.1698310361,
-0.3183957566,
0.4398392728],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010588765],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0285374493,
0.8147889814,
-0.5085264413,
0.3222600359,
0.6899210026,
0.1063736018,
0.4274794263,
0.3585188108,
-0.7493592913,
0.1464186057,
-0.5238552028,
0.1629016195,
0.1189797364,
0.9558868981,
0.0638504633,
0.2972615837,
-0.9591100317,
1.1936957731,
1.6404663727,
-0.0040892088,
0.1547108427,
0.5145271921,
-0.256402419,
-2.3325568471,
-0.9298158222,
-0.6664242993,
0.7432719688,
0.4527800376,
-0.7824716357],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00097334385],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6296706738,
0.1965021276,
0.2297815556,
0.5661744244,
0.1916563374,
0.2665188488,
-0.0609354961,
0.0202689063,
0.0221983158,
-0.0981522077,
-0.7600244005,
0.7597786863,
1.6779727902,
-0.0832305808,
1.4601747625,
0.3454187712,
-0.8198026396,
-0.5514023319,
-0.43107106,
-0.063438147,
-0.303208785,
-0.7323666008,
0.0136571176,
-1.6346928574,
0.7973760676,
-1.1009466295,
0.1470193091,
0.082273738,
-2.5243063932],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006800592],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6127502103,
0.3646651521,
0.1468746446,
-1.9466598786,
-1.1600554267,
0.7477025411,
-3.1724446758,
-6.4804663256,
-2.6689530545,
-0.6692220054,
0.3164033158,
-0.1215472836,
-1.5859480767,
1.2538337722,
-1.611925574,
0.3454684544,
0.6694066754,
0.4945207438,
-1.5136133504,
1.8832520141,
-5.513989104,
1.1630332931,
0.212929066,
-0.1370033698,
2.7469873059,
-0.154910283,
-0.2393906011,
0.6555843085,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026255846],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3445246816,
0.4565930387,
0.6983500797,
-0.3815937489,
0.295119284,
-0.4012187462,
0.7688434671,
0.0309298288,
-0.6046892382,
-0.3473291589,
1.3303450088,
0.2349990726,
-1.2039774207,
0.6993978586,
-0.297444302,
0.0454757676,
-0.4735047607,
-0.3251942876,
-1.0278946986,
-0.3386975206,
0.2161258659,
0.4529018388,
-0.0441783031,
0.3582488073,
-0.6473525668,
0.2833406781,
-0.1308435317,
0.3943256947,
0.2055013687],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00062558055],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4946333342,
0.4761098219,
1.3220138766,
0.0032840867,
-0.3097950637,
0.4870386732,
0.4784948671,
0.1390352984,
0.3759351002,
-0.5856739788,
-1.9861088667,
-1.1537777639,
-1.3468697557,
-0.256056213,
0.2815826707,
0.9019595546,
-1.0694223552,
0.9575628388,
-0.7342073882,
-0.3401110415,
0.1387388097,
0.3591703615,
-0.8307914851,
-1.1022464939,
1.1180221816,
-0.5831501142,
-0.3591532803,
0.1294068902,
0.8020752514],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024187565],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6968953709,
0.6765430483,
1.023626916,
1.284554777,
-0.8631881654,
0.4054674018,
-0.5793305559,
1.0112803664,
0.349796894,
-0.6402987074,
-1.1711865923,
0.9369170275,
-0.3919298288,
-0.1291697002,
-1.6094045248,
-1.6766634872,
1.8190532107,
-1.2518174904,
1.4099414442,
-0.1637142088,
-0.3108323534,
-0.5534467606,
0.2003656784,
0.6546288319,
-0.6613035532,
-0.9287797885,
0.2554034539,
0.2031320632,
-0.0327678709],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00025224686],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5278640826,
0.0414480204,
0.1967247009,
0.3970442077,
0.1369326131,
0.5909415156,
-0.247146157,
0.3698434256,
0.127583568,
-0.384328368,
0.9808938908,
0.120196055,
-1.0208867297,
0.0821147544,
2.4935569592,
-0.9373219459,
1.5690143422,
-2.6036631286,
-2.3203058412,
-0.3915990756,
-0.2211106356,
-0.5248005919,
0.5468580195,
-1.1925648824,
-0.3348389771,
0.4264110271,
0.0959810637,
0.0636267766,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008753836],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4136750591,
0.0193774661,
0.2133175112,
-1.3728819069,
0.1898206673,
1.4744950552,
-0.1039892377,
0.8792856796,
0.1569474262,
-1.1779541817,
0.6355365626,
0.6007011605,
-0.123817441,
0.5144203883,
1.3138880103,
-0.3231126136,
0.091407072,
-0.1757144364,
-0.0685765002,
0.1100043502,
0.6260303538,
1.5222883832,
0.2517940177,
-1.495452141,
-1.1179926533,
1.708346897,
-0.0086285584,
0.2431657833,
0.9090829392],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026130676],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3248737163,
0.6675172214,
1.083724536,
3.1483667545,
0.3108726694,
1.0046558074,
-0.0830250712,
0.1764534468,
-1.1083445366,
1.5941500766,
-1.3921710577,
-0.7362784315,
0.4965913069,
-0.3951085607,
0.8199986623,
0.1069905954,
-0.1001562946,
0.7137350055,
1.3760722584,
0.2591844609,
0.2986453425,
1.2321027266,
-0.4026939226,
1.0055824929,
-1.4071096786,
0.6817522061,
-1.0900940543,
-1.017292006,
0.019307669],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00053310394],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9570635515,
-0.2990965267,
-1.1399167973,
0.1748736748,
1.4953832003,
3.0566813787,
-0.7963511583,
0.8562082126,
0.6523481847,
0.1861097275,
-0.217404839,
0.3422965839,
-0.0704622591,
0.192450185,
0.854691713,
0.1711754522,
-0.8134526681,
0.0457836666,
-0.9052366803,
-0.1846091199,
0.2187692768,
0.6739290109,
0.2889729363,
1.1426936429,
-0.0003365381,
-1.1655309378,
0.1592342249,
-0.1047021932,
0.1317278233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002490878],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.077862668,
-0.2143772634,
-0.9942750194,
-1.1230723338,
1.6364306171,
2.9607585955,
0.9615256565,
0.6708810171,
-0.2515139291,
-0.7188157104,
-0.2501230515,
0.0004869222,
-0.3550241,
0.3521635461,
-0.2043397913,
-0.2179315769,
-0.4583160592,
-0.9346221385,
-0.2110721509,
0.5632088274,
-0.0964448426,
-0.9584759274,
1.2032146665,
1.1206970323,
-0.6574940226,
0.6113176924,
-0.2658140899,
0.0110208583,
1.2883759416],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017043948],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6128536288,
-0.1200062488,
-0.2092182565,
0.0558389199,
1.177511797,
2.9684587945,
-0.8950380396,
0.8689341299,
0.3035505403,
0.0570919424,
-0.2034278904,
0.0394742691,
0.1979302294,
0.0826105724,
1.7318357922,
1.1229014218,
-1.3736887395,
0.9615809267,
-0.4292452256,
0.0332675669,
0.0963882313,
0.099723084,
-0.0847388971,
1.6568682268,
0.9671481335,
-0.6852897469,
0.1543859754,
0.1215833334,
-0.1940631957],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031509995],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6152071106,
0.3249662462,
-0.220321247,
0.5436825872,
-0.0123102619,
-0.9150839984,
0.2332090624,
-0.1294687597,
-0.3533089414,
-0.3625020306,
1.8901008016,
0.465993894,
-0.5554787363,
-0.7378208524,
0.278930372,
0.6795891538,
0.7524582953,
0.7457170642,
-0.1358272476,
-0.1265636155,
-0.10807469,
-0.3271495811,
-0.096012294,
0.724302183,
0.9652528988,
0.7017390411,
-0.1024643414,
0.0973404101,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001591444],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4809154803,
-0.4072970414,
0.5845843723,
-0.1694666587,
-0.1188858406,
1.6379158231,
-0.8410817183,
0.6388428792,
0.631749967,
-0.3887148776,
1.8073915658,
1.7804951352,
0.7134209519,
-0.2898426843,
0.6838428371,
-0.9509235977,
0.8180750998,
-2.1329957516,
-1.1460116889,
-0.0878986303,
0.0802160827,
0.6015817321,
0.1815223939,
-2.0755380855,
-0.3264999078,
2.3028449501,
0.0727754545,
-0.0050644163,
0.3652696992],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002553761],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8898534837,
-1.1929047027,
1.7747323859,
-0.5929157637,
-0.5862270689,
0.6834915771,
-0.8391371556,
0.5263881412,
0.4547449426,
-0.3822414176,
-2.1970594901,
-0.0491322346,
0.1747488961,
-1.610524223,
-2.0142077436,
-1.8249874283,
0.3302032565,
1.8780161197,
-0.6917143733,
0.5127419537,
-0.2171296092,
-0.15990056,
0.527724316,
1.1370356322,
1.0066531375,
1.7478295567,
0.548054313,
0.547726226,
1.1677620896],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [8.073449e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5368444051,
1.0668157103,
-0.7049265001,
-0.4454492431,
0.2066028333,
-0.4079460172,
0.1815834855,
0.5893741233,
-0.4013995073,
-0.0529158933,
0.7068499315,
1.3972867464,
0.9304243826,
0.9548735432,
-0.3337348344,
-0.1487827236,
-0.4713960052,
0.6478348999,
0.2781770292,
-0.1031421272,
0.7083767006,
2.0095257194,
0.1074835772,
1.2633920101,
-1.3382399813,
-0.5927232869,
0.2511309856,
0.7823559165,
-1.059018984],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000864774],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6144507847,
-0.0310346205,
0.4616406418,
-0.1017596691,
-0.5815873005,
-0.6005399827,
-0.2070506978,
-0.0454280475,
0.0236006934,
-0.0466129395,
1.7073246528,
1.2304754947,
0.5191711098,
0.2508478932,
0.5183550692,
0.5753435199,
-0.6417567607,
-0.0423295793,
0.2937067366,
-0.0275979152,
-0.0857440011,
-0.2721783652,
0.1854771092,
1.0154477799,
0.154003436,
1.8006606525,
-0.1793113428,
0.0193678134,
-0.6345094854],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00049877167],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.060925595,
-0.0289295925,
-1.5301676845,
-0.1938305519,
0.6517703232,
-0.5806396492,
0.4535056444,
-0.2017372655,
0.1328601917,
0.1976866856,
0.4690362443,
0.0475680877,
-1.4552540418,
1.2780675326,
-0.0708476752,
-0.3252150385,
-0.6286535453,
0.264806829,
0.6398337524,
-0.3692554369,
0.2118657914,
0.6263959057,
-0.0792015324,
0.3950031449,
0.824595599,
0.4639729534,
-0.2511348747,
-0.2737148849,
-0.8080869167],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017107427],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0157681885,
-0.0202927124,
-0.8990491244,
0.0885689032,
0.2629814271,
-0.3996400878,
0.1115747964,
-0.1372651723,
0.1951575159,
0.1411388231,
1.138083139,
1.2551215233,
0.5613042009,
0.5831836191,
0.0648026888,
-0.102420252,
-0.840208513,
0.3740143171,
-0.0204966227,
-0.2283423674,
0.4201754395,
1.3820329616,
0.0561884678,
1.2562698935,
0.4999483428,
-0.3315814822,
-0.0574631759,
-0.1817282877,
-1.1816916919],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013418198],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3498474949,
0.5244956143,
1.3459767226,
1.2585059457,
-0.6359358037,
0.4847636795,
-0.282991561,
0.6602472823,
0.3516695647,
-0.7053603946,
-1.0861193577,
0.6508473586,
-0.6751530271,
-0.346008695,
-1.5718461706,
-1.7913301944,
1.6512394784,
-1.2511704408,
1.4600946995,
-0.2448928552,
-0.3399493501,
-0.5046846596,
0.1475250902,
0.6448603878,
-0.8038532777,
-0.9365535315,
0.2685012864,
0.3091841297,
-0.5393754424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00037536025],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4645866725,
-0.5630317408,
0.5298869463,
0.1360801892,
-0.9111473135,
0.0259952069,
-0.5453715253,
0.1905894235,
0.7481526137,
-0.1016452949,
0.6109907696,
0.1972939431,
-1.1752782888,
0.1304424005,
0.187140475,
0.8182794888,
-0.6134076803,
0.8186592232,
0.3925798781,
0.235043284,
0.2419201894,
0.3059108612,
-0.327122846,
0.1028506502,
0.2527384945,
2.271443135,
-0.1903965661,
0.0875298214,
1.0407664322],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038781762],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.887531928,
-0.5548402577,
-0.072043575,
0.3254856228,
-0.6836969822,
0.2569045388,
-0.8214055397,
0.3165313584,
1.158344188,
0.1790034515,
0.5442921358,
0.06215716,
-1.7072865225,
0.2939454391,
0.3402715552,
0.9757396254,
-0.860413184,
0.8781476285,
-0.2204261625,
-0.1593529921,
0.139376151,
0.1515471869,
0.5362707496,
1.1041418736,
-1.2469030749,
0.2388244106,
-0.0617897161,
-0.0774254672,
0.7400922053],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005452335],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5750361267,
-0.097522872,
1.7841946294,
1.9628350579,
0.2798674733,
-0.0464697644,
-0.2923807899,
0.13533031,
0.060431278,
0.5361762014,
-1.3849775794,
-1.1040207108,
-1.9490662081,
-0.4182755656,
-0.5088383489,
-0.0595319163,
0.0871711771,
0.0507366025,
0.3470559541,
0.0337580607,
-0.1884499303,
-0.3701124588,
0.1729050344,
0.5253000158,
-0.5998468099,
-0.135405428,
-0.5306041567,
0.2019852823,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007519722],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5599932249,
0.7089520136,
0.3306525858,
-0.7967522517,
0.1853627027,
-0.9245280491,
0.7358190469,
0.1674935205,
-0.3578526955,
-0.9603466921,
-1.5132149149,
-1.090627695,
-2.0743484649,
0.8610634949,
-0.5258502555,
-0.0149967048,
-0.1734724639,
0.0357390121,
-0.7798158438,
-0.5095417114,
0.508835384,
1.1894652517,
-1.1965051419,
0.1757118653,
2.2175407301,
2.1484033131,
-0.8833143835,
-0.1536781354,
-1.0858243121],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008081198],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9870696437,
-0.239874957,
-0.3561208022,
0.2068024069,
-0.245490126,
-0.1010484034,
-0.3832755737,
0.0214247747,
1.1383778078,
-0.1522793994,
-1.0615970079,
0.376641791,
0.1724359852,
-0.0578249519,
0.7812481143,
0.3428291689,
-0.7645648524,
-0.0455965298,
0.0555280095,
-0.1851041835,
-0.2673290805,
-0.6987525683,
0.6167862575,
0.7075600288,
-0.7112025857,
-1.3244378086,
0.0572092758,
-0.0619694114,
0.2157076363],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00050246716],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0499328162,
0.491752242,
0.7513434177,
0.4727823937,
0.0266414877,
-0.6172954546,
0.5271929992,
0.0030645048,
-0.2771763069,
-0.2613244309,
-0.0790360048,
-0.4086457558,
-1.3178465583,
0.5975046209,
1.025673861,
-0.4899137288,
0.0900062095,
-0.5312027386,
-1.0570073269,
-0.3152218964,
0.2868939543,
0.8163386391,
0.0747160347,
0.9592514127,
-1.0032342636,
-0.9826843059,
0.3070597331,
0.3186949075,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030392408],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6194348047,
-0.3360296712,
0.8236228548,
0.0550915845,
-0.3398442039,
0.3466484726,
1.0175288419,
-0.0031389363,
-0.0658214258,
-0.9166613194,
-1.4809769994,
-0.4902699518,
0.2891606859,
-0.0255221525,
1.6129367875,
0.0863108959,
-0.6099428192,
1.1734362933,
1.2024310328,
1.2232548027,
0.5512904614,
0.7627466029,
0.5144420964,
-1.2247324814,
1.4609284084,
0.1942470621,
-0.0955743452,
0.3228161059,
1.4343467698],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005827546],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9975926361,
-0.2994771989,
-0.15743236,
0.3337429954,
-0.6085663089,
-0.3909410265,
-0.5332535139,
-0.0267835107,
1.1610349569,
0.0198654272,
-1.109594912,
0.1803657683,
-0.0649287006,
-0.2198409716,
0.4102357318,
0.4072169398,
-0.5865440479,
0.1006467376,
-0.2643213461,
-0.2608735693,
0.2062299249,
0.8801181443,
0.2660814065,
-0.1069811929,
-0.5082677846,
1.1895254198,
-0.0564710119,
-0.1423958238,
-0.2551430327],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006529093],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0968833176,
-0.4267276009,
-1.4877515074,
-0.5012036874,
0.2555008957,
-0.3571494438,
0.061859689,
-0.1840175276,
-0.8257771828,
1.029254494,
-0.1511648839,
-0.3233632737,
-1.1424118184,
0.8679995006,
-1.0441148993,
-1.8826366155,
-0.2741326727,
1.7297674789,
-0.0720347226,
-0.8078389416,
-0.3641812775,
-0.3999088672,
-6.56303e-05,
0.1609757445,
0.5063591679,
1.6857450419,
-0.295268878,
-0.27306479,
0.2090973929],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010212064],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.112650395,
-2.1556992079,
0.1740794855,
0.2261748323,
-1.8055122373,
-0.0174705819,
-0.0209014895,
-0.1195748694,
0.0456443344,
0.011051993,
-0.7960025863,
-0.3172802892,
-0.013596734,
-0.6939732823,
-0.6169422597,
0.9530901362,
0.8293122337,
-1.5792713964,
0.8113498176,
2.2503512419,
0.6866833608,
-0.3896804568,
-1.2252239799,
0.767541249,
0.150245312,
-0.6845006083,
-0.2552884061,
0.5398684948,
1.878212037],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034746528],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5681281517,
0.2391347276,
0.5004529535,
1.8144929091,
-0.0403299385,
0.3166748102,
-0.0677824114,
0.0922340653,
-0.5321320004,
0.5896705325,
0.5453218064,
1.2273668285,
0.7867973728,
-0.1901911345,
-1.8471477644,
0.3791547718,
-0.643359591,
-0.0184696569,
-0.2635892932,
-0.1085801147,
-0.0504680719,
0.1039432838,
-0.2455086265,
0.0825842472,
1.2845476735,
0.1579372371,
0.017575526,
0.0412040738,
-0.3158833025],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00081542134],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6190006981,
-0.3864037371,
0.3059022736,
-0.5350303885,
-0.7285366598,
-0.5300525194,
-0.3332595111,
-0.1130550533,
-1.1343730191,
0.6428619768,
1.6697379529,
0.678280729,
1.1045066684,
-0.0964553412,
-0.0374603095,
1.5151347656,
-0.0735143329,
-1.4836477289,
1.1305421716,
0.3808897232,
-0.0443428797,
-0.5333530453,
0.1223429825,
0.5612769661,
0.3916115658,
-1.1256086833,
-0.0163857314,
0.0933472767,
0.7171188281],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038063526],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6706133372,
0.1407566259,
-1.0750714067,
-0.0572105724,
1.8984368926,
2.3645203047,
-0.0160401991,
0.5443732254,
-0.3764606442,
0.1027152985,
-0.129351268,
0.0024294786,
-0.1163044957,
0.7397261505,
0.9521552139,
0.1186875225,
-0.912817482,
0.1161114707,
0.1483954888,
-0.0473529859,
-0.0723172101,
-0.3550672085,
-0.2997723299,
1.6812956149,
1.9370745285,
-0.5788340358,
-0.0192747014,
0.0220810114,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00053068995],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9644583354,
-0.68434204,
-0.357701646,
-0.0174295631,
-0.8163079544,
-0.3712858662,
-0.515837577,
-0.1488909769,
0.2140218004,
0.4926880102,
-1.1394390148,
0.6607160033,
1.0466566521,
-0.4662177816,
-0.3924262862,
-2.1751426255,
0.0386002505,
1.3909560556,
-1.108270973,
-0.565950576,
-0.1397191928,
0.4992071911,
0.0732561264,
0.0171088545,
-0.0053305952,
-0.2461448535,
0.1076564863,
-0.0693103928,
0.7968056841],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002540648],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9285284468,
-1.3313807481,
-0.6430677769,
-1.0156946752,
-1.0804777859,
-0.1826945809,
-0.808261325,
-0.1275780087,
-0.9943613072,
1.2729085205,
-1.0322053616,
-0.7287896838,
0.7050878714,
-0.5470295753,
0.0322139784,
-0.4714595042,
0.4875234491,
0.0440629428,
-0.3801433632,
0.0767740096,
-0.0209560022,
-0.0717863766,
0.1611943099,
0.991212597,
-0.640203045,
-0.4618362002,
-0.0453981569,
0.0107290549,
1.2586007559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018146634],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4064901737,
0.5112660463,
0.4229131948,
0.0515941899,
0.7030375957,
-0.7109427903,
1.1197148877,
-0.2996446583,
-0.5736435273,
-0.5596449057,
-0.8221295317,
0.0388595706,
0.0011519049,
0.3945535603,
0.1369450801,
-1.5198784227,
0.4114630494,
-0.5124093841,
1.6504040736,
0.0500680279,
0.0358715044,
0.2890387795,
-0.7334119293,
0.010340555,
1.9835166804,
0.1632690991,
-0.2559333504,
0.2364703753,
0.2223974827],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013905466],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3035494021,
-0.6223551487,
0.8726821289,
1.2680517182,
-0.8808223253,
0.8035556532,
-0.5213818977,
0.3376574913,
0.9062812226,
-0.2610363192,
0.8669264425,
1.8142963288,
0.3353919579,
-0.7000793707,
-1.9391858703,
-0.7223465505,
0.3304650229,
-0.1949711885,
-0.2181466757,
0.3871768945,
0.3858892788,
1.0902091756,
-0.5605068272,
0.5038310804,
0.962688408,
-0.3068005429,
0.1580033422,
0.2018609067,
1.2339180501],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000649482],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0168273619,
-0.1101455152,
-1.056311233,
-0.0245594955,
0.1525871204,
-0.8406774012,
0.2945985318,
-0.2513272061,
0.5385729047,
-0.0318986671,
-0.7476600724,
-0.2087383756,
-0.9403967459,
0.8077543079,
0.9103877541,
-0.1566095292,
-0.4387905537,
-0.4966253793,
0.1773045127,
-0.2457271818,
-0.2050200718,
-0.7261497015,
0.4443077814,
1.1621431895,
-0.1768387466,
-0.3923932585,
-0.1830433166,
-0.1449449212,
0.3658928677],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00060373545],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0820840374,
-0.7652383324,
-1.0718969166,
-1.9347322742,
-0.4585077364,
-0.5958234407,
-0.3643861283,
-0.1575280279,
0.9045817548,
-0.3037951714,
0.7012458357,
1.413356656,
0.0819602645,
0.2489042019,
-0.5485215665,
-3.3891366245,
0.3293967336,
1.9471189096,
0.8837127841,
-0.7724200239,
-0.1604014759,
0.6955645718,
0.0017988009,
1.2288642587,
0.8152584265,
-1.2511240872,
0.1281789854,
-0.172276993,
-0.0352693377],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014120042],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1482173646,
0.5203524643,
0.8116497448,
0.5446907313,
-0.3836768486,
-0.1201125041,
0.0726818487,
0.2021125959,
0.0546353664,
-0.1689970951,
-0.2275408272,
0.7254496495,
0.4622804567,
-0.1474535019,
0.2820132958,
-1.058687636,
0.7877988021,
-1.2451069228,
0.9894853474,
-0.096129657,
-0.1665903965,
-0.0995629975,
0.702379845,
0.7001788426,
-3.1260225176,
0.1445821459,
-0.3583832704,
-0.1201805667,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041112304],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7285565998,
-0.7064976785,
0.2844908316,
-1.0870411221,
-1.1017949333,
-0.3626446026,
-0.8836090893,
0.0069501059,
-1.7542051634,
1.4260449392,
0.8321833238,
-0.7224414101,
-0.4273910273,
0.0588283057,
0.0847133802,
0.0711313139,
0.1767876146,
0.587495562,
0.3235239805,
-0.422586773,
-0.5855569094,
-1.4144212341,
0.2753259538,
-0.1475801036,
0.1904022512,
-0.9832007135,
0.0473565861,
0.0613942981,
0.2772436394],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00040650368],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8984757542,
-0.4319365407,
-0.3367684406,
0.1299242239,
-0.392023383,
-0.0355492213,
-0.3870108094,
0.0993399756,
0.6736347774,
0.1179556025,
0.9030350422,
0.9569464055,
-0.1222745984,
0.1967350317,
-0.1348827218,
0.7142442655,
-0.8412806161,
0.0826259014,
0.2782149434,
0.0301235198,
-0.2244744552,
-0.9251174512,
0.6888856695,
1.2470907988,
-1.334500303,
0.3460711865,
-0.1667734422,
-0.0872387656,
0.8175072709],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00053334236],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4276057162,
0.0055351532,
0.5668900786,
0.6615859007,
0.0696131912,
-0.0600968842,
1.0835229379,
-0.0653279497,
-0.9737757211,
-0.2140826662,
0.9740007445,
0.7615828389,
0.7246357388,
0.4459870286,
0.3093856056,
-0.0344179626,
-0.6854586931,
0.8924258026,
0.9744576179,
0.9031153891,
0.5080383642,
0.7865793575,
0.7183765072,
0.0052666385,
-0.1946520296,
-0.7059612192,
0.1817418389,
0.5684607931,
1.2731465129],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00072157383],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.412464819,
0.2240786034,
0.0170084047,
-0.4676258546,
0.9982406657,
0.5692968537,
0.3952284419,
0.3823469978,
0.2281641484,
-0.1281699715,
-0.2973499373,
-0.4967167901,
-1.5181604292,
0.556533246,
1.2807687,
-1.509452976,
0.8407110819,
-2.0863682514,
-2.4884343724,
-0.1082672345,
0.6207383021,
2.2877937239,
-0.0799979558,
-2.1288497344,
-1.2920854334,
1.2627809786,
1.3479974993,
1.1505728025,
0.2056731977],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013673306],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5301350398,
-1.2318966269,
-0.6072473994,
0.523261671,
-0.7468429835,
0.0597860776,
-0.0605947458,
0.014244353,
0.7393727716,
0.058802484,
0.4594677806,
0.4858590236,
-0.4171378464,
0.3686853789,
0.3824786653,
0.9576086209,
-1.0901670066,
1.0137746508,
-0.3148192107,
0.9875342938,
0.6930761442,
0.6112320349,
-0.4893103374,
-0.7171585338,
-0.902077143,
0.65641743,
-0.2698246609,
0.0833023821,
1.6093085306],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003502071],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2083382902,
0.5655402115,
-0.1207031838,
-0.6489512912,
1.1756176374,
-0.0165847688,
0.7093707758,
0.0536532025,
-0.4265487723,
-0.7651479041,
0.3044960223,
-0.0237309318,
-0.5345466851,
-0.6997260032,
-0.8387699005,
0.6755958398,
-0.0044129079,
0.6423499131,
0.5535507969,
-0.1593548008,
-0.3504791375,
-1.1189687915,
-0.2457227155,
-0.3704633897,
-0.8746029514,
0.2849526377,
-0.0542086874,
0.5025295234,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009997785],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5132787999,
0.2371620678,
1.5777506774,
0.6406810709,
0.6615590284,
1.0987468718,
0.0499228018,
0.4440446421,
0.0326383671,
-0.2607180698,
0.5116363062,
0.35776737,
-0.6115215744,
-0.1776590677,
1.4254686828,
-2.239959822,
1.6355485876,
-2.7423268482,
-0.932568444,
0.217535504,
-0.3033785699,
-0.2610878174,
0.0662661384,
-1.1308415521,
-0.2233339439,
-0.841226015,
0.587324319,
-0.2409298754,
-1.6936286941],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008716285],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9450214442,
-0.2784834475,
-0.2279020023,
0.3308618935,
-0.4944838366,
-0.4781084122,
-0.2751023831,
-0.0940234241,
1.0800977236,
-0.1701454606,
-0.8347599545,
0.6899561065,
0.5449225453,
-0.1091984151,
0.6743559794,
0.242312864,
-0.6961377699,
-0.2030678602,
-0.0515188947,
-0.1093969609,
-0.210544642,
-0.5551603546,
0.5305935766,
-0.2454877782,
-0.7845944532,
-1.2845696317,
0.0613103509,
-0.0581721171,
0.5880850262],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000559479],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9944106451,
-0.3138269255,
-0.2660672278,
0.2926677504,
-0.4708680534,
-0.1370911424,
-0.5838665949,
0.0856874411,
1.4436995824,
-0.1176193792,
-1.190236718,
-0.1578052717,
-0.9556149728,
0.0095767129,
0.694442128,
0.1788599671,
-0.5368332062,
0.4713387596,
-0.2447692077,
-0.3401617577,
0.236833573,
0.90537754,
0.2908328598,
1.2076638571,
-0.1993037629,
-0.5008164913,
0.0669290865,
-0.0910317395,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041022897],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4844265771,
0.6562895857,
-0.353512093,
-0.5383553826,
0.431379761,
-0.4872966895,
0.5464964325,
0.2645622715,
0.1270799423,
-0.2000569101,
-1.5591119317,
-0.2682749365,
-0.6925127058,
0.4693507705,
-0.6419843586,
-0.0596799759,
-0.2910180171,
-0.5603289995,
0.1956228859,
-0.1574004371,
-0.2740593015,
-0.5962051049,
0.4563477562,
0.7631195675,
-1.3126196441,
0.2925818314,
0.6703222592,
0.7886812675,
-0.0199048743],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014299154],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2849351766,
-0.1615993841,
1.0506703148,
-1.879557469,
0.1411527517,
0.2434492925,
0.2000554926,
-0.001716593,
-0.8283455046,
-0.0366115249,
-0.29511793,
-1.0197431884,
-0.4961573018,
-0.5839794729,
-1.0453820957,
1.9818470456,
-0.8895277219,
-0.1610929666,
0.744384508,
0.2785357404,
0.3667555767,
1.0133575519,
-1.0261409008,
-1.8231392725,
1.5515172735,
-0.0582455739,
-0.4116000158,
-0.6040149584,
0.3657682963],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003579557],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0076730006,
-0.0776134853,
-0.6322545224,
0.2254291579,
-0.1136839295,
-0.7134290338,
0.0621822142,
-0.1416059729,
0.2720471779,
0.2294664291,
0.975985235,
0.982165262,
-0.3409376881,
0.5557061398,
-0.7058555162,
0.0804892983,
-0.5490876317,
-0.417191017,
0.5002212352,
-0.3111480559,
-0.3264283273,
-0.8428905059,
0.6046766546,
0.1062684875,
-0.6616192537,
0.358904203,
-0.1906227995,
-0.2105906178,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011880696],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0366565128,
-0.6103146471,
-0.6667950043,
-0.682775155,
-0.4570999898,
-0.3864908066,
-0.4640034349,
-0.1253417935,
-0.4932944284,
0.7974436873,
0.7953532459,
0.4752224925,
0.7712412829,
-0.1743782516,
-0.8553448087,
1.2015953821,
-0.0878868634,
-1.239673208,
1.1809496206,
0.1462769941,
0.3645168948,
0.9962560383,
0.1022322894,
-0.5913905816,
-0.0920242652,
-0.3376919549,
-0.0591666878,
-0.1814699166,
0.5700601682],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038272142],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1124461764,
0.6733119545,
0.1672010507,
-0.317610786,
0.7979487388,
-0.3035778119,
0.8147346579,
-0.0260174703,
-0.758284647,
-0.7929993989,
1.1901240954,
0.7236867606,
0.3815811533,
-0.7953356946,
-0.7710186409,
0.2205990296,
0.4272756291,
0.3635074281,
0.8459266268,
0.0562537153,
-0.2837581728,
-0.8089657339,
-0.0724211404,
1.1498707612,
-0.8975192246,
0.3758283713,
0.2326452613,
0.5575000343,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012142062],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9544290218,
-0.1308330058,
-0.4305214705,
1.1800550784,
-0.1536184646,
-0.2433106051,
-0.0049975716,
-0.0657658373,
1.0206128561,
-0.00737267,
-1.4593165674,
0.6009374006,
-0.5191467941,
-0.18592767,
-1.8494369318,
-0.9805612012,
0.2436943358,
-1.0887935235,
0.304037104,
-0.3696439769,
-0.4510395843,
-0.8394288851,
0.3823103399,
-0.2129364781,
0.0786159127,
-1.6789837729,
0.0837897544,
-0.1194880799,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00059613585],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.663184534,
-0.0218481706,
-0.681683188,
-0.4058566082,
1.5090474409,
2.5217255644,
-0.4263487083,
0.6786186142,
-0.0638659707,
0.0086530427,
-0.0147465117,
0.0684146154,
0.0429492794,
0.4407648388,
1.3562628952,
0.710035335,
-1.0283134393,
-0.0634957235,
0.3173280036,
0.0190909003,
-0.4353569366,
-1.5024960228,
0.1927055301,
1.6512434,
0.7150176299,
0.2283451641,
-0.0731163942,
0.046347871,
-2.1412978463],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047165155],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5596664346,
0.0081983041,
0.2805198247,
0.4802030473,
-0.3909659616,
-0.7180971363,
0.161616593,
-0.1953529631,
-0.0208668459,
-0.0904958026,
-0.1548660162,
0.5046901088,
0.6043148208,
0.2143843366,
1.1010144792,
0.3309237532,
-0.4923827567,
-0.6426668768,
-0.1801576253,
0.1110706666,
-0.2874285892,
-1.0801871068,
0.1209595814,
0.6369387855,
0.3872970176,
0.1768676539,
-0.1074509278,
0.1145406643,
0.7112372079],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006967783],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3014960593,
-0.099587499,
0.9344839252,
-2.1385105725,
-0.4335298311,
-0.7063344244,
0.1293657871,
-0.1254988066,
-2.030864272,
0.5387254168,
-1.0933078374,
-1.0667761358,
0.5010199078,
-0.6269607818,
-0.9328273544,
-0.5573808996,
0.3437739402,
-0.1094896239,
-0.8878383334,
-0.248785811,
-0.2918817349,
-0.1804365593,
-0.6542910606,
0.041211386,
1.5081787825,
-0.2210970279,
0.6268531081,
0.3463108701,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00037926435],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.656032206,
-0.8781853093,
0.294286785,
-0.7535184474,
-1.2958726745,
-0.5382111681,
-0.7045143086,
-0.1447452847,
-1.3096240131,
1.1199600914,
-0.8349507245,
-0.7875363735,
0.0379537687,
-0.5512730524,
-0.637851359,
-0.9831272114,
1.0779021861,
-0.4187496976,
0.1834111594,
-0.2248668926,
-0.4775631126,
-0.9679406706,
-0.0199767716,
0.6161079321,
0.7042764644,
-0.5755880717,
0.0449567895,
0.1248429332,
0.8800775064],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003273487],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0354812994,
-0.1966353758,
-1.0307525483,
-0.7650566919,
-0.1718324063,
-1.5803614163,
0.3687825105,
-0.5491007163,
2.4795836556,
-1.0951400004,
0.6164153359,
-1.6757370805,
1.1979365405,
2.0607548863,
-0.563402398,
-1.6930160922,
1.1954248394,
-0.5058115147,
0.8640750419,
-0.3305760087,
-0.1560452693,
0.2292770314,
0.1032104158,
0.7576032003,
0.5656612726,
-0.41166622,
-0.1789464895,
-0.2139419658,
0.2281783088],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0016745329],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4508226165,
-0.4359949605,
1.0954309158,
-1.2370083615,
0.7638333257,
-0.799530778,
-0.0503951399,
-0.2341487603,
-1.1966922711,
0.1495858269,
-0.8029764615,
-0.3160666837,
1.7571700444,
-0.8326389296,
0.1338945143,
1.581721639,
-0.5327466972,
-1.6346170797,
0.5745509819,
0.6861263276,
-0.0270328888,
-0.4171076773,
-0.037648657,
-0.7701971128,
0.078333678,
-1.2462620262,
-0.2777909715,
-0.3078301032,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031027198],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9906743631,
0.1594285498,
-0.8881610978,
1.0583364271,
0.2106923489,
-1.0317409515,
0.5959238923,
-0.4030241125,
0.0386028032,
0.2116070336,
-0.4523840395,
0.8368172122,
0.4015945229,
0.4309067774,
-0.6989300287,
-1.0071203126,
-0.0166590719,
-1.0275329147,
-0.4828984872,
-0.3236935309,
0.125545977,
0.6851640164,
0.0647512823,
0.7042655298,
0.8178649229,
-1.0704191577,
-0.0325165531,
-0.1616558825,
-0.0050000767],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010521412],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.9014592428,
-6.4743981272,
-2.9057884282,
1.0642760856,
-2.3589926779,
0.6957137758,
2.9533709665,
-0.6334666105,
0.7226397766,
-1.4522561149,
0.5609190921,
0.9751402944,
0.3574056382,
0.9841675477,
0.4411529893,
0.6966641867,
-0.6864052936,
1.16468697,
-0.1759159583,
8.030496009,
2.5596873432,
-2.1254019776,
-4.3306309527,
0.8074337163,
-2.5950989136,
0.494803312,
-1.5837718581,
1.4813306052,
2.5293093844],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [3.8415194e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4087554511,
0.8783443548,
-0.3531780581,
-0.8468615932,
0.6163194257,
-0.1258266893,
0.6547809981,
0.0904508107,
0.5186277651,
0.8912140869,
-0.1146653095,
0.2985986278,
-0.2992715835,
0.057431277,
-0.9649038845,
0.3266180922,
-1.1427490541,
0.0172449246,
0.5310476446,
0.6366933082,
-0.5551820035,
-1.0709456887,
-0.0196324037,
-2.004111509,
-0.3645842645,
0.4402512425,
1.5956622654,
1.0729537014,
-0.9825574989],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004825592],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6009777478,
0.0643653048,
0.0773881348,
0.3467516145,
-0.303586198,
-0.8229930344,
0.1921398969,
-0.0695248847,
-0.1808241067,
0.1486884132,
1.3361138863,
0.0515697533,
-1.9485860653,
1.0907628099,
0.2640255935,
0.2754380631,
-0.3584567752,
-0.2457815326,
0.4074294835,
-0.2409993207,
-0.4570476004,
-1.6175348679,
0.2999514597,
0.7827719379,
0.3135562566,
0.2332896926,
-0.2061322289,
0.010612296,
0.0880150045],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009035468],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1103851499,
0.3050202163,
0.8717973844,
-0.2452414929,
-0.5193804945,
0.0418955115,
-0.6919191394,
0.9771481332,
0.1504470551,
-0.7650163883,
0.0805348161,
0.6044076317,
-0.3482246758,
0.5260224468,
0.3116048127,
0.8201846748,
-0.555346002,
1.4392655553,
0.7220530818,
-0.0897745466,
0.2371465514,
0.2672801189,
-0.6087441409,
-0.5823493727,
0.8007060875,
-0.4485502522,
-0.4502595733,
-0.0525950598,
0.0043513682],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00091540813],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0643466833,
-0.4797020589,
-0.8613751975,
-0.5038861529,
-0.4086272407,
-0.39139395,
-0.752497873,
-0.0334161881,
0.0931999948,
0.0747013413,
-0.65761912,
-1.0765564754,
-0.0893783515,
-2.1014062355,
0.469482123,
2.0082259283,
1.432924441,
-0.30235986,
0.4026732755,
0.1223180108,
0.3055791654,
0.8645833215,
0.1615771762,
0.6026556264,
-0.2006696685,
-0.2189203017,
0.0374034745,
-0.0038557113,
0.3646457504],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00090160966],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1106589001,
0.6833876554,
-0.2800545873,
-0.3990359819,
0.9162042779,
-0.3184113641,
0.8278755077,
-0.0441116686,
0.145205093,
-1.1031312198,
-1.6642501696,
-0.6986881201,
-0.2919030283,
-1.8631411079,
-0.8053660596,
0.3489378207,
0.9512258915,
0.7431779271,
0.0904714169,
0.0679917641,
-0.0559295862,
0.3342869253,
-0.6991576506,
-1.9145309218,
-0.1193167967,
1.3412759282,
0.9190865827,
0.8043593896,
-0.5250226071],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00112167],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1458737007,
1.1403388809,
0.035052726,
1.894425476,
1.2811505519,
0.1607820227,
1.0615756584,
-0.8119984892,
-1.803271516,
0.7364865263,
-1.4732692057,
0.0091852764,
0.8428422214,
0.1310656974,
-2.1985540018,
0.3169647778,
-0.791392355,
-0.786574118,
-1.7320878095,
-0.4658080527,
1.2204262009,
0.2169142301,
0.0059179899,
1.0935670178,
-0.953964742,
-0.3435237691,
0.5370062795,
0.764440553,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00028026104],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1079192574,
0.6746573617,
1.0874457067,
0.6988015853,
0.694556279,
0.6312266326,
0.7984040888,
-0.3103503686,
-0.8067653308,
0.5558903025,
0.4565554657,
0.2399552366,
1.0351443192,
-0.1629114579,
1.2506542786,
-0.1839507017,
-0.9383253986,
1.1750741916,
2.7781369207,
0.5289547661,
-0.1482762699,
0.0527959463,
-0.9338522252,
-1.6985927336,
0.6698344352,
-0.2969711422,
-0.8588147416,
-1.2008210648,
-0.1944465718],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00073745847],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0311858177,
-0.1965479561,
-1.7587555961,
-0.5623803597,
1.8561678535,
2.4418929589,
-0.3146461515,
0.601370321,
0.3860529505,
0.0363459618,
0.0735689939,
0.2776507873,
-0.1432528128,
0.7156380834,
1.2693190041,
-0.3276159807,
-0.6616644608,
-0.1950452435,
-0.4431469904,
-0.2240874088,
0.3329147328,
1.0200495366,
0.0804204064,
1.2249520675,
0.5888821339,
-0.1806052358,
-0.0064989873,
-0.1962883748,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00050759315],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.134479222,
0.6433771834,
0.3626489501,
-0.654214984,
0.9067884512,
-0.2332636659,
1.2786824582,
-0.757821807,
1.9767420909,
1.0349631048,
1.6850336506,
-2.293088042,
1.2542057136,
0.7549205521,
-1.7183413253,
-0.2542720785,
-0.5316787988,
-0.0205783668,
0.0505608889,
0.76289139,
-0.9537551942,
-0.9862489319,
-0.1733014677,
-1.0778446082,
-0.8581935797,
0.0386994125,
-0.2956396363,
-1.9518878125,
-0.2791034145],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00060519576],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3337465628,
0.6545724153,
0.9921433677,
0.070326994,
0.7478112771,
0.9652257471,
0.4844431532,
0.208650296,
-0.4475759431,
-0.2511123745,
0.975819939,
0.4081578065,
0.6055875684,
-0.5975199568,
2.5691997372,
-1.4577440902,
1.5212919665,
-2.4533705525,
-1.1458360992,
0.231886597,
-0.2210986563,
-0.098542419,
0.020361599,
-1.6599929299,
-1.0137281716,
0.5702773003,
0.2226999762,
-0.167873635,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005790889],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0895567785,
-0.4112443305,
-1.0170022619,
-0.7387747511,
0.0339841164,
0.2195771177,
-0.7817671453,
0.0577662142,
-0.3108843301,
0.1912779777,
0.5949128415,
0.2060891484,
1.5874340673,
-2.2814380892,
-0.4352747846,
2.3914585837,
0.7259609561,
0.3414322732,
1.1177001225,
0.2528728236,
0.3162045694,
1.0231804716,
-0.0274881034,
-0.7035223046,
0.0564902277,
-0.163333043,
0.0605979669,
-0.0604816416,
0.0203055874],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003208518],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0225245196,
-0.4950682618,
-1.6038667324,
-0.4715876868,
0.2466716748,
-0.5255222072,
0.2506645326,
-0.2293159188,
-0.6983787541,
0.8394872119,
0.0394391455,
-0.4201973198,
-1.5363093098,
1.2617670022,
-0.1725105656,
-2.0457348097,
-0.4497474059,
2.2657611485,
-0.2894477199,
-0.7041983411,
-0.1922692554,
-0.2035796696,
-0.1641786457,
0.2162461215,
0.8567694274,
-0.9062660778,
-0.1226112486,
-0.1801781661,
0.8224140127],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00042501092],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0103653166,
-0.1345353054,
-0.7148193494,
0.3023519947,
-0.1725411333,
-0.9026763803,
0.125295852,
-0.2227922445,
0.6225583524,
0.0910772302,
-0.9466633383,
-0.1765072246,
-1.0407362552,
0.5161992774,
0.1763712514,
-0.0426744648,
-0.2751541336,
-0.820225428,
0.2096369285,
-0.3212921492,
-0.4040762071,
-1.1496062285,
0.5722920288,
-0.0990834791,
-0.634467061,
0.4149294456,
-0.2061163928,
-0.1753799232,
0.1439328524],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007457137],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1519627609,
0.371874254,
1.2337572924,
0.9826527001,
0.3222745803,
0.0592492454,
0.3034170164,
0.0840615936,
-0.6750493179,
0.4934759141,
0.4561501267,
-0.4878067215,
-1.2134406738,
0.1241782467,
-0.4489173354,
1.5411481235,
-1.6205743213,
1.0860900854,
-1.7260484787,
-0.1505760008,
0.2892229176,
0.7455273073,
-0.2655817036,
-0.0693251879,
-0.3535414754,
-0.2436609071,
-0.3849496029,
-0.6437116117,
-0.2933976599],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00067201257],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9778272591,
-0.3167718897,
0.0652913496,
0.2446164892,
-0.5614477764,
0.1113662117,
-0.8769776179,
0.1092174269,
2.1943145804,
-0.1858364991,
1.3000649959,
-1.6840965645,
1.7171463261,
1.3377573231,
-0.6928596126,
1.0840161089,
-0.3558579647,
1.1604847169,
-0.0597371258,
-0.247642674,
-0.130690433,
0.0958150828,
0.4535996475,
-0.8960516793,
-1.1281960099,
0.934370065,
-0.1154872764,
-0.1736237448,
-0.0921763942],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000305295],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6143004946,
0.7377702378,
1.0239269938,
0.9014746784,
1.2666079859,
0.7497701269,
0.8135867899,
0.2779648049,
-1.6225538859,
-0.0977125534,
0.6179295046,
0.3731087175,
0.3485499807,
0.3707582575,
0.7112749037,
-1.0594346888,
0.6852828019,
-2.9881565618,
-3.7573002181,
-0.306786623,
0.2907262426,
0.781781946,
-0.3729754917,
-1.0642320641,
0.7674673241,
0.1696955767,
-0.2627048205,
0.3006669658,
-0.575115106],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006992817],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9324106234,
-0.053925162,
0.6601188444,
0.9429723253,
-1.2134282161,
0.9453825741,
1.5686872146,
0.4753044782,
-0.5713185199,
-0.8870283884,
0.3657054569,
1.0033902746,
-0.1130643612,
0.2336691659,
-1.6469058314,
-0.6540027584,
0.3785896533,
0.0286508636,
1.7140647703,
1.5025063221,
-0.2260900308,
-1.6409311629,
1.8639285267,
-0.1948300331,
1.1006585765,
-1.6862341345,
0.1350697515,
0.3459918141,
1.635774638],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003927946],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2026594955,
0.1457933793,
1.0948323502,
-0.2278362161,
-0.5836079351,
0.7083143381,
0.4026553349,
-0.0437562774,
-1.1532863182,
0.7977204585,
0.8488201012,
-0.1126336094,
-0.0993710777,
-0.1634187039,
0.5807974247,
-1.3204762548,
-0.6227368085,
2.2294442788,
-1.4763128662,
-0.7004187471,
-0.2368971242,
0.1774311093,
-0.2518997756,
-0.5973274672,
-0.300824853,
-0.734446618,
-0.6204944438,
-0.755693482,
0.9375610605],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024440885],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3061523971,
-1.6991279035,
-1.0684691278,
0.294709001,
-0.072362676,
1.5764645881,
0.1066874251,
0.3698217083,
0.7486101492,
-0.2891464755,
0.7103774029,
0.9838347428,
-0.3199458839,
0.346570428,
0.1229647212,
-0.3083941533,
0.1239703963,
-1.4593380219,
-0.573307962,
1.442105895,
0.0691586689,
-1.6780416185,
-0.1292013339,
-1.5886727673,
-1.9457041335,
0.3230200903,
-0.3268683588,
0.1619749711,
1.775580092],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00019970536],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.7080963117,
-2.4097180196,
0.241769127,
0.4163566174,
1.9514453882,
-2.266583289,
-1.7473125849,
0.606079442,
0.6394002675,
-0.7246793298,
-1.4684751041,
-0.0464376172,
-0.8274404769,
0.7987265187,
0.7471546663,
0.6014223863,
-0.6129781366,
0.5146229576,
-0.4981710789,
1.1806088341,
0.5898536168,
-0.6084944804,
0.340231856,
-0.2587240573,
-2.6494405184,
-1.7181113116,
0.5578708962,
-1.5228341783,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002860725],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0716572392,
0.6340222194,
-0.2433579722,
-0.3949263284,
0.7177851889,
-0.5723425845,
0.7984560053,
-0.0738583811,
-0.0848751501,
-0.7431801012,
-0.5705195211,
-0.0031697089,
0.1811422304,
-1.0591800435,
-0.2421707804,
0.2853910184,
0.4765223436,
-0.3722202623,
-0.3820189776,
0.0403771552,
-0.4585794365,
-1.1234162557,
0.1949917843,
0.9103181661,
-0.8137896714,
0.2395168044,
0.5448108016,
0.2769491695,
-0.7824716357],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005850196],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4644112126,
-0.636634949,
1.099142178,
-0.2411981718,
-0.7515955517,
1.2154511004,
0.9312097574,
0.0812124443,
1.3170812934,
-1.1405263436,
-2.7329286041,
-0.2500562835,
-0.3029951584,
-1.4462899588,
-2.2778497214,
-0.0003558821,
-0.4769403055,
0.1957862312,
0.5720123688,
0.9576872868,
0.0225356627,
-0.0044016313,
0.8989273805,
-1.6481698783,
-0.1979118803,
1.00971032,
-0.35546952,
-0.1765413311,
1.4658487716],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021448731],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6121134113,
-0.554605454,
0.1411168735,
-0.3134026359,
-0.7271911764,
-0.3046625745,
-0.3938442887,
-0.0236043338,
-0.3524004689,
0.4139855228,
-0.5332771654,
-0.8108035739,
-1.0135602259,
-0.1602664134,
-0.2237316086,
0.2558176647,
1.2034822734,
-2.4263564918,
0.6970908718,
0.1302474318,
0.1560018899,
0.3340604172,
-0.2104097699,
0.168458463,
1.0636427763,
-0.2497519994,
-0.0010911672,
0.060483623,
0.7406208933],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00088119507],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5535640136,
-0.0292881916,
0.3025379523,
1.0744349256,
-0.409669988,
-0.3066091928,
-0.0453955424,
0.0921359465,
0.5716797177,
-0.0461526998,
-0.6519359338,
-0.7260868303,
-2.7695871315,
0.6210101145,
0.1732387587,
-0.7851849719,
0.6041211406,
-0.887424938,
-0.5980997255,
-0.4202332626,
-0.1346340712,
-0.3208913668,
-0.0070328399,
0.5794152538,
1.01038311,
-0.6743208857,
0.0420735834,
0.0656545508,
0.2298177284],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044050813],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0521812474,
0.0489911505,
-0.8940353488,
0.222763096,
0.3130855677,
-0.5322494749,
0.07161079,
-0.2969755539,
1.8159539143,
-0.4112112485,
-0.0148840895,
-2.2346538883,
1.8611405236,
1.9170604792,
0.1789669225,
-0.2503131354,
0.0876609844,
0.5688943903,
-0.3515207566,
-0.3331177583,
0.1322565489,
0.9297453609,
-0.0075218275,
0.7252539656,
0.7153897867,
-0.9818468327,
-0.0605848606,
-0.1663402729,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00086420774],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2027812381,
1.0125275704,
-1.0212701594,
-0.2060929324,
0.4170512991,
-0.227600873,
-0.4202274692,
-1.9882912807,
-0.3354105224,
-1.4576662809,
-1.7288114462,
-0.4914426707,
-0.5675700385,
-0.0389485429,
0.7527798596,
0.7376345968,
0.4495447147,
1.41719434,
0.0484534571,
0.5136208046,
-1.3646905592,
1.6107991368,
-0.0521767729,
-1.8564096957,
-0.5464881236,
-0.2174238999,
-0.0930729962,
0.1994890351,
-0.1231026233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00059244037],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6760135063,
-0.3471032921,
0.2164146173,
-0.3169341616,
-0.7019006137,
-0.6411677216,
-0.2673661025,
-0.2239427058,
-0.6156790383,
0.4192068654,
-0.4178669026,
0.1533125232,
1.0051983182,
-0.6041592716,
-0.7463931121,
0.4720603043,
0.7572977864,
-2.1951655094,
1.1433414208,
0.2230040545,
0.1129715837,
0.4343246321,
-0.2361480875,
0.7774799267,
1.3621586867,
-0.3152666986,
0.0106309495,
0.0607590179,
0.3800147437],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007340312],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2969045963,
0.7621315693,
0.6577998372,
0.6800163366,
-0.1819003856,
-0.3887356532,
0.3317434694,
0.3413124715,
-0.7107709598,
-0.4197145857,
-0.2434824929,
-0.1007067394,
-0.5882899131,
0.8517789006,
1.3781122273,
-0.636228038,
0.4690552156,
-0.3713565717,
-0.0670971772,
-0.2227795815,
0.3426274938,
0.8528477419,
-0.0021519745,
0.6587367904,
-0.6893316116,
-0.6636762562,
0.134905545,
0.3298784357,
0.0225436227],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045093894],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2637735226,
-1.4879009129,
-1.7061913825,
0.6904496977,
-0.2871318059,
-0.4847677139,
0.9693667173,
-0.3211047525,
0.2505412482,
-0.585569954,
1.0595015426,
0.554251894,
-0.1419496558,
-0.318314783,
0.4230487254,
0.6104838684,
0.1401166971,
1.4451393707,
-0.4239455869,
1.8314258875,
0.971417378,
0.5151953445,
-1.2947813795,
-0.7221321369,
-0.076824385,
-0.3679069166,
-0.3783582144,
0.2966352747,
1.851133503],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00086796284],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5706768068,
0.0023124358,
1.5189745352,
-0.379704965,
-0.449795391,
0.9458447578,
0.4461131335,
0.4492286217,
-0.1134976604,
-0.9028547465,
1.1913395288,
0.4851803464,
-0.6851055186,
-0.0727298808,
-0.0485446554,
0.1479618224,
-0.2156553191,
-0.1784626865,
-1.445962474,
0.2724199769,
0.4724996821,
1.0423818355,
0.1684645438,
-0.4425895895,
0.405625526,
1.0966779198,
-0.0310908114,
0.1947395593,
1.1097011073],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00037926435],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6173551675,
0.1609535379,
1.3832666713,
0.9247093235,
-0.1794096253,
0.1211723343,
-0.405871887,
0.4358036883,
0.1499971169,
-0.2212636716,
-0.6512035495,
-0.1665362907,
-0.52654426,
-0.0163355822,
1.4396493945,
-0.5007118561,
0.4030368877,
0.0449639671,
0.5624510196,
-0.0290435545,
0.1647389617,
0.6389937553,
0.1012314029,
0.080981218,
-0.5288513838,
-0.6041770551,
-0.5129767312,
-0.5277817301,
-1.3891632464],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008240938],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0592203356,
-0.0218968089,
-1.1878909107,
-0.0933228402,
0.653776471,
0.0238804988,
0.1162543346,
-0.1105403788,
0.2337042152,
0.1443995114,
0.1655147427,
0.9940415477,
0.9877483841,
0.4637170856,
0.0740221518,
0.3118493039,
-1.3738271759,
0.8729213148,
0.5847391243,
-0.15528506,
0.3149999779,
1.0925870872,
-0.1951507915,
-0.4993832632,
0.8250320301,
-0.2023196317,
-0.0648741758,
-0.2139897632,
-1.344792593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007452667],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2046252682,
-1.5392965692,
0.0418587661,
-1.1761178523,
-1.4900849259,
-0.5329348028,
-0.0920408262,
-0.1795252634,
0.1657827556,
-0.3663953285,
1.3984795734,
1.5636573393,
0.8996798136,
0.0166101652,
0.2481451566,
-2.2486814615,
0.1166363181,
1.9868909599,
0.1850668346,
0.7345992049,
-0.024130625,
-0.6602256464,
-0.7236242108,
0.9878990788,
0.4187731481,
-0.1686840236,
-0.1078908311,
0.3293890622,
1.6242493531],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033849478],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1597897339,
0.3799708143,
0.496272127,
-1.6801154961,
0.450168153,
-0.5328238517,
0.8520687641,
-0.1814280036,
0.5947721562,
-0.8517802,
0.5596081404,
0.4544339834,
-0.4898609371,
0.3058220479,
0.2972573117,
-0.1503154198,
-1.2465051107,
1.0231249099,
0.6236592433,
0.0628210119,
0.0732896595,
0.6615258807,
-0.6920031331,
-0.8470496552,
0.2798904792,
-1.6605213206,
0.5593302417,
-0.0939028142,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011382997],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2280482545,
-0.0504928672,
0.1663114875,
-2.1341985375,
1.7293775481,
2.4666991485,
0.143926038,
0.4900231407,
-1.4289556084,
0.1170137897,
-0.1383682406,
-1.2191685081,
-0.0477676411,
-0.2798421955,
0.3127270466,
1.5450900876,
-0.595028098,
-1.0075311998,
0.4950056271,
0.4483695707,
0.2410673939,
0.4155045505,
-0.71827875,
1.7052657233,
1.516351027,
-0.442671802,
-0.3982450041,
-0.5448458302,
0.2812454339],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036230683],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2743508733,
0.0458108616,
0.8736254191,
-0.6632844802,
0.214649898,
-0.9821356351,
0.6275760679,
-0.4507850017,
1.985340742,
0.320151243,
0.7557379142,
-2.4162483321,
2.0750064855,
0.7444056042,
-0.0382295593,
0.5943251003,
-0.205989642,
-0.2681377067,
-1.0042798643,
-0.5354752186,
-0.9130514921,
-0.3772776001,
1.1124932139,
0.6182960883,
0.0040209654,
1.4502202506,
0.9924713993,
0.6487442216,
0.5091920498],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022825599],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7029329717,
-0.5183293428,
-0.7630364077,
-1.2906760482,
1.0696650634,
2.4690333668,
-0.8273967711,
0.6328003089,
-0.8570410469,
0.6049285185,
-0.0003496364,
-0.7286824161,
0.2108998151,
-0.0073562074,
0.9851235468,
1.5971796728,
-0.2780689398,
-1.093694177,
1.0912439791,
0.3600441611,
0.1579975536,
0.0264665437,
-0.1845009737,
1.7094941957,
1.2428733903,
-0.405497206,
-0.0044994306,
0.0585848398,
0.4462405371],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005411804],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0163988846,
-0.0342956322,
-0.9030293763,
0.0905031446,
0.2407706743,
-0.406145058,
0.0916656412,
-0.1207993086,
0.2420849391,
0.1504223781,
1.0808871106,
1.0737195177,
0.2145752863,
0.6529349866,
0.1061696357,
-0.0844355178,
-0.8179158907,
0.4238886251,
-0.0172897213,
-0.2594874333,
0.4140444398,
1.3433695435,
0.0645361314,
1.2404135533,
0.4782442896,
-0.329024685,
-0.0625824613,
-0.1844938487,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013233125],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.055571667,
-0.0409136578,
-0.8485794937,
0.1741009178,
0.1551797516,
-0.6100091979,
0.1578414473,
-0.2433195252,
0.4934896806,
0.0691464247,
-1.2871265216,
0.276359719,
0.3261921323,
0.2178781406,
0.0727785171,
0.0936408398,
-0.6165834216,
-0.7647638013,
0.5037111531,
-0.2527327192,
-0.4612880102,
-1.1506715395,
0.4481443407,
-1.0991355985,
-0.3763922327,
0.4920917891,
-0.177226628,
-0.200101221,
-1.1816916919],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00097996],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0377968041,
0.0905855391,
-1.2410595297,
0.0736502313,
0.7091833017,
-0.0058636336,
0.110684695,
-0.0565877748,
0.0995839711,
-0.2114126167,
0.6930057858,
1.1365271153,
1.1266711691,
-0.8985946989,
-0.5647133656,
0.6880894733,
-0.0476702334,
0.2713581097,
0.6707487749,
-0.080117431,
-0.4755574625,
-1.2140581243,
0.4100315954,
-0.469761969,
-0.3185235423,
0.4157939585,
-0.1455178039,
-0.1362998849,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00085127354],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3104442002,
0.4792503203,
0.0798351585,
-0.7139991107,
0.3739332542,
-0.2707980248,
0.7316246894,
-0.4138750113,
0.7936502854,
0.2620501979,
0.2273373349,
0.4437366415,
-0.6953360819,
-0.2658395606,
-1.5770567102,
-0.5532574258,
-0.7406207705,
0.3276753841,
0.6440229189,
-0.367178605,
0.3323287793,
1.0279530218,
-0.4442296574,
-0.5022310657,
-0.2916307297,
0.007026323,
-2.6538722468,
-0.5294516315,
-0.3358533357],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077563524],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5649859742,
0.0350381671,
1.7127448283,
0.3042163373,
0.1788745983,
-0.1888630636,
-0.146702828,
0.2723384614,
0.2258988185,
-0.7957849204,
-0.4474917744,
0.5820373212,
0.1805494555,
-0.492129394,
-0.2704455832,
-0.2296174933,
-0.1035707168,
-0.6214862713,
-1.4870676876,
-0.0049458037,
0.1729243223,
0.4792720359,
-0.0194874756,
0.6693872984,
-0.0554425521,
-1.1321059201,
0.3266191663,
0.4382435333,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003809929],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.5040308472,
-4.2470301555,
1.403063846,
-0.1626455284,
3.2376179987,
-1.9865875352,
-2.4638106288,
0.5320271564,
-0.6781415542,
0.2920335248,
1.3438387818,
0.0893734025,
-0.4091490114,
-0.2307570263,
-0.3665858716,
0.6262341178,
0.6129182794,
-1.5944034898,
-0.3766391869,
2.8453699607,
1.2394238796,
0.7325762277,
2.4173508758,
-0.5390178916,
1.2777813904,
-0.4491999035,
-0.9688986137,
-0.137079167,
1.3440299978],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017562509],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3067562357,
-0.5435446919,
0.7338436539,
0.6769634816,
0.6754336358,
-0.593537684,
-0.76331521,
0.125871193,
1.3161991346,
-0.1979806309,
1.3845101503,
-2.035671777,
0.967026494,
1.6659707458,
-1.1722343931,
-0.9418089386,
1.3152167557,
0.816218484,
2.9429781716,
0.5049776439,
0.0859079296,
0.4370744914,
0.5510452659,
0.0357472837,
-2.5562506736,
2.2525224732,
0.3311906913,
0.7711430965,
-0.4884239347],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00050884485],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4376862866,
0.0921356962,
1.8943585814,
0.0401031457,
-0.5231579421,
0.4397167871,
-0.0362744557,
0.3602064547,
0.8939401572,
-1.1557339957,
-1.0230427674,
0.7673475399,
-0.2473338261,
-1.183550662,
-2.3630938859,
-0.8733320259,
0.6368796501,
-1.2636297952,
-0.7840296113,
-0.1499737152,
-0.0879635883,
0.237134071,
-0.1529002109,
0.7515571188,
0.0418071764,
0.4906851988,
0.2435676284,
0.3355276535,
0.3267812839],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00014969707],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4590651675,
0.0978154012,
1.3464792904,
-1.8681523531,
-0.5202801298,
0.0532747682,
-0.2972986494,
-0.0952238675,
-0.3192886578,
1.1123844434,
0.1772497306,
-3.7760458696,
2.2952959798,
0.382354408,
-0.1641242673,
-0.3614896577,
0.9721164234,
0.3709938852,
-1.7354597451,
0.1134749576,
-0.4613430626,
0.1215983519,
-0.5678014555,
-0.8671522092,
0.9082988384,
-0.34320879,
0.8533624341,
0.070487412,
-0.366310253],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [9.685755e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1039459393,
-0.3986800804,
-1.4740788008,
-0.7258220763,
0.148937637,
-0.9787715442,
0.2357811106,
-0.4398458657,
-0.8734804888,
0.8121223899,
-0.7792306597,
-0.8394168432,
-0.0666775197,
0.4077269131,
0.0001419039,
0.5874793259,
0.3106186148,
-1.8520184435,
0.9048807138,
0.087292113,
0.4886644972,
1.2188791045,
-0.1567958549,
1.0583346842,
0.9110505877,
0.1071175069,
-0.2341901023,
-0.2049639729,
0.5670747762],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0016102493],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.9095164471,
-1.8892047117,
-1.6731714624,
0.5133415406,
1.5223766162,
0.8553912827,
1.3126767817,
-0.174085245,
0.8011899517,
-0.486494833,
1.3769744907,
0.1411297741,
-0.4382950142,
-2.361282676,
0.3672144033,
-0.1723903657,
1.8594113525,
-0.0815071399,
0.0366075883,
-2.9692588444,
-1.1463266084,
0.7045315356,
2.8989379021,
-1.7894925232,
0.4461667091,
-0.4303864809,
-1.39986844,
0.9111070738,
1.3812216025],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038263202],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4411793194,
-0.4427009061,
0.321462148,
-0.6906636552,
-3.5262486098,
2.3004505335,
3.665354256,
-0.8981314444,
1.2332439306,
-1.1398989432,
-0.3291486903,
-0.567283892,
-0.2879932236,
-0.7139520931,
2.924940582,
-1.098843823,
0.3179017181,
0.2672321233,
2.9232543844,
-0.3410609959,
-0.4056671428,
0.8438448178,
0.2096905767,
-0.5234867338,
-0.6061892639,
0.4250989667,
0.6597572312,
-2.1149096338,
1.9696392832],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013871491],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.748124791,
-0.2638706935,
0.4094085285,
2.7090789148,
-0.493524341,
0.8564864694,
-0.6748129109,
0.2987430028,
-0.3129154443,
1.2657546388,
0.1991671364,
0.7673609586,
0.994747194,
-0.4276830277,
-0.8415954413,
2.1872343162,
-1.7816493511,
1.130999401,
-2.0347241272,
0.1890013247,
0.5003598676,
1.039775086,
0.1150872972,
-0.5850954012,
-0.9887655547,
-0.0987864822,
0.0386017061,
0.0105082879,
1.0875512414],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020483136],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9857131531,
-0.2264085537,
-0.8310363099,
0.2073910795,
-0.0252806249,
-0.4657013908,
0.0328663382,
-0.0493718943,
0.5098626753,
0.2298019473,
0.353315481,
0.1801423747,
-1.6637951407,
0.7792518296,
-0.7467990861,
0.0503882891,
-0.4575366732,
-0.1897723506,
0.6812783491,
-0.3319483698,
-0.2951422932,
-0.8755646271,
0.4060419496,
-0.7184409361,
-0.4919738957,
0.5868860811,
-0.2264658343,
-0.2271454371,
0.2992221906],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011193156],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5086136021,
-0.9442577629,
0.5459076174,
-0.329843066,
-1.1297526881,
0.5088493625,
-1.0118586426,
0.3674601659,
0.1476912585,
0.4506291099,
0.4780063423,
-0.6378156797,
-2.0039217412,
-0.2747310865,
-0.9601951878,
0.9461887137,
0.820314592,
-1.3011728904,
1.1655206401,
0.2551694534,
0.1665493656,
0.1385732579,
-0.1895170016,
-0.5566397857,
0.3983722931,
-0.4531551876,
0.0600172839,
0.0991811081,
1.0230324769],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00080269575],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.7604774433,
0.5870326481,
-0.081048134,
-0.5988676075,
-0.73326711,
-1.445273888,
-0.6748211199,
1.0764863702,
0.1978117984,
-0.1721848131,
-0.3864594416,
1.0521809808,
0.9928522938,
0.5172322666,
0.5115934803,
1.0948433786,
-0.1685645346,
-0.609019743,
-0.9915328198,
-1.1353781922,
-0.5100550216,
-0.077360421,
2.0684297926,
1.2861191012,
0.4594516315,
1.5774645599,
0.4089395051,
-1.5691780651,
-1.7175103686],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047454238],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2740191554,
0.591925213,
0.1557889333,
-0.8471680175,
0.9990579239,
0.0350952441,
0.822098351,
-0.0103554631,
-0.4158941828,
-0.2733807405,
-0.3610545531,
0.4908421521,
0.5359643378,
0.1540406027,
-1.1069067549,
0.466947659,
-1.2941131691,
0.2090525375,
1.02157549,
0.0850389886,
-0.4007370618,
-1.0306445029,
-0.5213601767,
-2.3058533581,
-0.050198286,
0.5251189299,
0.4165658887,
0.5077333767,
-0.7236631158],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005080104],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1445575278,
0.5853624318,
0.9154867145,
0.4422927932,
0.2386343398,
-0.1230827889,
0.6582945936,
-0.0821481988,
-0.4603100322,
0.3119098508,
0.8577367852,
0.0032744184,
-0.6637167787,
0.3661986535,
0.5642503312,
-0.0467922427,
-0.7309200409,
1.0273667176,
0.972608065,
0.2885473604,
0.1623110267,
0.8303569124,
-0.4569061972,
-0.0021623488,
-0.2096420639,
-0.5943290516,
0.5607425009,
-0.0642871035,
-0.1261028464],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001226902],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0981637885,
-0.2727093873,
-0.9043520233,
-0.2267745243,
-0.0118977378,
-0.5334401222,
-0.1234120214,
-0.3548679092,
0.5094516828,
0.4514651979,
-0.1364282217,
-2.2606561505,
2.5009637918,
1.5737530414,
-1.0418181967,
-1.9534933258,
0.7383594394,
0.9642117592,
-0.8866160504,
-0.7557691915,
-0.9454109892,
-1.6102757168,
0.5471882535,
0.8583107709,
-0.3355921654,
0.8581994267,
-0.2461860357,
-0.1883658175,
-0.0621750427],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022527575],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2136269761,
0.1930332084,
-0.1255485055,
-0.7768086962,
2.1210383255,
2.414184908,
0.0408781353,
0.7267438784,
-0.5789504951,
-0.3316679391,
-0.2534804209,
-0.2357181993,
-0.0619871835,
0.4082259414,
0.9413646714,
0.448196287,
-0.9713780209,
0.1838419892,
0.5283200846,
0.2246432971,
-0.135150222,
-0.8040912395,
0.0988210979,
1.6634504377,
-0.771767148,
0.1550068051,
0.2308108515,
0.5049061895,
-0.1261028464],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020378828],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5845248956,
-0.4098681769,
0.3861272488,
-0.1184582431,
-0.3839976228,
0.8197349183,
-0.728298208,
0.4015421387,
1.0645924091,
-0.2594464769,
-0.1081455184,
0.3106638002,
-1.1457041765,
-0.1481882385,
-0.5917897042,
0.1987622267,
-0.2014344504,
-0.050934478,
1.0399983387,
-0.1170446469,
-0.3196659487,
-0.729261289,
-0.0824202191,
-1.8622573664,
0.2732585164,
2.1239373919,
-0.0902690491,
-0.0201208434,
0.2644313344],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041627884],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4114552731,
-0.3212197326,
0.9955090036,
-0.3108023443,
-0.5332041276,
0.467178133,
-0.046256126,
0.2173206795,
0.8472569244,
-0.760790867,
1.0789048063,
0.8006900861,
-0.2386758345,
0.0787424906,
1.7837591622,
-1.284371034,
0.4053444518,
1.1412714655,
2.8771730575,
0.2507927531,
0.4611215752,
1.6579549063,
0.0843403133,
-0.4252483906,
-0.6050287032,
-0.6904878424,
0.4043014924,
0.6487384047,
1.0362458228],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008330047],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.246439401,
-0.2738024233,
0.6636314969,
-0.59951968,
-0.548841624,
0.2724609999,
-0.6910668684,
0.1951585277,
-0.1460471327,
0.3872852072,
0.2195321326,
1.1774987353,
1.7482389613,
-0.5900475998,
-0.0324061931,
-1.4007630545,
-0.8763946301,
3.1459466568,
-0.3545618828,
-0.5416844866,
0.2917688835,
1.8862202464,
0.6353178075,
-0.6786728166,
-4.5036384361,
-1.669618075,
1.2972405469,
1.265292953,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.4050474e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1464039116,
0.6520807724,
0.7209607772,
-0.0156076792,
0.0888889621,
-0.6000379147,
0.5309496793,
0.0100617411,
-0.2153092034,
-0.4197064473,
-0.6690157363,
-0.7190862085,
-0.8082664985,
-0.2526988909,
1.1183038198,
0.5904856641,
-0.0707665248,
0.1359678165,
0.0625544568,
0.0824897994,
-0.413990209,
-1.1798098814,
-0.0722920103,
-0.0981282006,
-0.2706537704,
0.201335597,
0.5764504792,
0.3015775315,
-0.9295224856],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006586611],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4377863217,
0.2469610442,
1.0936558205,
3.1589104585,
-0.1186783018,
1.2802798832,
0.5188227143,
0.3837459186,
-1.7080604528,
1.3283024551,
0.4955060785,
-0.3818904233,
-0.3958367389,
0.3041129392,
0.336089687,
0.5116589121,
-0.2186747073,
1.0155479936,
1.7311937144,
1.2827769209,
0.0617936856,
-0.4968586459,
1.2793041034,
1.0907748876,
-1.1940211581,
0.0688293493,
0.8110533982,
0.8250617512,
1.2974832538],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003835261],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5555195582,
-0.0398536255,
0.7529264604,
0.91846592,
-0.7459395695,
-0.3183355011,
-0.4018772182,
0.0544814408,
0.4873723142,
0.0105423721,
-0.5249296166,
-0.1430121447,
-0.4335522622,
0.1041318028,
1.6116708855,
0.7879121027,
-0.7586226398,
0.5081558561,
-0.8855244795,
-0.101523405,
0.1640457713,
0.3518148689,
-0.0447738662,
0.6111372961,
0.5892919876,
-0.7503424591,
0.1188105677,
0.1552242763,
0.4245751795],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00040608644],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0169006217,
-0.7485024668,
-0.2571316092,
-0.5623079951,
-0.984585995,
-0.5306013181,
-0.8197911073,
-0.0972138452,
0.1033845893,
0.657217136,
-0.7275526478,
-0.5605613179,
0.2811072857,
-0.4525334168,
0.6916471025,
1.503292417,
0.020372024,
-1.1715742507,
0.2619318203,
0.1333691953,
0.6025827724,
1.6197270652,
0.1451325045,
-0.0822584089,
-0.4366260516,
-0.1346803287,
0.0119828405,
-0.0994489313,
0.6833816176],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00040709972],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.4608682945,
1.8451334819,
-0.6139510004,
0.0420812751,
-1.3520433528,
-1.0134618233,
-0.9420417181,
1.8006145018,
-0.3099119377,
-0.3223451715,
-0.9806361036,
0.2449562205,
-0.5323461577,
1.0907833592,
0.9428885786,
1.0680128404,
0.9903117656,
0.141231879,
-0.2890343783,
0.0213798728,
-0.2570793184,
-1.2950865741,
0.4942566339,
0.4777824218,
0.2471287962,
0.2145807154,
0.0962599089,
0.0483558026,
-0.3389190959],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020489097],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6414000525,
-0.0019640084,
-0.7247542792,
0.179368633,
1.628131864,
2.7803918691,
-0.3527061561,
0.713584688,
0.1388089761,
-0.0068138477,
-0.5148709848,
0.2290844504,
-0.2235185359,
0.2010775109,
-0.1767248538,
-0.1214039866,
-0.5756100685,
-0.0735508634,
0.4537091488,
-0.0654351737,
-0.2595005531,
-0.6813455783,
-0.1990217589,
1.6805989853,
1.7182195008,
-0.6727885813,
0.0594077307,
0.0460072317,
-1.0173187446],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006171465],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3629384671,
0.7814734445,
0.4791695379,
0.8151711058,
0.2926175257,
0.3819949669,
0.2524252967,
0.4490554635,
-0.5143511415,
-0.3108162909,
-1.3033229806,
0.5587259053,
1.0509731433,
0.1002134901,
0.1371467305,
-1.0145598807,
0.5016773583,
-0.5571891563,
1.2742151025,
0.198625873,
-0.0369697712,
0.2321704735,
-0.3371305996,
-1.2288352745,
0.1608188004,
-0.3569480744,
0.7489232965,
0.3937066368,
-0.0909285429],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012582242],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.6161108708,
-0.4450047662,
-0.2268171532,
-0.776618507,
-0.1413522205,
1.2498974692,
0.9017696085,
0.1707393808,
-1.1957609777,
0.4614135264,
1.0144711962,
0.585181567,
0.7396717971,
0.214051329,
0.8057473658,
-2.6795646628,
0.5317822797,
0.7558192144,
-1.2431265006,
-2.3803469707,
-0.4115488752,
1.4334362049,
0.1523424428,
-2.2273974059,
1.7395437147,
0.4735834674,
-1.6581161975,
-2.7335869477,
1.2084079443],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044965744],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1232009882,
-0.1703812976,
-1.1718395412,
-2.8492376781,
0.3695207726,
0.3441314231,
-0.3762180586,
1.1483413641,
-0.7292269474,
-1.5027145811,
0.4229604091,
1.429487385,
0.5781838018,
1.5175115344,
0.7264315108,
-3.3305759926,
1.0574257318,
0.9812169029,
-0.3512201456,
-1.1658505833,
0.0725662387,
0.4465507903,
-0.4439437021,
-1.5404420113,
0.8002288664,
-1.3272968611,
-0.8481363315,
-1.0249825181,
-0.1231026233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005507469],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1781059944,
0.7558509382,
0.9057191486,
0.1457059611,
0.237075733,
-0.3383073265,
0.4673812611,
-0.0205631,
0.7411703715,
-0.8200215357,
0.991786288,
-2.3324677797,
2.0319616773,
1.0046382138,
0.4042068948,
0.0460941429,
1.1413000502,
-0.3950250889,
-0.8150696225,
0.0743728875,
-0.531176261,
-1.0434226316,
0.0484301736,
-0.0604311103,
-0.4639006417,
0.1282128557,
0.5730304593,
0.2906058675,
-0.9788406928],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00081789494],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6171949103,
-0.331821004,
0.4905297273,
-0.6517599778,
-0.8389064757,
-0.253799024,
-0.6338776114,
0.1937643082,
1.6250626226,
-0.7572976697,
0.6869143343,
0.4558180513,
-1.6875172439,
0.3628157106,
0.8375906585,
-0.0909149689,
-0.4756248104,
1.1883698463,
1.2181755023,
-0.2711668773,
-0.002237344,
0.1701306147,
-0.1090633181,
-0.0376663862,
0.8856154964,
-1.3999959273,
0.1870165953,
0.0677634421,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015179515],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0263500096,
-0.1780910502,
0.6341967598,
-1.9898595453,
0.1387286299,
-0.2822429703,
0.5525893074,
-0.5329410188,
-2.3688950102,
1.3495653703,
0.6085185305,
-0.4050261645,
1.1886588951,
-0.6799529184,
-1.1276330218,
-0.2881352723,
-0.507518421,
0.1904236782,
0.1709182242,
-0.2502132843,
-0.6907755653,
-1.1420849935,
-0.1909425136,
-0.9697406321,
-0.8586555507,
-1.5157126292,
-0.7391898532,
-1.0259988479,
0.2986523063],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017982721],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0199170495,
-0.0290606498,
-0.746004599,
0.128159489,
0.1810897996,
-0.4058732671,
0.1217944609,
-0.1615303029,
0.1068726239,
0.1850412634,
0.8334211189,
1.5922135641,
1.177229643,
0.242032034,
-0.7859633654,
0.1008604777,
-0.78041661,
-0.5393655604,
0.6291288276,
-0.1752910315,
-0.3394332648,
-0.7744036163,
0.4799207588,
-0.7381503505,
-0.4735467431,
0.4223810607,
-0.1622649687,
-0.2178326609,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005686879],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0067807323,
0.7750085048,
-1.1222943337,
-0.3617734056,
0.8617615963,
-0.7443283552,
1.0403384098,
0.0753644184,
-0.9829928095,
-0.8898438283,
1.0112810233,
1.1316595395,
0.8379321917,
-0.4324322929,
-1.7411848105,
0.0473377098,
0.5793565221,
0.3868750075,
-0.058458756,
-0.1593630009,
0.3920767197,
1.0622574355,
-0.0177883515,
1.2700172204,
-0.6558592295,
0.9985933646,
-0.24016202,
0.1226546391,
0.3997183907],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0017668009],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0583345602,
-0.8307862223,
-0.2437686357,
-0.7892795379,
-0.8365499695,
0.255291129,
-1.2370502825,
0.2226638655,
0.3465501156,
0.7942159992,
-0.2611809619,
-0.7239848325,
-0.7750653195,
-0.3235973645,
-0.0603036261,
2.294308768,
-0.6495464886,
-0.0249011375,
1.3239145781,
-0.0048071285,
0.2874386928,
0.7216358309,
0.2227653758,
-1.8852743241,
-0.7322725918,
-0.4287228218,
0.0447522116,
-0.161158627,
0.2992221906],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026583672],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7216556022,
0.745939513,
0.5035451603,
-0.6271490488,
0.1916739772,
0.1827309017,
0.398485702,
-0.004027722,
0.8621011979,
0.2807125901,
0.9689617532,
-0.0842262601,
-0.8520071742,
-1.7508532765,
-0.4126979795,
0.6977026449,
0.0829235935,
1.3247027448,
-0.4182270652,
0.3377915487,
0.1620738428,
0.9712402779,
-0.4224180816,
1.0635328028,
-0.1526524187,
1.0670381185,
-0.3805278277,
0.5907541958,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008222163],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0697127991,
0.7418069464,
0.9946602303,
2.0430102749,
0.0156298498,
-0.1735759167,
0.4800470047,
-0.0101746508,
-1.2270404176,
0.6887694617,
-0.7858885428,
-1.1678346302,
-1.0963398377,
0.588367432,
1.3966405246,
-0.0969265475,
0.0742225739,
0.471284684,
0.8708599105,
0.0921372459,
0.3352092197,
0.9041963624,
-0.2342521346,
0.6429349628,
-0.7316092698,
0.6353366607,
0.3623512907,
0.5180577815,
-0.0044759217],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00042295456],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2400449837,
-0.140003019,
1.0343611474,
-0.1161017485,
-0.5390567256,
1.7205988058,
1.3526178363,
-0.2953428232,
-0.5041968626,
0.6519358646,
0.2889815707,
-0.5678099071,
-1.1207475959,
-0.6640794903,
0.8119930191,
-3.8337187667,
1.4102453631,
-1.2005955376,
-2.7838909742,
-0.8952335392,
-0.7791749893,
-0.35136209,
0.1064895776,
-1.168592134,
-0.7714424759,
-0.9997491723,
-1.0642734189,
-2.3182732157,
1.3368962721],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002552867],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6307919698,
0.0512542677,
-0.1079340044,
-0.0751820132,
-0.0571884435,
-0.6485550267,
0.2540185535,
-0.1386403925,
-0.3062397572,
0.0497675375,
1.1731174718,
0.6592288271,
-0.3189118102,
0.732277829,
0.1481318449,
0.369960371,
-0.5879141634,
-0.4029019954,
0.8535904125,
-0.046442392,
-0.4769029292,
-1.5796015186,
0.1561731639,
0.0414683664,
0.4001600655,
1.4571372832,
-0.2906749741,
-0.0248653066,
0.151076552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004892349],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5114476715,
1.1179821163,
-0.3014569934,
-0.3036832095,
-0.0705807838,
-0.5431146574,
-0.1454351001,
-1.7468048811,
-0.3150221475,
-0.1185886147,
1.1762112311,
1.3488179784,
0.1435065052,
1.0183235969,
-0.4123106917,
-0.3956277365,
-0.1379171666,
0.5210701845,
-0.0112990887,
-0.8024354799,
3.8688080937,
1.1163658944,
0.5725287063,
0.8166671073,
-1.5510394087,
-0.5138622153,
1.1832997992,
0.8961993656,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077193975],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9885419024,
-0.0623491353,
-0.4641316609,
0.2365609669,
-0.3374101293,
-0.691197733,
-0.304940128,
-0.0902598566,
1.0600918098,
-0.6428088838,
-0.2486756797,
0.5750623871,
0.5533752812,
-1.4097268247,
0.8632956531,
0.5807362079,
0.5456762778,
0.1511403487,
-0.2853270638,
-0.1850453467,
-0.3427096718,
-0.7460214015,
0.6445442268,
-0.2273782822,
-0.945685687,
-0.5828466213,
0.068646676,
-0.0145714752,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010519326],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.601557823,
0.1122320624,
0.0996272631,
0.3209098937,
-0.0286258578,
-0.069719441,
-0.1191863743,
0.131901498,
-0.0866408264,
-0.1097467001,
1.3885199482,
0.4333794489,
-0.6848987849,
0.0978347909,
0.8281959926,
0.5739221232,
-0.0505676686,
-0.0290966383,
-0.1717053001,
-0.1927119731,
-0.3330525254,
-1.0374442896,
0.2126318841,
-0.6321405491,
0.2531510062,
0.268480813,
-0.0447324335,
0.047532683,
-1.4765548991],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010221899],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0652661064,
1.1523637894,
-0.6460953038,
-0.8643058073,
0.3476992064,
-0.0141479288,
0.6049813105,
-0.2373051362,
0.8296820705,
1.4191212694,
-0.0420485784,
0.4041895452,
-0.1025286146,
-0.1687826952,
-0.9074896435,
0.2496591991,
-1.1464038079,
-0.0934382284,
0.6842670192,
-0.3625080223,
-0.1648713639,
-0.9226136922,
0.183279767,
-1.8850397047,
-0.9375179042,
-0.0141656701,
-4.5300541747,
-0.1585567798,
0.1698865149],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [9.089708e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5367170811,
-0.0218260171,
0.4382229114,
0.8348546761,
-0.2660169848,
0.1993309268,
-0.1799434899,
0.1973710446,
0.2599427244,
-0.0290296143,
1.1026852265,
1.0055706294,
-0.6825216057,
0.2816068734,
-0.6101844167,
-0.386257312,
-0.0155726273,
-0.496073889,
-0.028385631,
-0.209995768,
-0.2531610019,
-0.6076752637,
0.0868287174,
-0.0382328153,
0.7109106609,
-1.0999788976,
0.1049352603,
0.0644516751,
0.2223974827],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008391738],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.2803408258,
1.7590252454,
-1.2722589768,
-0.2577260452,
-0.5063606974,
0.3316651328,
-1.9695416287,
-3.2299196371,
-0.7754801918,
-2.2108620044,
-0.1553041034,
0.5820637669,
-1.8785317272,
0.3235026291,
-1.7881088469,
1.1594592972,
1.9007423131,
1.4308811993,
-0.2996234967,
1.1009089459,
-3.1959918426,
1.6215569259,
0.5082886798,
-0.9188412477,
-0.6089658753,
1.1157137441,
-0.8020619448,
0.377272111,
0.3270506659],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022780895],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5816325426,
-0.0650945402,
0.2788517164,
0.0155487959,
-0.3711368918,
-0.328015735,
-0.143179084,
0.0630384833,
0.0033643776,
-0.0168451195,
1.7333026272,
0.7527211842,
-0.5931656204,
0.6205236228,
0.7746224033,
0.1208510551,
-0.22092356,
-0.4478606945,
-0.1874805983,
-0.1417147612,
-0.0065225896,
-0.0990881893,
0.1290840198,
0.4210436755,
0.2667646035,
1.505045616,
-0.1511974598,
0.0020908611,
0.019307669],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000746876],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5480326597,
0.2445830773,
-0.0593466167,
1.6307327505,
0.3197422511,
0.1070110278,
0.2754429285,
0.092968856,
-0.9660246314,
0.7953176014,
0.8107168799,
-0.3109504414,
-1.6944627727,
1.0825257278,
-0.0500064513,
0.451998044,
-0.5355052116,
-0.1495602286,
-1.0384884459,
-0.255543376,
0.0663165481,
-0.0870525196,
-0.2387012094,
-0.576405628,
1.1572062127,
0.2102951023,
-0.1164942544,
0.0002379416,
0.4133786554],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007697642],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0389601412,
-0.0153463177,
-1.2959229042,
0.1377209833,
0.4774729614,
-0.6011460522,
0.4093183217,
-0.2032245255,
-0.0136478069,
0.3147503494,
0.7833401505,
0.5140788171,
-0.9795627292,
0.953277822,
-0.9627175783,
-0.5218089714,
-0.2819927478,
-0.2832642837,
0.4357248557,
-0.3445185776,
0.1961278152,
0.7077930594,
0.033060766,
1.2745538803,
0.6240067983,
1.3744832213,
-0.3052896177,
-0.2745653088,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0019667447],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0584924485,
0.6648675279,
-0.1148209453,
-0.3063584364,
0.7008759045,
-0.4092209368,
0.6240667416,
-0.0179716419,
0.9129795053,
-0.8986492779,
1.9573723725,
-2.1091577518,
1.1088958788,
0.7303994597,
-1.8082504534,
0.5320285725,
1.0470940473,
0.6862881772,
-0.2353944597,
-0.0598259916,
-0.6050216053,
-1.2971973637,
0.209719054,
0.9744938039,
-0.9589848588,
0.1023801386,
0.4557782683,
0.2247394758,
-0.9788406928],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012534559],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0465510502,
1.1404826163,
-1.2468696745,
-1.3987946912,
2.1944322593,
2.5698695822,
0.4354061342,
0.4207404247,
0.6705801353,
0.8013871934,
0.2376243279,
-0.2368921947,
-0.4222159387,
-1.2652587841,
0.2931245363,
-0.0354946511,
0.3230202711,
-0.5194876869,
-0.3397193876,
0.0416722046,
-0.2986878894,
-1.159096564,
0.3860274448,
0.979348463,
-1.0172143293,
0.0817051881,
-2.0600373151,
1.0541920239,
-0.0322136909],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000101059675],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4489928709,
0.8234972898,
0.6967785811,
-0.0539284806,
0.2232938647,
-0.4118839873,
0.5557372273,
0.3061275074,
-0.7678926346,
-0.8698201574,
-0.4417552478,
0.5413314717,
0.656941412,
0.4564166723,
0.3189589117,
0.0440975193,
-0.3702822825,
-0.660015081,
-1.7684236956,
-0.3598119992,
0.2856785084,
0.6730510607,
-0.3248612047,
0.1460192225,
0.277604713,
-1.0371177174,
-0.0157446577,
0.184118609,
-0.5685711202],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00052058697],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3530048109,
0.0469625015,
-0.414566089,
-1.0904259872,
0.5716779896,
0.6472724934,
0.0294493093,
0.5883166017,
-1.1801138515,
0.0156095309,
0.2520085879,
0.0538878198,
-0.9908723815,
0.9621798277,
-0.3717119125,
-2.9210139223,
0.6781584076,
0.9404989861,
-2.0781254549,
-1.1086568662,
0.4176686327,
1.8861620123,
-0.3578676523,
-2.5093866101,
-0.7779031298,
0.1767295558,
-0.002823377,
0.3369885302,
0.1055430079],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020414591],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9901568117,
-0.2545093394,
-0.1502206849,
0.3630984827,
-0.5815726946,
-0.4328830731,
-0.4711347211,
-0.0503165068,
1.2934642152,
-0.1419881499,
-0.9852511399,
0.5083467081,
0.226556184,
-0.2184038268,
0.5029740032,
0.0891145721,
-0.5915152076,
0.2594784312,
-0.2640343272,
-0.2794080843,
0.2627447755,
1.1175991846,
0.2015217668,
-0.0030733808,
-0.1550417221,
-0.4369156434,
0.0980254667,
-0.105544214,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00060018897],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4293269302,
0.6809178621,
1.1703969063,
1.0456780528,
-0.4360147471,
0.1607789865,
-0.1483953805,
0.5584302745,
-0.3188490475,
-0.2467020849,
0.7620001726,
1.6914672179,
0.8341884608,
-0.1589604191,
-1.6588799326,
-0.9265502632,
0.5328286166,
0.2395898695,
1.7472227822,
0.1764062941,
0.09310603,
0.728663788,
-0.3062964615,
0.9850624264,
0.0510868094,
-0.4413065779,
0.7689252223,
0.3900427098,
-1.2865808128],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009807944],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6722824846,
0.2330442973,
0.588991117,
-0.785887739,
-0.0896403809,
-1.006628447,
0.0927223555,
0.3651856652,
-0.3108880731,
-0.4719925596,
1.2141164048,
0.7225242521,
-0.3684673667,
0.5862942409,
-0.3239799496,
0.8638778487,
-0.730683126,
0.1008398151,
-0.5565494062,
-0.3004801697,
0.0050992469,
0.0022357891,
0.9324590496,
0.9181825261,
-0.2477751214,
1.5489697192,
-0.0088960297,
-0.1404247761,
-1.5130528944],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007671416],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5069520935,
-0.5286047277,
1.2652037586,
-1.6006631953,
-0.7129879439,
0.2624216869,
0.7915221645,
-0.0225151298,
1.4167262918,
-1.7109368275,
0.4289053506,
1.4099004826,
0.1955366033,
-0.9350524691,
-1.8165042521,
-0.7784425513,
-0.3704870504,
0.6122604836,
1.0885513358,
0.7238763801,
0.2896439968,
0.9751796734,
0.1954259576,
0.12909864,
0.8880484505,
-0.0530688493,
-0.3447974349,
-0.3672470808,
1.2729246769],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003812015],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7659063354,
0.9358311402,
0.423395323,
-0.5333307644,
0.0126944697,
-0.6804544517,
0.3321344254,
0.308660794,
0.0348825407,
-0.0154274604,
-1.0721275503,
-0.0549142632,
0.0164473904,
0.2529852301,
0.3770412212,
0.8334048247,
-0.8778306243,
-0.293090197,
-0.876452619,
0.1023892166,
-0.3426417959,
-1.0086262083,
-0.1218758678,
-0.3147856152,
-0.4478046839,
-0.1769653733,
0.7497483287,
0.6549148928,
-0.7247737617],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024715066],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0334927314,
1.3003467692,
-0.7184638621,
-0.3799686732,
0.5686833489,
-0.1301998124,
-0.1822641595,
-2.6977081367,
0.0342577712,
0.0390377458,
1.0163967791,
1.1218921498,
0.892972572,
-0.7873916113,
-0.08408702,
0.2285262099,
0.408052859,
1.3598505088,
0.2732639643,
-1.2123687503,
4.6128491267,
0.3501132673,
0.7163867998,
-0.8151027003,
-0.5354590642,
-0.3536889901,
-0.2178535263,
-0.0245512586,
-0.895494484],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000382334],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6172924428,
-0.9839921458,
-0.7481673825,
0.2523011457,
0.2194530181,
1.5232039134,
-0.3190742709,
0.3727003577,
1.9368413829,
-0.4837771175,
1.6282249374,
-1.5111096344,
1.2718294291,
1.7353036192,
-0.7309804517,
-0.3889795098,
0.9433890647,
-1.2140383112,
-0.6975172626,
0.5183469723,
-0.409517496,
-1.6994983326,
0.3840261951,
-1.7186305801,
-1.7629295021,
0.3145943554,
-0.2430735351,
-0.0358607414,
1.451905415],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003787279],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6432866099,
0.3405662791,
-0.4431133906,
0.6572396673,
0.4530707551,
-0.1567655747,
0.1241707286,
0.0074962619,
-0.1864272497,
-0.3304612192,
0.6124674943,
-0.0077147042,
-0.3878591843,
-0.8405999436,
0.5333230357,
1.1832675145,
0.033127877,
1.6763742035,
0.1848611018,
-0.1140010525,
-0.114959617,
-0.3214845493,
-0.4572705432,
-1.6367892814,
1.537178265,
-0.5580996931,
0.0522836399,
0.0985265052,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007638931],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6441553773,
0.8013160451,
0.3773384221,
-0.6327980049,
-0.7068571182,
-0.5800794031,
-0.2914426971,
0.6967854801,
0.4969029541,
-0.8107550571,
-1.272630639,
0.0861059323,
-0.598078703,
0.4613561282,
0.3412595198,
0.519290997,
-0.257282325,
-0.0031214445,
-0.222053412,
-0.4051876286,
-0.1135420977,
-0.7444100192,
0.1551743068,
-0.0226679405,
-0.3484467294,
-0.5978339515,
-0.9614708163,
-0.1563428839,
-0.4549772399],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002939105],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6241080103,
-0.5242442326,
0.1948844047,
-1.4789744165,
-0.7913602694,
-0.4591682799,
-0.4778270234,
-0.0289843231,
2.2926962176,
-1.444341199,
-1.0837556265,
0.5293759507,
-0.1185661457,
-0.1341832226,
1.9224654747,
-0.6816131358,
-0.3291565485,
0.8851419195,
1.6298306481,
0.0248375011,
0.1648520377,
0.7418996027,
-0.5184451082,
-0.6899093124,
1.4646003253,
-1.2228232365,
0.2203505337,
0.1096095351,
0.5440952464],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00088718534],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.772457362,
0.4388962514,
0.5044514601,
0.1507945007,
-0.5912687534,
-0.296762834,
1.5311523047,
-0.1951794568,
-0.4762431354,
-0.5506301186,
-0.6090730956,
-0.146193005,
-0.0873209241,
0.2971256436,
0.4408015572,
0.3793944712,
-0.7221512297,
-0.0297229833,
-1.0536953272,
-0.5169084291,
0.0614754476,
0.3552314674,
-0.6928368349,
0.699848778,
0.506925995,
-1.0670326345,
-0.5768914137,
-1.1009232949,
1.3312942722],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004890561],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0275646545,
0.2915813482,
-1.4551156669,
0.6739969313,
0.6750133173,
-0.6027850972,
0.1336316729,
-0.2833149295,
1.6817826184,
-1.2873800796,
0.4951259872,
-2.3054261711,
2.2927806444,
-1.419615987,
-1.2764476057,
0.4249967879,
2.9380562643,
1.1212374498,
-0.4421614599,
-0.1212506755,
-0.2539347561,
0.0523796478,
-0.0730122504,
0.4853314797,
0.5208095406,
1.3782439374,
-0.1608507581,
-0.0281082591,
-0.2212335278],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015825629],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5453831521,
0.2591844271,
0.558302407,
1.6479928866,
-0.10348705,
0.116001911,
-0.053645759,
0.0741780728,
-0.8619399676,
0.7034729795,
1.0145823838,
0.905925713,
0.7950592512,
0.2294382908,
-0.0783219483,
1.3154212973,
-1.2719253551,
0.2458377749,
-0.7529373388,
-0.0056671399,
-0.2100104913,
-0.838869567,
0.1189792894,
-0.0659212433,
0.396437124,
-0.5394647589,
-0.0055794931,
0.0971128125,
0.35684316],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00057569146],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9337637888,
-0.095976368,
0.0663172686,
1.2804493527,
-0.6537874879,
-0.6048353256,
-0.2002840325,
-0.0295854081,
1.0476097693,
0.0026765381,
-0.5155322,
0.7925319458,
-0.8251388812,
-0.1142923007,
-1.3101633368,
-0.8160070395,
0.4068413495,
-1.4119412687,
-0.2367774392,
-0.4736872492,
-0.6453477118,
-1.4888563516,
0.9797495352,
1.2867295319,
-0.8829689832,
-2.3845431396,
0.1323100218,
-0.0623682985,
-0.5447693226],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003350973],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0946998874,
0.3431921322,
0.6161303576,
-0.4646169968,
0.1564607165,
-0.4700410928,
0.5463760605,
0.0543448426,
-0.3121917418,
-0.3431946788,
0.6956035022,
0.2129474863,
-0.8444411421,
0.5201799445,
-0.4112086372,
0.9382408777,
-1.2014652939,
0.242315028,
-0.3640888495,
-0.2056262295,
-0.1753306864,
-0.7910097433,
0.5668096043,
-0.0847886456,
-2.6727483543,
-0.5163291541,
0.3819254382,
0.7112576875,
0.1833625131],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026857853],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0242403449,
0.8711633817,
-0.1780074611,
0.6645067822,
0.86980077,
-0.6593715437,
1.4385200246,
-0.5426452712,
0.2782873341,
0.3000751908,
1.8179283109,
-2.288739877,
1.057985134,
2.3288973979,
-1.23965985,
-1.000908334,
0.3352889175,
0.7654530705,
0.7389667354,
0.0447294354,
0.1998355944,
1.3839247607,
-0.4014089475,
0.0417213204,
-0.841103398,
-1.008467612,
0.3844626686,
0.1460913237,
0.2993645599],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010086894],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0506130026,
0.5750971132,
0.1093327341,
0.2641597956,
0.3115971349,
-0.285788313,
0.6468866038,
-0.1469796067,
0.2357001166,
0.0608476078,
-0.7931874123,
0.2536899584,
0.3167889595,
-0.2079878022,
-0.3923606129,
-0.3152318236,
-0.6740133314,
0.0889779012,
-1.299323462,
-0.3383204687,
0.6574595003,
2.3774410612,
-0.1375739878,
1.8708579108,
-0.9704072125,
-1.2410685986,
-1.2992510124,
-1.278093784,
0.0053796654],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00048220158],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4305468951,
0.3868432662,
0.6445372196,
0.944798197,
0.1498472384,
0.353574204,
1.5414585898,
-0.0893169844,
-1.250945765,
-0.18220887,
-1.5702544437,
-0.5522256703,
0.5950708119,
0.0270478526,
-0.177294021,
1.2508591493,
-1.4584261037,
0.3290929415,
-1.6399437088,
0.5800651264,
0.3438701345,
0.2708454125,
0.4504566252,
-1.0259870596,
0.4341116265,
-0.1531428518,
-0.0144455599,
0.452879261,
1.3049916788],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002438128],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4493319257,
-0.3781296707,
-0.2332976941,
0.8208066418,
0.6290688799,
-0.946325655,
-0.1698401516,
0.3099023855,
0.0475026453,
-0.2965821587,
-1.3994873303,
0.3316140725,
0.175133001,
0.5309597471,
-0.1918669887,
-0.0690477259,
-0.4145132145,
0.2093347461,
-0.4280897062,
0.2000547149,
0.6750815014,
1.2889952277,
0.7479822875,
-0.1748193019,
-3.7103358898,
-1.9509387673,
0.7747172958,
0.3437587248,
0.5364591013],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [6.4343214e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3782120234,
0.6218327162,
1.4316509195,
-1.035205295,
2.1203353631,
-0.2031735827,
3.8372079159,
-4.1530321361,
3.4855854874,
5.1441225005,
1.043741824,
-1.2367821294,
0.5395835272,
-4.4461890223,
1.3149105866,
-2.5732915303,
-2.851737832,
-0.7467197177,
0.1592847093,
1.4891116473,
-0.3532296378,
2.5533370131,
-1.4830897291,
-0.059139082,
-2.1723422643,
-2.0003595074,
-13.8617574612,
-13.345293215,
0.0495849866],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.0682812e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9877528952,
-0.2631021722,
0.1442128255,
0.3801522186,
-0.6989231223,
-0.2753942195,
-0.7670641554,
-0.0481075233,
2.3575543065,
-0.3452772077,
-0.0066834758,
-2.0658510736,
2.1126092483,
1.083033534,
0.0053825878,
0.7374339859,
0.0401371556,
0.3935119662,
-0.5769541618,
-0.2453819738,
-0.166451263,
0.0652113711,
0.5376781645,
-0.2393152036,
-1.1307740881,
0.9258318983,
-0.0993192436,
-0.1285652382,
-0.0921763942],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034719706],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.0387252742,
1.1292197529,
-0.9310569718,
-2.8381637614,
-0.1860649645,
-0.9618562999,
0.0265628681,
1.069220534,
0.4030717273,
-2.7073275563,
-1.3788089644,
1.7430179458,
1.4180762537,
1.2636127048,
0.0617275503,
-0.2423319131,
-0.1944822425,
-0.3491955253,
0.041594098,
-0.8437477324,
0.0619586906,
-0.636888995,
-0.0764439066,
0.4331249433,
0.8440674178,
-2.741210169,
-1.9153054672,
-0.4176035704,
-0.1184712257],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022557378],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9234401193,
-0.6162288958,
-0.6654481789,
-0.6400055566,
-0.2715202388,
-0.0749956803,
-0.3329101851,
-0.0943938457,
1.2474235359,
-0.4153286112,
-1.1186808295,
0.7467373203,
1.5436265873,
-0.3291117861,
1.2638518458,
0.4892159469,
-0.9843139022,
0.3003399784,
0.3867102169,
0.3279107127,
0.3030723453,
0.7143762447,
-0.011007847,
0.2294818996,
-0.4330959045,
1.4379886809,
-0.1562602843,
-0.0712394801,
1.0109629294],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026273727],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0836627678,
0.3689875982,
0.537718148,
0.3561676373,
0.6891754007,
0.7268387476,
0.5936458347,
0.0351718133,
0.1588538891,
-0.1493583137,
0.0302112526,
1.2960748675,
0.6869149039,
-0.5397141459,
-2.3811631909,
-0.5380108262,
-0.6321871927,
-0.2208836031,
1.1334302733,
-0.0094866019,
-0.5051429128,
-0.8778972462,
0.460690965,
0.2671087793,
-2.6506291555,
-2.6549190487,
0.4185304834,
0.1988021093,
-0.0488268357],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034192204],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1531431642,
0.2625536474,
0.6079348087,
-0.8405537302,
0.3716240011,
0.2274134489,
0.4079087957,
0.1761160007,
-0.2454615072,
-0.5192170084,
0.3483618255,
0.3048134381,
0.0233364221,
0.2065617318,
0.0058118153,
1.1424193806,
-1.4383078832,
0.6795262596,
0.1501064298,
0.0574774949,
-0.0772004836,
-0.5374060124,
0.2988358948,
0.2736534877,
-1.725013813,
0.2880834502,
0.2400177754,
0.5788644726,
0.4461345205],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00028160214],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0044251379,
0.570671471,
-0.1713075751,
-0.1086199997,
0.7792488723,
-0.9053834299,
1.3752075711,
-0.4167300077,
-0.8106989478,
-0.4296635874,
-0.9151757145,
0.3051599019,
0.7846475318,
0.3303184561,
-0.6049737154,
-0.9441482989,
-0.1278503225,
-0.687902405,
0.5649420348,
0.0620908533,
0.2512248234,
0.8613442997,
-0.5993387235,
-0.0280535838,
1.0574929687,
1.2526977487,
-0.141761876,
0.004250439,
0.3640210192],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012967885],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6161522103,
-0.4074047131,
0.0704283071,
-0.3332799115,
-0.7017206911,
-0.3295877574,
-0.584434579,
0.1559688143,
-0.5524666324,
0.2670823615,
1.5796743742,
-0.8457831628,
-2.1564189395,
-0.7125138603,
-0.2017154735,
1.1732374379,
1.7374296738,
-1.1850068107,
0.6514919188,
-0.0043683508,
0.0101715266,
-0.1942154817,
0.0568406597,
0.1504303254,
0.5147265517,
-0.6148012713,
0.032817129,
0.0974434465,
0.4195678567],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011523962],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5218803581,
-0.2434452029,
0.5043273645,
-0.0308899109,
-0.439210645,
0.337066199,
-0.4927685373,
0.2998101053,
0.2639680758,
-0.1052350834,
1.7768415332,
0.8240880772,
-0.434517045,
0.408996384,
1.3666793224,
0.2106229361,
-0.1419891197,
-0.6581616963,
-0.7110324494,
-0.0751677077,
0.0334298304,
-0.0344975513,
0.228259151,
-0.4525656139,
-0.2648473946,
1.4343777673,
-0.0586178398,
0.0377641525,
0.4762706276],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041779876],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3526918188,
0.1717467334,
1.7371467221,
-0.8586632894,
-0.0966030582,
0.0906322811,
0.1709905849,
0.0711804358,
0.2374423149,
-0.6922707408,
0.6742025365,
0.7568261014,
0.1614396659,
-0.6904827639,
-1.0653471483,
0.5555687266,
-0.8779617025,
0.3054850858,
0.1959398309,
0.0829156355,
-0.1178423985,
-0.0261753242,
-0.5850339987,
0.1405061962,
0.2390783604,
1.8153065246,
-0.453171344,
-0.5501389216,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010204315],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.031235051,
-0.1282074518,
-1.0110367011,
-0.0059050912,
0.2173916304,
-0.3186701235,
-0.0286123885,
-0.0261698899,
0.6559531611,
0.1091017071,
0.3838517813,
0.0429912311,
-1.511292232,
0.9827451018,
0.4225324907,
0.1112420994,
-0.9492203679,
1.0968993452,
0.3076006391,
-0.3968541172,
0.3791904838,
1.1407425408,
-0.0301287215,
0.547084386,
0.6137318091,
-0.9180187966,
-0.0311125908,
-0.1915166383,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010258853],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6410700135,
0.019207701,
0.1203714329,
0.4577840422,
-0.1031181107,
-0.1572708732,
-0.0048657929,
-0.0701475716,
0.4361344443,
-0.1698445087,
-1.3447375873,
0.2480678575,
0.2219985573,
-0.1348690348,
-0.185668412,
-0.0538217579,
-0.3124801035,
-0.5163097644,
0.6599619337,
-0.0875536324,
-0.3887990186,
-0.9015063259,
-0.1614900153,
-0.6915928374,
1.0902783845,
0.6596555297,
-0.064498073,
0.0296514297,
-0.0990960068],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011347532],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1347410973,
0.1720976589,
0.6813405074,
0.2306431504,
-0.4279588682,
0.9100036418,
-1.1585899038,
-1.9981655691,
-1.6250983517,
0.0720324999,
0.5244988469,
0.4903580921,
-0.2358551244,
0.6976267653,
5.97099e-05,
-1.5509834616,
0.0067937448,
2.3308049585,
-0.4001400772,
0.5363567234,
-2.1756708364,
-0.2883390871,
-0.4930271836,
1.0616402749,
2.6411266829,
-0.6781660467,
0.1516288271,
0.6207967405,
0.6656157739],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038436055],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9463021796,
0.1556828237,
-0.0941386565,
2.9007111425,
-0.0920219182,
0.1267250742,
-0.187299048,
0.0661458799,
-0.0956052358,
1.1799376164,
-1.811993332,
-0.55337269,
-1.1969000506,
-0.1126118075,
-2.0307566078,
0.4635076287,
-0.3633316991,
-0.3974130925,
-1.5693018331,
-0.5189778374,
0.0971089997,
0.6091859,
0.1748314853,
0.0321656162,
0.1375243759,
0.2801545847,
-0.0278741042,
-0.145633211,
-4.9137397424],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00096189976],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2960706623,
-1.1602701729,
-0.4699799407,
-0.2561627016,
-0.5746249738,
-0.3081872932,
0.3614602001,
-0.3654144741,
-0.8857340352,
0.2933362635,
-0.9563118768,
-0.0058386645,
1.6480085055,
-0.4239367932,
-0.3023274346,
0.8493208132,
0.2885505642,
-1.7191605851,
1.2066225433,
1.4732461111,
0.5458819477,
0.2658742949,
-1.1975729354,
-0.5806258495,
1.489028435,
-0.1395896773,
-0.22400565,
0.2627313939,
1.6045519559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035199523],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.7867418422,
1.8376951866,
0.0896897093,
-1.3869297513,
-0.811981067,
-0.4802228487,
-0.1399293162,
0.8452430038,
1.4752059349,
2.1862591364,
1.5041854976,
0.6613994561,
-0.8509995857,
-0.0270678178,
0.2607582321,
0.4195698231,
-0.4704012367,
-0.4516052394,
-1.4120404783,
1.5043062357,
-0.4394058824,
-0.2385196961,
0.2768249633,
0.310666264,
0.0244087977,
1.4212697819,
1.0764563313,
-0.2701215158,
-1.0655863315],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00028297305],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7319297667,
-0.8713971761,
0.5823826773,
-1.013532195,
-1.2579969127,
0.3423175832,
-1.368990938,
0.1996616413,
-1.0971237922,
1.2698789565,
0.0467827267,
-0.3516433657,
0.2859918052,
-0.7790162961,
-0.9421704091,
-0.0471045966,
0.2193533288,
1.0154261045,
0.6451349408,
-0.3982098561,
-0.3387786791,
-0.2744884116,
-0.0761089222,
-0.8708874974,
0.6168629007,
-0.3321205349,
0.1700034353,
0.0553226189,
-0.0264317147],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00024309754],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3885709845,
-1.2872671324,
0.363417964,
-1.1125682256,
-1.5750669493,
-0.4426763658,
-0.4998770747,
-0.0918886661,
0.956942765,
-0.5552089019,
-0.8215247429,
0.7073362427,
0.2914430474,
-0.5343403076,
0.1869604583,
-2.6338900959,
0.6439861262,
1.2983914789,
0.3432119432,
0.1680947276,
-0.502924361,
-1.2848216684,
-0.316685363,
0.7012870966,
0.3801956073,
-0.275880712,
0.0401896807,
0.2702878868,
1.3953037256],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00012654066],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2546867587,
-0.7083165343,
1.024720576,
-1.5789086903,
-0.75270874,
-0.7747989068,
-0.3974619878,
-0.0602360005,
-1.844648816,
0.7221809955,
-0.7741582454,
-1.0799385079,
0.6105319785,
-0.6216251702,
0.0919203021,
0.006708233,
0.0792679588,
0.5434783062,
-1.3274511125,
-0.0912266007,
0.2346102303,
0.7913622412,
0.4713648774,
0.5956151144,
-1.1486508022,
-0.7730412062,
0.3784719282,
0.6437002859,
0.7862570886],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [6.946921e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1557052396,
-1.9729633523,
-0.9170821316,
0.14286756,
-0.687244744,
0.0815476462,
0.9321352225,
-0.301721436,
-1.4061604848,
0.4522554915,
0.2311197006,
0.304299614,
0.5862310209,
0.7035269507,
0.0839645631,
-0.9620448997,
-0.7081859189,
1.8329986943,
-0.2707808562,
1.8495177828,
-0.2674594916,
-3.1217508333,
-1.2985278232,
-1.4191397027,
0.0148111286,
0.2633755407,
-0.5382860659,
0.4840188345,
1.9302571882],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00015616417],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1400294816,
-0.7481782283,
-1.1942565651,
-1.1117491967,
-0.516073336,
-0.9736817021,
-0.2754828679,
-0.3307574075,
-1.7846935379,
1.6427230526,
0.692975491,
-0.4989021843,
-0.6009660176,
0.4150572267,
-1.4972988894,
-1.2988796368,
0.7807583795,
0.0188128962,
0.2971589397,
-0.6372799293,
0.0274236394,
0.7228306713,
-0.0010208532,
0.0414479562,
0.5810603634,
0.1897186582,
-0.1362312983,
-0.2599132753,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014993548],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6124503069,
-0.0603251502,
0.2235468009,
-0.1713583303,
-0.3071025163,
-0.2691850325,
-0.1843489508,
0.0717136627,
0.0437110248,
-0.0369545805,
1.5804672626,
0.6945506541,
-0.5247640715,
0.5821996551,
0.8073709514,
0.2002344955,
-0.2767589535,
-0.440113843,
0.0083607524,
-0.1654803743,
-0.0536920458,
-0.1762127757,
0.133006366,
0.1184221565,
0.2398678617,
2.011624414,
-0.1857511063,
-0.0257796529,
-1.6016250569],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00065758824],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2647378617,
-1.5803202116,
-0.365480406,
1.4575671309,
-0.2307080029,
1.4214618606,
0.5725051781,
0.3568508337,
-0.7587628447,
0.2039539942,
1.9261973445,
0.1978395715,
-1.397048032,
1.084954146,
1.2661602838,
-0.2841587814,
0.6605288712,
-1.8959515853,
-2.7611339081,
1.7484961319,
0.8527250471,
-0.0865690804,
-1.0208379778,
-1.6153094193,
-0.6110762575,
2.059446077,
-0.451497832,
0.3821594674,
1.8677167616],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003606081],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0427403588,
0.2410141445,
-2.8505150569,
-0.2294878313,
2.6049627801,
1.897164903,
0.1914298925,
0.4577050204,
-0.1068952047,
-0.8949111937,
0.7987060529,
-0.3316603571,
-0.5329430388,
-2.2181615957,
0.4165434683,
0.2529131273,
2.413117569,
0.4987158865,
-0.5493458575,
-0.1130107367,
-0.0940566109,
-0.1179179726,
-0.0524769984,
0.877284158,
0.8002919629,
1.5191095699,
-0.1467774779,
-0.0740418371,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0023556948],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3282009489,
0.7883023325,
-0.2940259767,
-0.4379872804,
0.6878163676,
-0.5631678558,
0.7028730675,
0.0310474499,
-0.1018303902,
-0.6245784555,
-0.6169142384,
0.1227882906,
0.4345489192,
-1.0526210781,
-0.2177197051,
0.2776314639,
0.5284304691,
-0.3729689568,
-0.2604698519,
-0.0446809162,
-0.4444004466,
-1.1001773437,
0.1651826765,
0.8513240206,
-0.6024005448,
0.20013738,
-0.6919914743,
-0.5200142139,
-0.6363682287],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007058978],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1379507888,
0.2809533467,
-0.2517049883,
-0.8754463309,
2.2081537844,
-0.2309971289,
0.2621353897,
0.2312714443,
-0.0063866636,
-1.5997451372,
1.676804063,
-0.8305361387,
-2.3499992498,
-2.241362796,
0.6698322772,
0.7078437628,
2.1758909363,
0.7395634142,
-3.0794878009,
-1.2202185562,
0.1123642913,
0.6232470405,
-1.8101075454,
-2.7558094942,
1.5770613042,
-0.176179665,
-0.7136012632,
0.406632578,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014238358],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5925398302,
0.0965670399,
0.0286919801,
0.3096799871,
-0.1356477791,
-0.6932660089,
0.291409458,
-0.1336267487,
-0.3797964792,
0.1017020842,
1.4117987867,
0.7957754024,
-0.3571443943,
0.7686904003,
0.0982242747,
0.2651265362,
-0.5436319565,
-0.3849639231,
0.4850287215,
-0.0558099071,
-0.437239207,
-1.5088762172,
0.1989372453,
0.5309700061,
0.454662536,
0.2440561032,
-0.1903176537,
0.0242042356,
0.3652696992],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000769943],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0378214205,
0.5804996722,
-0.2062278575,
-0.4536527184,
0.7140133837,
-0.3767726678,
0.7106669764,
0.0498046591,
-0.3051448014,
-0.5918916259,
1.153845541,
0.6372832733,
-0.0698215434,
-0.8210112131,
-1.0010048889,
0.4778590309,
0.2468745888,
0.1960232866,
-0.073096606,
0.0548666565,
-0.3745141724,
-0.9573378116,
0.2214630999,
0.9972044022,
-0.9042383073,
0.1902084514,
0.5287529038,
0.2492933459,
-0.4365596051],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00086790323],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.6463600712,
0.3064819021,
-0.3233164408,
-0.1743545975,
-0.0706258733,
-0.1631521931,
-0.9359464904,
-1.1164428004,
1.9132694477,
1.8208282405,
0.3720366632,
0.8298218274,
-0.0960683653,
-0.3675659468,
0.1581650281,
-0.0025050656,
-0.5370602168,
1.0787550206,
1.4261083128,
-0.8921584553,
1.9372200378,
1.0236298544,
0.2568824807,
-0.4456990166,
-2.1135016669,
0.2288724524,
2.2605659763,
0.593172013,
-0.8309457674],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018492341],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5867391487,
-0.181254509,
-0.1483549456,
0.1306892284,
-0.23964862,
-0.615678434,
0.208486344,
-0.1849568048,
0.3383879447,
-0.1715086444,
-1.0436414946,
-0.3104763613,
-0.8163479903,
0.3301546497,
0.2535147002,
-0.1195968407,
-0.0821973511,
-0.543925323,
0.5755972929,
0.0606429489,
-0.1077968987,
-0.4505415434,
-0.3603870502,
-0.0782729774,
1.0640270386,
2.3014731526,
-0.2886834338,
0.0140398103,
0.779569335],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007839501],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5832116222,
0.081830468,
0.252424233,
0.9967825035,
-0.1618105624,
-0.136534605,
0.0265754963,
0.0300239646,
0.3537299054,
-0.0840064634,
-0.6427787888,
0.0957889773,
-0.9402280313,
0.2386082735,
-0.0156275112,
-0.7742502616,
0.3549620209,
-1.0225012246,
-0.4529290249,
-0.3070794608,
-0.1516225497,
-0.1897476158,
-0.0850820263,
0.1127695716,
1.2203149934,
-0.6407827957,
0.0776052333,
0.0570649563,
-0.2343554596],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009354353],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4471930384,
0.7119634639,
0.3695893809,
0.6549738721,
-0.3609659539,
-0.5715699108,
0.9107419915,
0.2484821983,
-0.7350006695,
-0.3252718019,
-0.8037908901,
-0.7084809304,
-1.4172053518,
1.1110624173,
1.0935848034,
-0.2443852312,
0.1640509971,
-0.1400192086,
0.8605556256,
0.2982982661,
-0.2652770798,
-1.2494325961,
0.647866506,
0.3730555282,
-0.3267554939,
-1.3180511266,
0.4710826198,
0.4777137596,
0.989877048],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00027167797],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.215209514,
0.504202371,
0.8997180865,
0.8026275431,
0.2821212538,
-0.6224912609,
0.5866220915,
-0.1544711348,
-0.7781075664,
-0.1542244076,
-0.32162969,
0.2919799898,
0.8919287737,
0.222795651,
1.2372578299,
-0.5508985019,
-0.114227682,
0.0898265489,
0.9240846724,
0.2879650325,
0.2604336035,
0.7168212194,
-0.1866449312,
0.7046340971,
-0.1469430329,
-0.5384796792,
0.3576502963,
0.5037044452,
0.1698865149],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00092184544],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7932855922,
-1.1089129924,
-0.6253224537,
0.2102138819,
-0.9474258548,
-0.3449282557,
-0.2572877036,
-0.1894158995,
0.4471242838,
0.3821450176,
-1.6071305194,
0.3296465436,
0.0658183078,
-0.4089808457,
-1.4347577385,
-2.6786139574,
0.4675682393,
1.4148384632,
-0.73981151,
-0.1681751793,
0.0553052436,
0.6323613367,
-0.4379101348,
0.160971236,
0.4012238362,
0.0863709172,
-0.0121686919,
-0.00469183,
1.3334426065],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003569126],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5793205912,
-0.1051229788,
-0.0725744315,
-0.0424605335,
-0.2151069753,
-0.6041532673,
0.1850702074,
-0.0733389662,
-0.1264989367,
0.0414219335,
1.0231703367,
0.1759855336,
-1.2537224204,
0.8914984466,
0.3429920847,
0.5292071387,
-0.5634086629,
-0.2632236816,
0.8475036589,
0.0078969498,
-0.5365877009,
-1.9921587892,
0.2023699091,
-0.030762498,
0.0990302215,
1.2845896087,
-0.3125374148,
0.0078311352,
0.6790158024],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000500381],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4065533964,
0.4852744974,
1.167073345,
-1.0604030393,
0.0118385376,
-0.2682244566,
0.5480907689,
0.0188755114,
0.0352446044,
-0.069130267,
1.6807726405,
0.6462612338,
-0.275600859,
-0.0674124211,
0.1013330245,
0.3824217742,
-0.7675163209,
-0.4530069863,
-1.0663395699,
0.2512591674,
-0.1058486404,
0.0890055363,
-0.0618185072,
0.4110306975,
-0.8468774342,
1.4368703784,
0.5273453966,
-0.0049455101,
-0.4562728734],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004172325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8689849822,
-0.1739532884,
-1.4400055259,
0.6852248825,
0.7769478508,
-0.037345852,
0.6471501294,
-0.1913768614,
-0.3447747205,
0.3770492227,
0.3518786224,
0.7845542811,
0.3732858526,
0.8831962551,
-0.3387971534,
0.1144640181,
-1.1342500178,
0.3193354795,
0.1091070534,
0.2094735564,
0.2044994236,
0.0967875185,
-0.2675078745,
-0.203094601,
0.6881647041,
-1.2661919689,
-0.1527876011,
-0.1112842016,
1.1152680118],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011021197],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.613170511,
0.2471075388,
0.3592157718,
0.7772871159,
-0.2279727043,
-0.6447395323,
0.1592963355,
-0.1825507623,
-0.1028426243,
-0.0379242162,
-0.1470833088,
0.7512607608,
0.9815126589,
0.1653296776,
1.0207590817,
0.2053571017,
-0.6049951055,
-0.5111652773,
-0.3674413764,
-0.0874072708,
-0.2997509459,
-0.8500585536,
0.1590134102,
0.6066804383,
0.7698072272,
-1.3094096584,
0.066397248,
0.1136322528,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010276735],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1812952503,
0.3958541304,
-0.0159081288,
-1.1966600249,
-0.2568360326,
-1.2249977288,
0.2925126351,
0.0869039773,
-1.3727215965,
0.1611158371,
-0.663770924,
-0.6239164393,
0.1213873452,
0.2857337513,
-0.5105960492,
1.1165714595,
0.2640434981,
-1.7267856216,
-0.0866638232,
0.0093469364,
0.5146701269,
1.3394577903,
0.0276624837,
0.6985724397,
-1.1615167167,
-0.8717579176,
0.7428354007,
0.6619497594,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006104708],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.7886658435,
2.0289826066,
-1.0084928172,
-0.1346471552,
-1.2976816188,
-0.3103520647,
-1.3749927822,
2.4008081928,
-0.547301937,
-0.1448905992,
0.5365118275,
1.2464221363,
-0.1844969046,
1.4851269091,
0.4168816645,
1.1704251516,
1.0451659403,
0.2989351683,
-0.2664446124,
0.0408913555,
-0.1631203683,
-1.0805517822,
0.4984641908,
-0.6704920028,
0.2852187285,
0.2930013868,
0.1155623479,
-0.0565908902,
-0.1944465718],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004556179],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1540018528,
0.4128138025,
1.2804120713,
0.80970028,
0.2323831849,
-0.0606525865,
0.3631892859,
-0.055304638,
-0.3425739163,
0.0455158611,
-0.1787492229,
-0.2648703868,
-0.2478790542,
0.0984860557,
1.888212283,
-0.5072116335,
0.0044971893,
-0.3771224842,
0.4339281864,
0.1629302437,
-0.1170553285,
-0.1553190457,
0.1055289696,
0.0494706647,
-1.2804288086,
-1.1193804265,
0.0750120404,
-0.1647431267,
-0.503883054],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006892085],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0330962408,
-0.7597457289,
-1.3574517146,
-2.0155775387,
-0.2970289264,
-1.0130681494,
0.0758709012,
-0.3857182062,
0.3624567389,
-0.2331492369,
0.820606603,
1.5276137922,
0.9457267849,
0.5613286843,
0.2929312905,
-2.9933765265,
-0.1654449029,
1.941051374,
0.82203604,
-0.5020187434,
-0.2024264408,
0.1839371929,
-0.1537132574,
-0.7450430008,
0.7004088226,
-1.4477227169,
0.0506865383,
-0.1633737558,
0.8151873352],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0004885495],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0497772913,
0.3949719448,
-0.2539476153,
0.4350872417,
0.3537178036,
-0.2232531456,
0.4844415569,
0.2270291264,
0.251424014,
-0.9626010615,
0.3448052154,
-1.3559302416,
-3.1387763298,
-1.4801997015,
-0.3398248669,
1.4329336603,
0.881532541,
2.3484848368,
-0.8778856699,
-0.2658032765,
0.0884910319,
0.0277948195,
0.2375499913,
-1.3120460249,
-1.2864251262,
-1.6252678821,
0.2884656147,
0.3365823007,
0.6730673289],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047245622],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6160408113,
0.4488719604,
-0.1136555664,
0.9335465558,
0.2456088514,
-0.4659800188,
0.0963058991,
-0.1332977738,
0.8289471307,
-0.6618037347,
2.360478629,
-1.866781387,
1.7698884229,
0.5842520547,
-0.4250881567,
0.828169915,
1.1305013183,
1.5611988977,
-0.4586537914,
-0.1528003192,
-0.2333902327,
-0.2847499366,
-0.2689790138,
-0.2740813972,
1.3218492071,
-0.7509710166,
-0.0012258457,
0.1070750857,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015220642],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9168284105,
-0.4476520698,
-0.2617683812,
-0.0482418051,
0.1358724593,
1.607403997,
-0.9953136102,
0.6183052534,
1.1981432953,
-0.120491194,
0.7800071973,
1.0584681938,
0.0683078272,
0.000915844,
1.1822549321,
-0.0218328238,
-0.4151183437,
-0.3388554482,
-1.0387760587,
-0.3083554022,
0.2242228671,
0.9185332751,
0.5025253734,
-1.6172189295,
-1.0035679779,
-0.6783122224,
0.2280782917,
-0.1327735501,
-0.0786189661],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005326271],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0661794961,
-3.3890528608,
-3.3628388481,
-1.1399535022,
0.6439624147,
2.3945373615,
0.9841523977,
0.0339622175,
-2.194325005,
1.0272951038,
-0.1343867873,
-0.8784839321,
0.2972069211,
0.7982018039,
-0.1347429347,
-1.5190977369,
0.8679388961,
-0.3130679073,
-0.6954351145,
3.0080693768,
1.260256824,
0.0950415941,
-2.1854522334,
1.3809671763,
0.4064404249,
0.375265941,
-0.7334832517,
0.4355544315,
2.1123057592],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0001065135],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.9260581999,
-3.0493301054,
1.1878634288,
0.6763151553,
3.570420882,
-3.246475614,
-2.2085162587,
0.1578175991,
0.4055869906,
0.0383052932,
-0.6151209797,
-0.0071513445,
-0.4463389918,
0.2091555083,
0.7672485577,
0.4894951245,
-0.8553622468,
-0.0504997007,
-0.9648432346,
1.7283167222,
0.4435990971,
-0.8556033537,
2.0633031962,
0.5274715242,
-1.444298161,
-0.4281627709,
-0.5476459321,
0.2478754966,
0.3270506659],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00025987625],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2901303094,
0.5520692152,
0.6058736217,
-0.4829479709,
0.5880343073,
-0.3373984655,
0.8032136878,
-0.0107227802,
-0.6208474947,
-0.5674380982,
0.4733734966,
-0.1920713281,
-1.1573239617,
0.8418000812,
0.2755632216,
-0.2015121925,
-0.6378820129,
0.9705775097,
0.7893626887,
-0.0910191401,
0.381795436,
1.0404917323,
-1.1514104493,
-0.6398029304,
1.8413730622,
0.2195607382,
0.0241639812,
0.1109893136,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001378417],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0029965909,
-0.31128908,
-0.2037634457,
0.2283224678,
-0.64718025,
-0.5381243574,
-0.5024253704,
0.0185184959,
1.2076900779,
0.0471629785,
-1.1725520421,
-0.5625279996,
-1.5806670299,
0.2403706716,
0.7946752511,
0.6266639472,
-0.5247865101,
-0.178156447,
-0.0105403593,
-0.3832166984,
-0.3392691889,
-0.9559174617,
0.7421731266,
-0.2817402365,
-1.2854761051,
0.5909101348,
-0.1179495833,
-0.1396959273,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045967102],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5394320615,
-0.431774699,
-0.0783604635,
0.4339434185,
-0.4903541153,
-0.4287368784,
0.0924744452,
-0.2202532557,
-0.8390100006,
0.6056615463,
-1.1458679541,
-0.1236733978,
0.1657270032,
0.1425447553,
-0.0836414134,
-2.0153510732,
0.0468107187,
1.2908806277,
-0.9363528343,
-0.3106607975,
-0.4476355613,
-0.9399208151,
-0.4260648221,
0.0200216537,
1.3860449192,
-0.5571864095,
0.0074255577,
0.144729786,
1.0719764901],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031921268],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0469989783,
-0.0295022187,
-0.9597788124,
0.0960406297,
0.2061395422,
-0.6175160173,
0.1368594491,
-0.2249929397,
0.6855400343,
-0.0775356698,
-0.8841859186,
0.1648837919,
-0.0281530854,
0.5045411133,
1.0064649156,
-0.2395988742,
-0.6859744676,
0.2372513907,
-0.1451230053,
-0.2991343157,
0.3459555056,
1.1900983359,
-0.0013182425,
0.989830265,
0.7191032748,
-0.9138202222,
0.0013262099,
-0.1443259306,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009370148],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9585978507,
-0.230074461,
-0.8202651388,
0.3713275843,
-0.1455475067,
-0.8266128805,
0.2083971275,
-0.2013821211,
0.8928767555,
-0.0907099416,
-1.0643585782,
-0.2390741032,
-1.5462568571,
0.6465782854,
0.1339841747,
-0.5262870361,
-0.0909056654,
-0.6414320757,
0.2282592131,
-0.2945537658,
-0.2676412461,
-0.8038339143,
0.349120176,
-0.2444436103,
-0.1657509005,
-1.0319364783,
-0.0826012028,
-0.1343085478,
0.6439957467],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006310642],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5424508711,
0.0001218082,
0.2482873561,
0.2843414601,
0.2180616055,
0.8121228646,
-0.2416659627,
0.3589228747,
0.076857228,
-0.2072062922,
0.651376554,
0.463181222,
-0.2674658332,
0.4767743564,
2.3797657697,
-1.0590498454,
0.921617216,
-2.8528724354,
-2.0731932646,
-0.345303104,
-0.200424241,
-0.4213808175,
0.4797829598,
-1.6312221699,
-0.2089829385,
0.4632078664,
0.0901907092,
0.0199623651,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00058302283],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.150193666,
-0.2167680668,
-0.2310756993,
0.25956528,
0.8214033335,
-0.202556436,
-0.4824517833,
0.1634411361,
0.6004500516,
-0.4688588582,
-1.2730603627,
-0.4203317724,
0.2790722435,
-1.4617761149,
0.9853315246,
0.6069746762,
0.4347127394,
1.2874212593,
0.5424515847,
0.2607202655,
0.460825948,
1.3150545829,
0.3944897697,
-0.0291887778,
-2.2856175702,
1.2720742005,
0.2618582265,
0.3474561951,
-0.3158833025],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003632903],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3604033864,
-0.2656272464,
0.2314095443,
1.0349686523,
-0.4025364864,
-0.3444545001,
0.3018131321,
-0.119370429,
-0.1089231502,
-0.0914070796,
0.1947626996,
0.6239491948,
0.4907337087,
0.322178821,
1.2861765996,
-0.2054199057,
-0.1258354064,
-0.742180928,
-1.2867495343,
0.4319800591,
0.3183285959,
0.3027172949,
-0.3662851511,
0.6948703218,
0.8155467746,
-0.714163,
-0.0107755718,
0.2189012043,
1.2586007559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009173751],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.3328946978,
-0.4946757477,
-0.2415814079,
0.9119438128,
-0.1566066362,
-0.1298349109,
0.4405093156,
-0.1578105977,
0.0608519081,
-0.0607939989,
-1.3435966885,
-0.3983765456,
-0.1900405623,
0.4525713204,
1.2018755635,
0.5637213575,
-0.9055278302,
0.4747175405,
-0.2499951728,
0.7238764273,
0.2797379708,
-0.224163662,
-0.8973529551,
-1.0168428194,
1.2846118214,
-0.5223244897,
-0.1267121065,
0.229820139,
1.4353087245],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00067180395],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.8164789338,
2.3219083012,
-2.3965911276,
-2.2681931683,
2.1663908469,
1.9587532725,
0.9439238201,
0.484967022,
2.512518969,
4.4108760461,
0.3274815797,
-0.0644226449,
-0.5130295323,
-0.4767039879,
0.5595683726,
-1.3323544577,
-0.83138256,
-0.9271483554,
-0.9646758108,
2.9986717399,
-0.4232827002,
0.615840294,
-0.0336725476,
1.1351186223,
1.1151395451,
0.3255923312,
4.9475586326,
3.3777626509,
-0.4801895831],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [3.796816e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2057848301,
0.6110321011,
0.2650108957,
-0.4597115856,
0.9069834588,
-0.4572427012,
0.8224881603,
-0.0608825311,
-0.4577516422,
-1.1237137705,
-0.8038228107,
-0.3859407836,
-0.1130474229,
-0.9793685134,
-0.0032911561,
0.3828304005,
0.4842827112,
-0.1063861363,
0.1271929714,
0.0176442726,
-0.5389519586,
-1.6806730458,
-0.4382135687,
0.6201854308,
1.2493192837,
0.6639715325,
-0.3223187257,
-0.1350258561,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007778108],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2311191477,
0.0802298282,
0.7958640484,
-0.6594845851,
0.1167061152,
-0.1024879198,
0.2956871107,
0.0609555905,
0.5792534383,
-0.9252744965,
-1.7632322068,
-0.245594332,
-0.0179777904,
-0.2990970211,
0.1745337304,
0.2858994052,
-0.8667835524,
0.6749896198,
0.0693459548,
0.063178587,
0.3578481025,
1.0696864832,
-0.3184942149,
-1.0462471695,
-0.3094990127,
0.2706234456,
0.3296507895,
0.5252696434,
0.524101302],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033274293],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.687231043,
0.1384587077,
0.9649488053,
-0.8451385996,
-1.4731110388,
0.4305595736,
0.7053043396,
0.3887804189,
0.2505676225,
-1.2630196406,
-0.7706611853,
-0.25895819,
-0.6773125154,
-0.0754368675,
0.397698868,
0.6209230038,
-0.0592275468,
-0.4675192986,
-1.2159249586,
-0.2913949759,
0.2649459979,
0.6576168654,
0.0872567783,
0.2813969975,
-0.3532737251,
2.8007780858,
-0.3310056541,
-0.2242241411,
1.3670639394],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017297268],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6482314457,
-0.6726980851,
1.1325596131,
-0.0724366149,
-1.6160385792,
-0.0453433501,
-1.2851347697,
0.2013744637,
0.6856033783,
0.254047425,
-0.9356407799,
-0.3164612026,
-0.6605183573,
-1.2695214662,
-1.4677836185,
0.545006987,
1.1895597453,
-1.6340543725,
1.0820073277,
-0.0268597856,
0.2104098149,
1.0598273063,
-0.062816184,
1.2924359729,
0.8027828365,
-0.13206134,
0.1963240025,
0.1020208853,
-0.8477370971],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00089493394],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.50418785,
-0.7019145323,
1.2270640975,
-1.6962463395,
-0.3913305989,
0.5177412635,
0.1766294575,
0.1170612908,
-0.2343795614,
-0.3252519049,
-1.7884719583,
-2.2406253243,
-1.5614418056,
-0.7283512171,
0.3219425444,
2.1232101207,
-0.5292545365,
-0.4747818982,
-0.0448577562,
0.7501978188,
0.385081534,
0.4518819721,
0.1453762809,
-0.0804184128,
1.0176728147,
-0.429259338,
-0.5138413878,
-0.4523613163,
1.1869197437],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026357174],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5964701244,
0.1601010341,
0.2606899851,
0.8637734369,
-0.3750784173,
-0.8776325674,
0.177845253,
-0.177836139,
0.0396119465,
0.0299080798,
-0.2000628436,
-0.07450584,
-0.750462357,
0.5688537832,
1.0587774645,
-0.0198315832,
-0.2992927485,
-0.1826011519,
-0.6167906496,
-0.2090523157,
0.0713448519,
0.1502058081,
-0.1052693182,
1.1726423625,
1.1803077092,
-0.7189272592,
0.0097178204,
0.090386137,
0.0994143121],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007573664],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7951135951,
-0.5882714257,
-2.0748561559,
-0.3541462388,
1.7240312027,
2.5419996183,
-0.1857733404,
0.6512432986,
0.7513973547,
-0.8069541325,
0.2780875206,
0.292451817,
-0.331835729,
-1.2028226466,
0.3435420657,
-0.077998091,
1.1434845866,
-0.0507806237,
-0.0881581518,
0.4395306648,
-0.1625249837,
-0.9742244921,
0.0695158611,
0.987437808,
-0.2008244403,
-0.1875520589,
-0.0759979965,
0.041929328,
1.2340052987],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007928908],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4634379422,
-0.0388275486,
0.1773062239,
1.2346521387,
-0.3961512815,
-0.3203710346,
-0.0298395573,
-0.0353895272,
0.6290093229,
-0.8073708375,
-0.4069501297,
0.5410584076,
0.3637105581,
-1.9864913721,
-0.5070165064,
0.0800105522,
1.3407077456,
0.4177189005,
-0.3105199058,
0.2352008031,
-0.062468652,
-0.1092721977,
-0.4296392367,
0.5106102947,
1.2492723491,
-0.6007650558,
0.1325882535,
0.2732178894,
0.9674869701],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001226753],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0299523873,
-0.0425550628,
-0.6865772474,
0.273823699,
-0.056149551,
-0.8204865069,
0.1471217269,
-0.2470075431,
0.4762983047,
0.0652993496,
-0.7249510237,
0.4124038297,
0.0475850806,
0.2948576731,
0.0946780053,
-0.1661771857,
-0.2862403034,
-1.0862151657,
0.1249153209,
-0.302606473,
-0.3998391289,
-0.9771717147,
0.5964860201,
-0.1509424643,
-0.5735760892,
0.424479462,
-0.1699033903,
-0.1834136022,
-1.344792593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001382947],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2012053973,
0.1522172534,
0.2990905564,
-1.339617822,
0.2374443021,
-0.9436681321,
0.4484443842,
-0.2618995924,
-1.0113080403,
0.250251776,
-0.862112087,
-0.2921672249,
0.8295819377,
-0.4732211602,
-1.1544349192,
0.5848468019,
0.304837715,
-2.1992111597,
0.9393168097,
0.1899537814,
0.0377642768,
0.2962939816,
-0.2571221802,
0.0051101159,
-0.5492416619,
-0.822830832,
0.6932340241,
0.7017471272,
-0.5024576903],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005187392],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4628553984,
-0.2749071072,
0.6813423265,
0.8940415871,
-0.8723391838,
-0.3093957764,
-0.3409620716,
0.0540495748,
0.6076867798,
-0.0696676145,
-0.58347549,
-0.3349525027,
-0.825632482,
0.1986775807,
1.7346371622,
0.7933245421,
-0.7212286862,
0.6365576554,
-0.873574664,
0.1291803068,
0.2639671943,
0.3158284207,
-0.2019387728,
0.6066587381,
0.5119218133,
-0.772925102,
0.0744992077,
0.2068258202,
1.0006186387],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00035610795],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9752845406,
-0.2373147084,
-0.3077943174,
0.26609224,
-0.2930019539,
-0.1448662732,
-0.3832846117,
-0.0602959764,
1.0291645776,
-0.1587006953,
-0.7381435498,
1.0519728788,
1.5021328875,
-0.3946663278,
0.622565299,
0.1121199187,
-0.7665250732,
0.2490266025,
-0.3917837592,
-0.0635862393,
0.4160321859,
1.4825247606,
0.1194331663,
1.3371158904,
0.0623715679,
-0.3714565675,
0.0813033729,
-0.0669484542,
0.3072730026],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00064605474],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6269163899,
-0.0325674978,
0.1100846816,
0.1134940076,
-0.3956530864,
-0.697289296,
0.0263825034,
-0.0683966853,
0.1017249977,
0.0197946737,
1.1817826303,
0.4781166375,
-1.2660838359,
0.5980530574,
-0.5559610741,
-0.12963197,
-0.0664203707,
-0.2166319307,
0.6447166801,
-0.2132104139,
-0.0515250817,
-0.0755029465,
-0.0895761869,
1.013613078,
0.876914439,
2.1956446758,
-0.2582385085,
-0.0459857974,
-1.1264508552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001015991],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.586333354,
0.1933923559,
0.2408935699,
0.8547691378,
-0.4412612106,
-0.8249325394,
-0.0042429901,
-0.1383318102,
0.3879105543,
-0.6972175279,
0.2182545373,
0.7224757875,
0.4103451176,
-1.6926537373,
-0.3918562186,
-0.1004033806,
1.467113393,
-0.2440998502,
-0.2780064557,
-0.0619735835,
-0.191344201,
-0.1886382217,
-0.0543172825,
1.4561778163,
0.9614769498,
0.7767341174,
0.0109273279,
0.1671549742,
-0.2212335278],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015155971],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6064754001,
-0.7114101837,
0.8089951856,
-1.135380629,
0.1070830089,
-0.8269754551,
0.8575814771,
-0.4212599787,
1.3228027825,
-0.8602108255,
1.0839166003,
0.6345414252,
-1.5135476471,
-0.1232497375,
-0.8710414612,
-0.7700314445,
-0.5880031601,
0.2542455929,
0.5700221383,
-0.2590009347,
-0.2295316955,
0.0124554679,
0.02102193,
0.8603559121,
-1.0957347042,
-2.4500295193,
-0.2127053803,
-0.9156072507,
1.1920709654],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00029939413],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.3734698727,
-0.2914497867,
-1.3888543952,
1.2789470686,
-5.6783503274,
3.5499639234,
7.9288778201,
-1.2412103231,
-1.9196696472,
-0.861950802,
1.0714935077,
-0.5312639977,
-0.2685671943,
0.4311892996,
-0.8715444738,
1.9225484291,
-1.5215127685,
0.3054891235,
-1.66479251,
-1.7962170934,
-0.6259277759,
0.5280926652,
1.2372533391,
0.7150947697,
0.8539944101,
-0.2289372707,
2.0180939896,
-2.7311668621,
2.3067609296],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013318658],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.046025514,
0.5583537721,
-0.2105115259,
-0.4435866785,
0.6378252598,
-0.4627530187,
0.6704392064,
0.0668586216,
-0.1928599729,
-0.5608444254,
0.9775869274,
0.1929712588,
-0.8861075073,
-0.6617807623,
-0.9562844141,
0.5825842627,
0.2395138392,
0.4142588505,
0.0200078919,
-0.0174036836,
-0.398096353,
-1.079808161,
0.2128764907,
1.0603355966,
-0.9333955907,
0.1843361524,
0.5114808653,
0.2447505614,
-0.7236631158],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00082567334],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7096928597,
0.1560325976,
0.6589410098,
0.8706357626,
0.46403884,
0.1229384404,
-0.1854863336,
0.4364826501,
-0.5935834711,
-0.2609594473,
-0.979283925,
0.3551627039,
1.3435572728,
0.2315667538,
1.7845783727,
-0.0854854686,
-0.1339246128,
0.1461099633,
0.694171019,
0.0712402135,
0.2753337888,
0.681147607,
0.2064016693,
-1.2496357971,
-0.3162545359,
-0.4467885928,
-0.0521423651,
0.1586638729,
0.1801179591],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005404055],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8270651524,
1.0248776149,
0.4147052903,
-0.4890314696,
-0.2688786763,
-0.0834222522,
-0.2012827214,
0.7637952347,
0.0071515454,
-0.5081717308,
-1.1823112345,
0.7121122549,
1.1074126266,
0.0783015643,
0.0750854206,
0.6328819286,
-0.4404125224,
-0.206198966,
-0.2238932795,
0.0029169985,
-0.1597746447,
-0.6571600554,
0.2150830576,
1.0912733688,
-0.3700446782,
-0.0606758774,
-0.1936557692,
0.4859980545,
-1.1289470305],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00036677718],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1371203253,
-0.3887298758,
-1.0977267292,
-0.8399776284,
0.1016686336,
-0.3680580122,
-0.2275113478,
-0.2844717241,
-0.6541960476,
0.736467974,
-0.9448141275,
-0.1342656601,
1.7513936579,
-0.2991029394,
0.336145641,
1.1015683243,
-0.1725134054,
-1.5190836371,
0.7695717589,
0.1388919392,
0.5556086603,
1.686709734,
-0.1200406296,
0.1972501045,
0.6748274715,
0.158032196,
-0.0848330106,
-0.1887774591,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005891323],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.193177861,
0.492815924,
1.059243897,
-0.5765265764,
0.1808383681,
-0.768300297,
0.9439762707,
-0.4625091942,
0.2036451753,
0.0157035856,
-0.3797616444,
-0.3889788043,
-0.3857165789,
-0.3095641826,
0.5788271366,
0.1608667539,
-0.8742026745,
-0.3311069006,
-0.6596808084,
0.1703766882,
-0.1312048991,
0.1362680157,
-0.2616141804,
0.6544974114,
-0.8302034012,
0.5936352524,
-0.3666018958,
-0.7586891457,
-0.7976822462],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007394552],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4712782322,
-0.2425709401,
0.9446138098,
0.6671857246,
0.540365575,
-0.4796390058,
-0.000133963,
-0.0902971049,
-0.3701276399,
0.5087680381,
0.9312687207,
-0.4532112307,
-1.3631541378,
0.562308401,
1.4603521353,
-0.2270189032,
-0.1811205353,
0.9364959165,
2.5856181534,
0.2944569955,
0.0165553036,
0.0335514366,
-0.1007807277,
0.0386380991,
-0.9805958154,
1.1366512051,
-0.4898021703,
0.0569271827,
0.4769687719],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010330379],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5768593625,
0.3470884229,
1.0977065728,
-0.2082398462,
-0.4094038933,
-0.5375761276,
-0.0799234232,
0.1382213976,
0.336308831,
-0.2898553787,
-0.6280828595,
0.0333530451,
0.181283953,
-0.2698349833,
0.8474981315,
1.0156348465,
-0.9610889466,
0.2692804223,
-1.2846279334,
-0.4521046736,
0.2215816539,
0.644532045,
0.0859869882,
0.657624839,
-0.8273292606,
0.1917191919,
-1.4263607412,
-0.7758239657,
-0.3052316655],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007327795],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8649949699,
0.9636396671,
0.8443583328,
1.9640611803,
-1.1600356973,
0.705099816,
-0.9918329566,
1.2906500145,
-0.1497037768,
-0.2142187013,
-2.3539491389,
0.1544564002,
-0.3491396939,
-0.0354498324,
-1.7787918743,
0.1243604702,
0.7710486545,
0.3347989088,
0.4962986234,
-0.6027283839,
0.4092319938,
0.9768473363,
-0.1864853439,
0.1246135499,
-0.5856276022,
0.4336412069,
-1.3189051235,
-0.1405710799,
0.2937817898],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017604232],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.5253793056,
1.6476173238,
-0.1651556616,
-1.1898637787,
-0.9567876067,
-0.9485342149,
-0.2143542067,
0.7435122239,
1.0328616526,
1.5283990864,
1.0421803423,
0.3130622929,
-1.5250243191,
0.5554477434,
-0.1349494257,
0.821646812,
-0.535269452,
0.135788986,
-0.8767139887,
0.7315964371,
-0.0963553078,
-0.4391076631,
0.3186163892,
0.8265599986,
0.0847651872,
1.4971707941,
0.2426658901,
1.1837412037,
-0.8080869167],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018051267],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7449051422,
-0.2152859788,
-0.2659894611,
-0.5627102283,
-0.3031281589,
-0.8308511106,
-0.0446642452,
-0.285711749,
-0.9556863831,
0.6269223079,
-0.7547085585,
-1.0356497389,
-0.2517399837,
0.1860438805,
0.5535826163,
1.0073354308,
0.274609684,
-1.6026494009,
1.0447509183,
0.074413007,
0.2065242436,
0.4646045363,
-0.3796658837,
-0.1938991052,
1.6290080991,
-0.1043904893,
-0.0850968692,
-0.0032231558,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011722445],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3559053011,
0.5698015876,
-0.5451172149,
-0.3300912471,
0.5952337383,
-0.6262117432,
0.4736554772,
0.1359838675,
-0.0283659067,
-0.2326000133,
-1.2985800223,
-0.0159602192,
0.192240577,
0.6422825681,
0.5644374484,
-0.2434448841,
-0.5247510391,
0.3985289653,
0.2409850839,
-0.2463648463,
0.5373523278,
1.6996671389,
0.2449255673,
0.8446722041,
-1.2728238371,
-0.517657154,
0.3319577925,
0.8480115736,
-0.7083685631],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023120642],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1976005055,
-1.1250936027,
0.7804299217,
1.3028833862,
-1.1994298959,
0.9480368265,
-0.6362020629,
0.3157110935,
1.8364752676,
-0.5364876669,
-2.2880862702,
0.1406346703,
-0.6389245857,
-1.0576729741,
-1.3627886583,
-0.1211029929,
0.0070546556,
0.6062638269,
0.3491426011,
0.8193725747,
0.356352307,
0.492265266,
-1.0298655587,
-0.6638664589,
1.0246187272,
-0.2103923392,
0.103050112,
0.3249067672,
1.5158318046],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00046622753],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4068601823,
-0.8730647045,
-0.0632819633,
-0.2085098255,
-0.9145584344,
-0.5706790551,
0.0509501377,
-0.1875341231,
-0.9962234149,
0.5939855524,
1.1134264127,
0.6715996044,
-0.0148300363,
0.3258544693,
-0.7928180112,
-1.8209260462,
0.176291726,
1.3127006149,
-0.4247615495,
0.0986280857,
-0.2962547343,
-0.9805814932,
-0.4054667468,
0.985550952,
0.521567102,
2.1306634174,
-0.3127407794,
0.1326606022,
1.3528874901],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005017221],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2456274636,
-0.9376123605,
0.4711082499,
0.2623376808,
-0.9760464287,
0.3133399304,
-0.3447752968,
0.2059765549,
0.5876213238,
-0.2438257144,
1.2545551225,
0.8470738328,
-0.3552991203,
0.0503026482,
0.361228182,
0.3681696361,
-0.2126757849,
0.0839010774,
-0.2903835702,
0.7739273674,
0.4863982536,
0.502839692,
-0.5213823847,
0.1834510122,
-0.0505946989,
2.2422443668,
-0.2252904442,
0.1999983266,
1.4465815029],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003747046],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1780060898,
0.6440235938,
0.8215875929,
0.0509566385,
0.0275596658,
-0.7704833243,
0.5396651785,
-0.0293435384,
-0.3025734721,
-0.4302677464,
-0.2772080345,
-0.3333932132,
-0.3598582861,
-0.331172042,
1.0312688899,
0.4471391313,
0.0434370499,
-0.0718944039,
-0.1076749644,
0.132554119,
-0.3665779001,
-1.0360299049,
0.0166181999,
0.5182431796,
-0.3226339581,
0.1524321057,
0.5797232289,
0.3200039583,
-0.7236631158],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007470846],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.4825778003,
-0.7474370631,
0.4569833963,
0.9460572874,
0.3864762069,
0.0431518747,
-0.0389233196,
0.4028325041,
-0.2993334533,
0.0574369599,
0.7584674918,
0.9408395163,
0.9185241754,
0.1888138029,
0.5675868346,
0.5201530817,
-0.7382652627,
1.3310596269,
0.9135223144,
-0.7943443703,
0.1105792098,
1.5617389829,
1.408426857,
1.3475209624,
0.580817608,
-0.7500348862,
1.3100239733,
-0.4713140109,
1.0417298209],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034102798],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6636888818,
0.2808321407,
-0.2837229402,
0.6586944884,
0.4798074467,
-0.1223877977,
0.2221675107,
-0.1225133812,
0.870927719,
-0.1018320908,
1.0429649456,
-2.53448874,
0.6932616888,
2.3916768129,
-0.6173067083,
0.374597729,
-0.2166894613,
1.0966659393,
0.3483734031,
-0.2869401059,
-0.2571007718,
-0.4472105411,
-0.4677500817,
-1.5279791292,
1.7639906132,
-0.5704690569,
-0.1191417473,
-0.0526629756,
-1.4765548991],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001873672],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7099960247,
-0.1404969742,
-0.2014708401,
-0.4808577247,
-0.340760151,
-0.8161267315,
-0.1544791327,
-0.1995226143,
-0.8890436972,
0.2144140214,
-0.3301414008,
-0.9937695762,
-0.0892927321,
-0.913509428,
0.8886153076,
1.728664308,
0.9778178044,
-1.5172028145,
1.0476441231,
0.1774087026,
-0.5040093327,
-1.767973654,
0.2122738011,
-0.4772722694,
0.491795866,
-1.2604247935,
-0.0119551585,
0.1290811956,
0.2372903458],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00074735284],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0826827466,
0.1591377793,
-0.0652205751,
-1.5681368943,
0.3896340294,
-0.4655874031,
0.6006338048,
-0.1374805327,
-1.6161253453,
0.2660288694,
1.0102269931,
0.0082256638,
0.3941290784,
0.2030317562,
-1.0974790323,
1.0836198801,
-0.2015839014,
-1.4328813487,
0.8389052961,
0.0855259384,
0.3571039944,
0.8123694954,
0.1377179044,
1.1814526071,
-1.6738602646,
-1.1061720181,
0.4432011627,
0.7062513566,
0.0203055874],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00085768104],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6161803956,
-0.2867909307,
0.6524914748,
-0.4550207118,
-1.1054858971,
-0.7633486204,
-0.5470168663,
0.0159224979,
1.7897807405,
-0.9102397259,
-0.3614291899,
0.1933669881,
-1.2438373146,
0.0775884978,
1.511710562,
-0.5664706155,
0.0380360487,
0.4779813892,
0.443004933,
-0.2730218846,
0.1988242985,
0.8718878378,
-0.1223711016,
1.2120422343,
1.0435335347,
-1.1301522731,
0.2085352477,
0.1163351297,
-1.424110823],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001268357],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0661181089,
0.1310912039,
0.1925736999,
-1.1064942648,
-0.26017305,
-0.635240807,
-0.0029681779,
-0.0831666839,
-0.5162601298,
-0.4366529418,
-0.5341999437,
-1.1419910303,
0.0039358178,
-2.2858908625,
-0.0595620797,
1.8352681842,
1.4623887656,
-0.4353503463,
-0.0444423446,
0.0229085569,
0.4441965511,
1.2940634395,
-0.2340256716,
-0.3267901511,
-0.7902115695,
-0.3428345934,
-0.0470161733,
0.2414537687,
0.151076552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00055116415],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8731897859,
-0.5830542203,
0.3674026342,
1.0732825414,
-0.2096452118,
2.4974522803,
-1.6709980851,
0.9139675191,
3.3001345773,
-0.4141686543,
0.5065467185,
-1.7942744234,
0.0886593976,
0.7092929572,
-2.2328600329,
-0.7176717506,
1.2226327711,
0.0687930031,
-1.054750885,
-0.6076092439,
0.0359265889,
1.2284525093,
0.3218908037,
-1.7187394328,
-0.6275304543,
-0.8779513394,
0.3363732782,
-0.1452054601,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00080034137],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.3155846978,
-0.8167805878,
-0.0085166385,
-0.408672677,
1.1888173752,
-0.4796193114,
0.6559042286,
0.3281512753,
-0.2993278486,
-1.4848169047,
-1.9335639168,
0.2440132251,
0.4096789398,
0.3708585179,
-0.9985789511,
-0.1309877934,
-0.4864380626,
-0.0489569379,
-0.1166593693,
1.0589587637,
0.3172696423,
-0.5647289191,
-0.0892416098,
0.0684069399,
2.4519393207,
-0.5586088383,
-0.4266987495,
-0.9099946554,
1.233132124],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000282377],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0105639184,
-0.0586686514,
-0.750110403,
0.2916486616,
0.1431642231,
0.0168286453,
-0.3579071816,
-0.0218272317,
1.0704668527,
-0.6203353414,
-0.9901115405,
0.7002416559,
1.5872559975,
-1.7687965646,
0.5452615815,
0.6485799462,
0.1333848411,
1.0070011628,
-0.1940756189,
-0.0427655471,
0.1755167287,
0.911251558,
0.0031069702,
0.0725497656,
0.2373308128,
-0.3425785619,
0.129457914,
-0.0134868327,
-0.1135563277],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00067427754],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2627092854,
0.7297164845,
0.4576098044,
-0.2727734768,
0.4427379059,
0.0046068378,
0.4742068035,
0.14320619,
-0.3347032539,
-0.0177270475,
0.4363636755,
0.1285631817,
0.0547030555,
-0.3357913751,
0.3380900363,
1.0128800717,
-0.7511403943,
0.8997640953,
0.7586509967,
0.3581440455,
-0.4489250011,
-1.1718644724,
-0.2697430856,
-1.5105368164,
0.0266335976,
0.2738100613,
0.8566611335,
0.425172164,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006029308],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3036515384,
-0.0110007534,
0.8283092676,
0.197515484,
1.1847720595,
0.2182647094,
0.0787119586,
0.0533503836,
-0.6211356416,
0.1554271458,
0.6873953284,
0.5110489411,
0.7180061606,
0.153392953,
1.0738281107,
-0.073197133,
-0.6328258812,
0.1909758286,
1.7132169318,
0.5218417689,
-0.1663724492,
-0.5264687778,
0.0262593554,
-1.9177624922,
-1.1051633123,
0.4378029478,
-0.1340659155,
-0.2432872637,
-0.9788406928],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045618415],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0717257032,
-1.0080514781,
-0.6339930405,
-1.3385815706,
-0.4379935196,
0.9029747069,
-1.2121229645,
0.3020926164,
-1.2019879855,
1.418879045,
0.74286447,
-0.0419330043,
0.4207064491,
-0.2531586998,
-0.0288330656,
-1.1207922833,
0.9313224983,
-0.8030683302,
-0.9087979084,
-0.6417928329,
-0.0880520283,
0.5529737352,
0.4279404618,
-2.7727802533,
-0.7856827585,
-0.1375325082,
0.1533267793,
-0.2182270178,
0.0897524564],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00017344952],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6720881059,
0.4216214768,
-0.565237142,
0.4725280844,
0.4322027446,
-0.7232322764,
0.3687137722,
-0.2463733496,
-0.205564689,
-0.6401890622,
-0.4177954476,
-0.069983576,
0.7291238883,
-1.5022918207,
1.03969874,
0.8488954713,
0.7906651689,
0.5608131199,
-0.0688535983,
0.0007334562,
-0.2794017844,
-0.6926297922,
-0.3262471335,
-0.9280253052,
1.3549722075,
0.864394458,
-0.0718065135,
0.1228187898,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012264252],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.143121062,
0.6621382606,
-0.4763701135,
-0.6548250278,
0.5259888034,
-0.393836666,
0.5600236553,
0.276672501,
-0.5213065499,
-0.3388432938,
0.5168369468,
1.0640929189,
0.4988791444,
0.6170271899,
-1.5264852085,
-0.1677431831,
-0.5323109864,
0.2727757098,
-0.1861398356,
-0.146040969,
0.7732583655,
2.4637875112,
-0.2565655765,
1.3895678739,
-1.3192590613,
1.553246172,
0.7312025885,
0.7612522228,
-1.0858243121],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001613915],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7342906362,
0.3206335452,
0.3833159718,
0.7473779649,
0.9716357462,
-1.0525730635,
0.3553055678,
-0.2230521866,
-0.6617821786,
-0.4539669098,
0.7908053278,
0.1113127885,
0.6357486819,
-1.563467309,
1.6901370733,
-0.4152484523,
1.9750716244,
-0.1230042627,
0.4459077295,
-0.1612962179,
-0.0394807471,
0.1536589651,
-0.1568124412,
0.5506605428,
-0.3253869677,
0.9228213352,
-0.7644880524,
1.3878358063,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00092351437],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6182504835,
-0.9118363627,
0.523407782,
-0.864831801,
-1.42472565,
-0.3617879656,
-0.9543996597,
-0.0365979072,
-1.4798676455,
1.1882971758,
0.0079502069,
-0.7234120851,
0.501080694,
-0.420832146,
1.1798636663,
-0.5923223955,
0.8837432969,
-0.2464383003,
-1.1912088626,
-0.1944674043,
0.0710374486,
0.4807552243,
-0.030181487,
0.6546790287,
0.3596127878,
-0.2162524767,
0.1135183966,
0.1533431622,
0.9048784303],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00029850006],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3587927064,
0.0681843032,
1.3937441773,
-0.6405588822,
-0.4390494362,
0.2282910591,
0.2355335887,
0.2508262966,
-0.0280107818,
-0.7746736314,
1.3438491634,
1.1848021585,
0.5432373326,
-0.3650884943,
-0.5968933296,
0.3866539229,
-0.5271085061,
-0.0803759098,
-0.9972321294,
0.1511996551,
0.4659237648,
1.2818581157,
0.1739868152,
0.5106488561,
-1.0087768173,
1.8481719288,
0.1343589422,
0.4258291155,
0.7903121009],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031331182],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.238490353,
-0.8862537166,
0.6692313637,
-2.4926193965,
0.8100367574,
2.8896420078,
-1.006185738,
0.7370217113,
-1.607837771,
0.8354563538,
-0.4885894888,
-1.4356543456,
0.558152061,
-0.9886559753,
0.7639418446,
0.6607716038,
-0.7369665218,
1.5024059591,
-1.0533613382,
0.1493055181,
0.1851810996,
0.7545753283,
0.0209278759,
1.6346725768,
-0.2144835,
-0.4806334995,
-0.0791033975,
-0.2426986801,
0.7467478219],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0001013577],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0880284672,
0.2884572039,
0.0621485938,
-0.707863836,
1.8387519783,
2.8709175776,
0.2219246351,
0.5767801928,
-0.0051879197,
-0.2027932538,
-0.4825769246,
-0.1551206553,
-0.2819917595,
-0.2664808812,
-0.2175900285,
-0.1539451587,
-0.6336996308,
-0.1324348921,
0.9109016436,
0.1301508421,
-0.3467551155,
-0.8529917944,
-0.3130920307,
1.7063159961,
0.2308166283,
0.4126905556,
-0.7089892732,
-0.6801115569,
-0.119790095],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045344234],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5693879045,
-0.4297897298,
0.4877320509,
0.3217163989,
-0.7796325992,
0.1289158962,
-0.5677660236,
0.0730841146,
-0.7069622548,
0.7285806086,
0.5677917561,
0.8680541169,
0.7961198085,
-0.1714147099,
-0.4645243079,
-1.3212138393,
-0.518185279,
2.3569848613,
-0.907558709,
-0.4362905946,
-0.2228707827,
-0.017872035,
-0.2977228669,
0.0133513207,
1.0182370682,
-0.4741201581,
0.1479322344,
0.1208839864,
0.7414421834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003144443],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5620505416,
0.0029837985,
0.9695226293,
1.0400850411,
-0.8893299847,
-0.3638584295,
-0.4120928119,
0.0330082053,
0.6947438547,
-0.1834628595,
-0.2238473826,
0.8653592132,
0.3595282696,
-0.4113871365,
0.093093862,
-0.1152720725,
-0.0851051134,
-0.3215718925,
-0.5169914202,
-0.1608536604,
-0.032015009,
0.2033189272,
0.1075322262,
1.5637689544,
0.6916877165,
-0.9157162185,
0.1794603537,
0.150986676,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00077983737],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.4539973369,
-1.1562664782,
0.9475813347,
1.2261614405,
-0.9190322384,
-0.0707093887,
0.4655300293,
0.514176224,
-0.1054563939,
-0.7889712962,
-0.9956417547,
-0.2422033449,
-0.3915539831,
0.2568989125,
1.0809090992,
0.1153485585,
0.1144078256,
0.9868785151,
0.3559543887,
2.0529092623,
0.8198913696,
0.5530231708,
1.4212640181,
0.5656954924,
1.1212681469,
-0.2769026094,
0.2440338384,
-0.3843030113,
1.6125021558],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003812611],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.9129805199,
-2.9894379771,
-2.7798179299,
-1.3097561305,
2.3069896079,
1.7229120302,
-0.8134952742,
-1.1806362157,
-0.2006958543,
-1.9926996764,
-0.4703930351,
0.8866132028,
-0.1647168633,
1.8242970044,
0.0265552082,
0.7669693179,
-0.4187009883,
-0.6786923114,
-1.5743762413,
0.3876198123,
-1.4396180549,
0.3046961524,
-2.9504540423,
1.635292197,
-1.5978749219,
0.7055681213,
0.9750047858,
-3.3934304377,
1.4279745019],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00026619434],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5311396552,
-0.0112551211,
0.3068641035,
1.0799129009,
-0.3353709322,
-0.280084313,
0.0613391296,
0.0169844208,
0.3725228022,
-0.0934946092,
-0.4101199252,
0.0378956114,
-1.3099732073,
0.3330922406,
0.0013110918,
-0.858628981,
0.5121257518,
-1.0931672794,
-0.6205124039,
-0.2352043829,
-0.0914506143,
-0.1718005038,
-0.0742864405,
0.626492893,
1.0862166661,
-0.6884094362,
0.0543622247,
0.0881624899,
0.5180809167],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00061768293],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1731931572,
0.7940574822,
0.607730264,
2.0169584486,
1.0255984229,
0.9108228883,
0.7105374577,
0.2335075195,
-1.6260801408,
0.7699433659,
-0.5017574212,
-0.2707367643,
-0.5235843431,
0.1753837733,
-2.465142697,
0.6806432933,
-0.9542416781,
0.5567346059,
-0.5357188151,
-0.1134130236,
0.2470129189,
0.7071850423,
-0.5159705613,
0.3015312042,
0.0294918032,
0.2456783646,
0.2806283423,
0.488538931,
-0.0076291554],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00065112114],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0697345504,
0.671744165,
-0.0881469852,
-0.39197257,
0.3895692071,
-0.6818847042,
0.7843955397,
-0.0981430502,
-0.089400676,
0.1746859848,
0.8878006302,
0.6390860854,
-0.1910123886,
0.5977574229,
-0.2078287633,
-0.3976868532,
-0.7224496814,
0.6491763009,
0.2405289,
0.1321299428,
0.5529378203,
2.0210391544,
-0.1993818641,
0.0773064822,
-1.5185300746,
-0.4848891447,
1.492250944,
1.1823217557,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00084757805],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.1307237718,
2.4467328357,
0.9035615967,
-0.4616860272,
0.5806913559,
0.3991431476,
2.6735842756,
-3.0281465042,
6.4215300205,
9.2353847393,
0.4526808841,
-1.4027292416,
-1.4767509264,
-5.2772620835,
0.2653479792,
-3.0153126886,
-1.4985503176,
-1.7006779274,
1.1354123365,
3.3229458723,
-2.1093917835,
-1.8691492957,
-0.5410226309,
-0.3145216049,
1.2381480705,
-2.9053330401,
-9.008019657,
-3.7208012407,
0.029442796],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [1.5199184e-06],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7187639418,
-0.4545532564,
0.3737292344,
-0.6441601017,
-0.4650550004,
0.6231200913,
-0.951491135,
0.1419579528,
-0.1937597877,
0.389839185,
-1.3232552166,
-0.1625949832,
1.7567717269,
-1.0402536276,
0.6158141491,
1.3790296398,
0.0135340476,
-1.3777282254,
0.7732876597,
0.1996393279,
0.3475243255,
1.278074222,
-0.4290413379,
-2.087629292,
1.1870607173,
0.1383400879,
0.1769442577,
0.0387435568,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022512674],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1384029178,
-2.3593400615,
-2.3985037421,
0.2167437131,
-0.4837272245,
-0.7199475344,
1.5090479885,
-0.6595372669,
-0.9888075902,
0.5262568991,
-1.3642244391,
-0.9672998267,
-1.0454018123,
1.1886984124,
-0.0720007308,
-2.2546320515,
0.2313662506,
1.2878133824,
-1.1247789666,
1.8965387252,
0.6829598638,
-0.5766857787,
-1.6938067293,
1.1078728008,
0.2413727147,
1.8350265243,
-0.8159446757,
0.301049856,
1.99629628],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002655983],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3292800752,
0.5338226059,
0.6523666786,
0.2943134261,
0.0446170282,
0.2018649286,
-0.0261178321,
0.4632950225,
-0.5696733376,
-0.4572701564,
-1.0181893182,
-0.1033363205,
0.4714780876,
0.4426856897,
1.8778352068,
-0.0219594286,
0.0485231636,
-0.1090158176,
1.0234606153,
0.0891339212,
0.0688694899,
-0.0203415985,
-0.0342973975,
-1.257094809,
-0.9219501554,
0.7921266264,
0.0324752563,
0.1637123264,
0.1113896847],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005814731],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.8972735325,
0.0466709933,
-1.7475306485,
1.0180832969,
0.9294832387,
-0.3668529037,
0.7422349062,
-0.2968989536,
0.0392102595,
-0.3895377874,
-1.0195555366,
0.109693321,
0.477028204,
-1.1403516847,
-0.3634332868,
-0.0455775381,
0.8199069992,
0.2726866937,
-0.2761268034,
0.1842952606,
0.0163706742,
-0.1009405369,
-0.3614566118,
-0.1338231283,
1.0387176787,
-1.0260961575,
-0.0688655804,
0.0038655233,
1.0462647534],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0015870035],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.3853282511,
2.802890997,
-2.8457517423,
-0.4919106705,
-1.7353838581,
-0.833996727,
-1.9586091554,
3.3322430867,
-0.2387566554,
-0.1890217108,
-0.0273144117,
1.9271686276,
0.0842893923,
1.5909226406,
-1.1963542701,
1.5582094954,
1.9101006553,
0.5030855954,
-0.4294735583,
0.0438196208,
-0.2005167776,
-1.40728021,
1.0796452922,
0.9245870218,
0.2332135152,
0.305493401,
-0.1445395565,
-0.0731150016,
-0.1759996612],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00012886524],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.9141249413,
-0.1473685248,
-1.1301340303,
0.2295274297,
0.1951569507,
-0.4691955103,
0.1469914043,
-0.1235964416,
0.5921028187,
-0.6449830546,
1.0122284706,
1.2436058562,
0.5488760078,
-1.4056593139,
-0.9110082883,
0.2281838005,
0.8036885863,
0.5867939457,
0.5693427495,
0.0761996519,
-0.2125388923,
-0.5296002452,
0.0880102519,
-0.9433641831,
-0.1166991792,
-0.1858408936,
-0.0539339408,
-0.0498370553,
0.8170038552],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009061396],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5285310776,
-0.0950100456,
0.7693181378,
0.7367186722,
-0.6455458892,
-0.080983382,
-0.4196449964,
-0.0048499245,
1.4957719142,
-0.4027589723,
2.1778634193,
-0.8476942785,
2.5035479131,
1.1703002112,
-1.6300675898,
0.0558047613,
0.4461816648,
0.5144729455,
-0.0968455006,
0.0273557335,
0.022422242,
0.5648101024,
-0.2250593815,
0.9473760286,
0.8177941103,
0.8938065479,
-0.0759535854,
0.0585542768,
0.5670747762],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00060608983],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5038318907,
0.6375044997,
0.4718429094,
-0.571595504,
-0.5910242015,
-0.5777481713,
-0.2493072666,
0.6875480473,
0.1738482383,
-1.1984834844,
-1.1875395117,
0.4420642923,
0.0985571803,
0.4292942595,
0.2385603246,
0.5250118513,
-0.2858908969,
-0.0717449511,
-0.187632474,
-0.5032940111,
-0.0904833873,
-0.6274734122,
0.2072577294,
0.0154116092,
-0.3544188743,
-0.5806814868,
-0.8334117454,
-0.4423900853,
-0.8200579142],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045341253],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5465199204,
-0.1417139977,
0.6459493079,
0.2936650562,
-0.5679643617,
0.1218014946,
-0.5135222214,
0.2267349786,
0.2300052179,
0.0234846752,
1.5059244699,
0.8086709746,
-0.185592839,
0.2731754476,
1.0741465686,
0.6419363126,
-0.5955755866,
0.1240516978,
-0.5577815499,
-0.0806935105,
0.1205293918,
0.2556021953,
0.1128066296,
0.0708811798,
0.0647416956,
0.8296211968,
-0.007179481,
0.0635462175,
0.266564391],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00055736303],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0330353379,
0.0667547725,
-1.0729024033,
0.293851524,
0.2909479233,
-0.6159288048,
0.121027877,
-0.1459328517,
0.4970500491,
-0.3211877597,
-0.5588033898,
-0.1138713552,
-0.4808134534,
-0.738449558,
0.3296569807,
0.302075056,
0.6489649798,
-0.383006719,
-0.0308124228,
-0.2601890882,
-0.5036676078,
-1.3524262457,
0.6268433061,
0.8172728609,
-0.553347012,
0.3658914459,
-0.1580153793,
-0.0910595574,
-1.4765548991],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00141114],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.9410652554,
-0.2723192349,
0.6295251563,
-0.0794718555,
0.6467955225,
-0.9362031144,
-0.1967795711,
0.5815963492,
-0.67830962,
-0.636609889,
1.0570097716,
-0.1499759821,
-2.2738606742,
1.3386631045,
0.0204049198,
0.2716394954,
-0.0935357383,
-0.0885813352,
-0.9847525481,
0.0223585766,
0.2855873294,
-0.292903585,
-0.372135532,
0.3220952054,
0.8733421467,
0.5912267354,
-0.5025823862,
-1.0441767678,
-0.4517528205],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007226467],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5034972343,
0.5650944574,
1.2316088841,
-0.4329326497,
0.3347439615,
-0.2542238133,
0.6871003468,
-0.0450139278,
-0.4167167354,
-0.4068998383,
1.6778786586,
-0.021603505,
-1.3412892927,
-0.2245726259,
0.2515827051,
0.4696001966,
-0.1825322166,
-0.1183361987,
-1.0148896768,
-0.1860918282,
-0.2476330485,
-0.8648083387,
-0.2872801339,
0.2254279027,
0.0102942029,
-0.0837772947,
-1.079393061,
-0.4435954002,
-0.4925927128],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00074771047],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.526082655,
1.0758455096,
-1.1858575066,
-0.6847976441,
1.7865355074,
2.1753339919,
-0.1852966936,
1.3503933868,
-0.9060236434,
-0.9512747765,
-0.1355302126,
-0.2557456052,
-0.0928690705,
-0.3823298665,
0.8464337353,
0.9794553217,
0.7333076751,
1.0113255761,
0.2090476125,
-0.0039091258,
-0.014954707,
-0.5011422929,
-0.1361756698,
1.5079406366,
-0.130033193,
0.577448082,
-0.0799435282,
0.3488312101,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007035136],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2077418466,
-1.4305709885,
-0.3470511082,
-0.287448117,
-1.0398486303,
-0.3797666656,
0.2095904741,
-0.180956841,
-0.5546341347,
0.3014049731,
-0.6743061317,
-0.6652914033,
-1.151502949,
0.4282564887,
0.4898411356,
-2.1752724995,
0.8354378364,
0.408650207,
-1.0627540948,
0.5692848097,
-0.2019591086,
-1.4078305765,
-0.659696185,
0.2304554649,
0.0956160178,
2.9981446078,
-0.4582710273,
0.2434342429,
1.637970492],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002207458],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4245520306,
0.2758771509,
1.5027482495,
-0.1104198252,
0.0879641322,
-0.0629690214,
0.2475292361,
-0.0437666465,
1.3955174703,
-0.7138653024,
1.7889198579,
-2.6925256246,
-0.0132981968,
1.7724703469,
0.1439906036,
-0.1031549093,
0.24137582,
1.3159907005,
0.9462930492,
-0.1189968318,
-0.3689889466,
-0.5628856975,
-0.0905891518,
-0.2329864743,
0.3864774471,
-1.5393748043,
-0.4813400191,
-0.5492889971,
-0.2652078556],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0014317334],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0319329487,
0.1264372513,
-1.0437181442,
0.2923858393,
0.3608334877,
-0.6119818128,
0.1938984492,
-0.2099878652,
0.3170567787,
-0.3551339777,
-0.3031340484,
0.5870196416,
0.8223798843,
-1.0002475339,
0.1691259453,
0.2188360471,
0.5831531804,
-0.5898707109,
-0.0629387075,
-0.1522963666,
-0.4788721641,
-1.1923929091,
0.6094657383,
0.9527504441,
-0.4806585202,
0.3510934809,
-0.1371299215,
-0.0807933025,
-1.4765548991],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0018418431],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3073446727,
0.1544772679,
0.41759799,
-1.7742706124,
-0.5418586314,
-0.5944636156,
-0.0625792834,
0.2792984156,
0.0398868079,
-0.8319172634,
-1.5356838645,
0.7618506752,
0.9614330872,
-0.2676873939,
-0.8273601058,
-2.5131757674,
0.1670765303,
1.5394518074,
-0.4129614451,
-0.6471698637,
-0.4268005761,
-0.1712233423,
-0.1699327922,
-0.2021021315,
-0.2084289988,
-1.6721178058,
0.8873602755,
0.5510723994,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00010865927],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7157409631,
-0.7156206041,
0.3227357838,
-1.0262130893,
-1.140356443,
-0.2853770928,
-0.9622994491,
0.0965381383,
-1.7132898518,
1.4344415032,
1.3395379513,
-0.8521042077,
-1.1898529445,
0.2476743151,
0.288174017,
-0.5510571473,
0.7963326767,
0.167276819,
-0.4723916157,
-0.6067180866,
-0.1966193304,
-0.1316261942,
0.1810110449,
0.256159293,
0.4022532392,
-0.4148046645,
0.0766706551,
0.0273135144,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00081402063],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1725786663,
0.6127690685,
-0.116658669,
-0.5274524269,
0.2773065422,
-0.4416665792,
0.4453366809,
0.3457775728,
-0.4363145722,
-0.4179580591,
0.4019300581,
0.9455767616,
0.1576984914,
0.611279617,
-1.1963288426,
0.2824222531,
-0.63082486,
-0.2263170004,
0.3098877497,
-0.1265523832,
-0.239832322,
-0.7162996324,
0.1693525059,
-0.6800099087,
-0.871160745,
0.3050094799,
0.2876751108,
0.0524111615,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00054225326],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.642869375,
-0.5738407087,
0.5179247823,
-0.6111583807,
-0.9149242782,
0.1908412929,
-1.0303519264,
0.2648014036,
-0.4162773661,
0.6829221434,
1.0714601448,
-0.6541389542,
-1.0284934978,
0.0251953021,
0.9051424608,
1.7197956537,
0.0476498355,
-0.6191136417,
0.3487747355,
0.0442510986,
0.5990109092,
1.524986763,
-0.205368152,
-0.4895717992,
0.615943536,
-0.0299844331,
0.0876918908,
0.0390416866,
0.2056731977],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045371056],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0221064029,
-0.0330383687,
-0.726959454,
0.1483104307,
0.1116229356,
-0.5109812604,
0.1193538581,
-0.1743432324,
0.1402560774,
0.1997834222,
0.8084334408,
1.4557929758,
0.8946501649,
0.2959148088,
-0.8118235024,
0.1546838397,
-0.7941066463,
-0.4255137597,
0.6838922296,
-0.1950920233,
-0.3452266946,
-0.8172745748,
0.4919226048,
-0.5328402821,
-0.4820199606,
0.4036644577,
-0.173730092,
-0.2157432372,
-1.344792593],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006635785],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4590187995,
0.4093292931,
1.4246696891,
-0.9568436421,
-0.1093142099,
-0.5934260905,
0.5245670268,
-0.0709989247,
-0.0750262397,
-0.2346963487,
1.3573714208,
0.0320059642,
-1.1584597524,
0.1196758127,
0.1160669425,
0.7070154175,
-0.9159294163,
0.2311146571,
-0.3326585803,
0.0911973804,
-0.163933436,
-0.3844992361,
-0.4148539229,
0.9284873035,
0.1144541936,
1.5897027612,
-0.261629933,
-0.3968392777,
-0.481552559],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.000620991],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5221451614,
-0.1392268453,
0.9165078466,
1.0267352166,
-0.8735926881,
-0.0279537017,
-0.5465091429,
0.2224434562,
0.9138178146,
-0.1873534964,
-0.2824205924,
0.0815955707,
-1.317118482,
-0.0431901541,
0.5708350418,
-0.3533025116,
0.3379215308,
-0.6088845402,
-0.9562227465,
-0.2914083937,
-0.0043933009,
0.1606152001,
0.1641239544,
0.9683928563,
0.4329237382,
-0.8470916392,
0.1846982794,
0.139350142,
0.2013595924],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005052686],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3149984466,
0.7400193087,
0.9295846944,
-0.0633609791,
-0.0883590692,
-0.6871744539,
0.583289513,
-0.0433922486,
-0.1962958931,
0.0033634072,
-0.3556311362,
-0.057171414,
0.0092260768,
0.0852203703,
0.9425804862,
0.1958588086,
-0.4508428266,
-0.4154929163,
-0.0206052548,
0.2862192201,
-0.361700751,
-0.878499027,
-0.0138565386,
0.598066868,
-0.2672945858,
0.157603327,
0.9178542024,
0.5674413375,
-0.3817077872],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005816519],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.5049237538,
1.9348028688,
-3.4217603263,
2.2165702982,
-0.6545314621,
-1.9004826608,
-1.6786857948,
0.538005094,
-2.7229102356,
-5.2651937706,
3.5041640092,
-5.4661762734,
0.6895482354,
-8.7252910394,
2.0267954749,
-5.4717043649,
-4.9123808999,
-1.6131229742,
3.8021575345,
1.3881833555,
1.0676424817,
0.2820077541,
-0.307598092,
-0.4849803366,
0.950733589,
1.5118006212,
1.6385274917,
1.0724550854,
0.7959132214],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.9873102],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-3.1424923572,
-5.4034378291,
-1.6274744373,
0.714394297,
5.4912427999,
-4.2695325831,
-2.7635934796,
0.6403967284,
0.1095678155,
-0.2568448937,
-0.1596547204,
0.5067433876,
-1.4423308892,
2.1388449731,
-0.8028317857,
0.0476056237,
-0.6796229814,
0.7607551053,
-0.618686982,
2.7875127252,
1.7316941392,
0.3639147944,
0.0375370061,
0.6205017348,
-2.8675619009,
-0.6601960736,
0.7292322653,
-3.6317842111,
-0.6326576507],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0006915629],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1900184624,
0.8694153578,
-0.8487828146,
-0.3858225996,
0.7469829716,
-0.2981372515,
0.451422334,
0.2419795666,
-0.2773049529,
-0.5461500248,
0.221944444,
0.5285575285,
0.6780931631,
-0.5724392067,
0.0249440503,
0.6130751813,
-0.0315547648,
1.6862697156,
0.5378406987,
-0.0880151612,
0.441654744,
1.35376671,
-0.4254428484,
-2.0343267155,
-0.3696944514,
-0.2245783223,
0.0127076439,
0.3032522999,
-0.6781062666],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00075370073],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.759485486,
-2.150374716,
2.1767662244,
0.8497609583,
1.9647603826,
-0.0194177486,
-1.3506036326,
0.1581179963,
1.5544266117,
0.2482039863,
0.7527234659,
0.5038611041,
-1.5790529558,
-1.2850340917,
-1.5826563515,
-0.8131400541,
-0.0077377366,
-0.4909822641,
-0.9025933036,
-0.4958984967,
-0.212733231,
0.721115886,
-0.7580594268,
-0.3856280605,
0.5858614834,
-0.7699861432,
-1.6854906823,
0.4039033963,
0.4567298732],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00029602647],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7070331109,
-0.8058137173,
0.3757244224,
0.6749503496,
0.8972237833,
0.5794549745,
0.525636595,
-0.3580444492,
0.3647220351,
0.6118824151,
-0.2873379764,
-0.1310683874,
0.2134625593,
-0.3713744469,
0.6954744643,
0.5711293491,
-1.6339658201,
1.7025641964,
1.2939436086,
-0.4323802886,
0.0930319571,
1.440516024,
-0.8270806118,
-2.3248971648,
-1.4261838409,
-1.0203605143,
-0.0482947028,
-0.3920264563,
1.3354038084],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002052486],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7047430458,
0.3370672765,
0.1788197586,
-0.850097827,
1.1591215223,
-1.3369737041,
1.2166799877,
-0.4969100776,
0.0738137137,
-0.9056654107,
-0.3782121381,
0.0174092397,
0.5193636388,
-1.3845489014,
-0.1575544255,
0.5500849428,
-0.304360015,
0.4681016947,
-2.0735322343,
-0.1275252598,
0.2054664626,
1.0652157027,
-0.697264016,
-0.0164651792,
1.2830745129,
-0.6336534056,
-0.2932401232,
0.412247594,
0.4037751396],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011404455],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7815937358,
0.4787218502,
-0.5317536406,
0.8206803802,
-2.3666113951,
1.1869086147,
2.3302970749,
0.4355008181,
-0.8719848708,
-0.6607770258,
0.968015326,
0.5544122222,
-0.8127091657,
1.1555379131,
-0.3132159398,
-0.4651931849,
0.5487939693,
0.0989269351,
0.5338943919,
-0.1134269786,
0.3087856222,
1.0002071198,
0.9758813141,
0.3801002016,
-0.7140668039,
-0.6595565448,
0.8526800761,
-0.1419327492,
1.7890904543],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0007368624],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0911121155,
-0.3496770522,
-0.3997530955,
-2.7295094989,
1.0573227725,
3.185493945,
-1.6594262976,
-1.427325797,
-2.254477701,
0.0393845914,
-0.3712521616,
-0.7848539966,
-0.1662392762,
0.2128088918,
-0.3690501604,
-0.2872982403,
0.3783259331,
-0.3420559773,
-1.5045513989,
0.4734383041,
-2.1029885201,
-0.2334122785,
-0.4990757693,
1.1209246534,
3.2573927386,
-0.0128765158,
-0.0296143798,
0.4619016104,
0.1317278233],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00020352006],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0144717008,
0.0268101834,
0.0409793446,
-1.2992167346,
0.2341504132,
-0.4974954313,
0.5761844179,
-0.458469284,
-1.2235958313,
0.824214205,
0.7951172579,
-0.0503831298,
0.9778895822,
-0.3158960052,
-0.6872784759,
0.9530677576,
-0.4129343871,
-0.665330051,
1.4261843021,
0.1525727766,
0.8318446899,
2.6538524616,
-0.2904926221,
-0.4173170569,
-1.4346822928,
-0.1586003815,
-0.4401525863,
0.04610008,
0.3113196364],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00048407912],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.6596015239,
0.620427168,
1.0301594206,
0.1927204417,
0.1149403326,
0.0119253871,
0.389118285,
0.5385063976,
-0.7688767426,
-0.8605150814,
0.9677875179,
1.1102077628,
-0.3040486163,
0.4654411444,
-1.5746864115,
-0.3574026766,
0.0505080243,
-0.4659870544,
-0.8204496832,
-0.258965329,
0.1103940323,
0.1387907874,
-0.4423286021,
0.3591964922,
1.2434926156,
-0.88026822,
-0.1892693358,
-0.113050251,
0.1648774022],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00041028857],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-5.6955825004,
6.0217777045,
-5.9327390507,
-0.7099065856,
-4.8312144236,
-1.7521976658,
-4.9613415121,
6.8768465235,
0.8601813302,
2.4251031918,
-1.4254299861,
3.6485847371,
0.5774488085,
5.2254314072,
-0.6130722124,
1.7055874009,
2.7124593242,
1.1407052062,
-0.6990875022,
1.0524002683,
0.7398866673,
1.0024868147,
1.9587918987,
-0.1094856914,
1.4726556797,
-0.181609756,
1.3630435842,
1.600872876,
0.0203055874],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [3.3676624e-06],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0281920222,
-0.2082147132,
-1.7368736786,
-0.6087597098,
1.8288514805,
2.4498858104,
-0.3406211516,
0.6111835053,
0.5298794294,
-0.0596394061,
0.0749417221,
0.3426110931,
-0.1403799718,
0.7119665863,
1.3894001174,
-0.4237296498,
-0.6787283798,
-0.0440559625,
-0.4120965465,
-0.2358293932,
0.3713281863,
1.1579998898,
0.0464602909,
1.2062547068,
0.7085146646,
-0.8231214529,
0.0625215954,
-0.180027084,
-1.4715524921],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00047558546],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1079023539,
0.2015927522,
1.0765907644,
-1.3703185458,
-0.4514044205,
-0.5662502973,
-0.0285058178,
-0.6624903036,
0.8764639842,
-1.5106369147,
0.2439317057,
0.6605276103,
-0.4148158834,
0.3365934574,
1.6618229479,
-0.3503440352,
-0.2149022178,
-0.6619118203,
-1.2265568968,
-0.4517409433,
0.8793014279,
-0.9049769488,
-0.359154532,
0.5892012748,
2.6766119838,
-1.796665238,
0.2831708705,
0.4769409884,
-0.3333128674],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00083473325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1033812061,
-0.9590837281,
-0.8892305688,
-1.4423480102,
-0.1235260008,
1.1391701325,
-1.1605619438,
0.3587152528,
-1.2673159354,
1.4504953408,
0.6081579453,
-0.380486284,
-0.0961801623,
-0.0620074823,
-0.0233679092,
-1.1917142663,
0.9729630126,
-0.7927769211,
-0.7874696868,
-0.6962588652,
-0.1382999466,
0.3696221171,
0.4714098598,
-1.6446423761,
-0.5928560812,
-0.1580853491,
0.1110262744,
-0.2263623155,
-0.6700716551],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00034978986],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1035348221,
0.6936420139,
-0.6348264961,
-0.0070198332,
0.1722254479,
-1.0985121693,
0.4931935281,
0.1022511668,
-0.1252188143,
-0.9848490923,
-0.661648672,
-0.2123106944,
-0.2397978859,
-0.4687892439,
0.7317489816,
0.2373648502,
0.6910887142,
0.89992248,
-0.3175745618,
-0.3235140262,
0.4534654763,
1.2721906146,
-0.1131939593,
-0.061989662,
-0.5203210351,
-0.313221833,
-0.1816991832,
-0.1372486477,
-0.0767984822],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.001232028],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.1392446948,
-0.914017275,
-0.6418162763,
-1.1818257572,
-0.9252825163,
-0.4021163625,
-0.9739714091,
-0.0264220729,
-1.1433454532,
1.5898338013,
0.2177451413,
-0.942398131,
-1.08781741,
0.0904253557,
-0.7728883863,
-0.3794418238,
0.3389203067,
0.6493950305,
0.2721025585,
-0.7025771385,
-0.2116605857,
-0.007608306,
0.3652950113,
-0.7661640661,
-0.4051398555,
-0.3084058636,
-0.0065450417,
-0.2086140061,
-0.3247709031],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00056034327],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0557486709,
0.6303711367,
-0.1491142126,
-0.6446829513,
0.7060192917,
-0.3253167177,
0.8349555464,
-0.1099446326,
0.1048464437,
-0.1052383173,
-1.6394579282,
0.1040315051,
0.7403759557,
-0.1188933687,
-0.3629079819,
0.116331348,
-0.8737620908,
-0.6666913937,
0.2554598129,
0.1939323729,
-0.4842192763,
-1.0173442388,
-0.0776432803,
-1.7807108559,
-0.5549038348,
0.4369017455,
0.8839080495,
0.4658741139,
-0.3778135637],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00038221478],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7158403442,
-0.4886162551,
-1.3101771292,
0.5425794378,
-0.0171889543,
-0.9546471564,
0.6197423354,
-0.4084280112,
0.3717787745,
-0.573664609,
-0.1991122257,
0.4982849967,
0.8858764557,
-0.8251441211,
0.9794873147,
0.182373834,
0.4464031113,
0.4924597455,
-0.7315126481,
0.6652518258,
0.5559779377,
0.883278157,
-0.5407025767,
-0.1909805084,
0.3057150709,
-0.2711354047,
-0.1400110778,
0.0920819382,
1.4157530679],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0009741783],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3826062332,
0.2782686254,
1.0357579477,
-0.3393872394,
0.0694620559,
-0.3529489523,
0.4533084792,
0.0493425306,
0.085313656,
-0.589784427,
-1.0179569888,
0.1830731227,
0.519740815,
-0.2967102214,
0.1477624526,
0.4181940595,
-0.7494515025,
-0.1903936297,
-0.2000443584,
0.347021274,
-0.2052021274,
-0.6050946046,
0.1755486745,
-0.2207717451,
-0.5285615889,
0.0444291122,
0.7693652831,
0.6579092387,
0.5678228029],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00031530857],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0036733697,
0.6906667241,
-0.1799968912,
-0.3602583851,
0.7005031772,
-1.1111698113,
1.0167724643,
-0.3062758409,
-0.2465507701,
-1.0820230332,
-0.4549552907,
0.0610410952,
0.5767237828,
-1.0513525719,
0.2868503205,
0.1964510171,
0.3361677569,
0.7599484571,
-0.8185272965,
-0.1486613144,
0.4828984631,
1.592394208,
-0.3914727331,
-0.0222455358,
-1.0083236907,
-0.5686972655,
0.5793820473,
0.8291612292,
-0.6326576507],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008485913],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.3328440723,
1.1831509578,
-0.1284114394,
0.3460234489,
1.0948832495,
-1.2595697361,
1.1792351591,
-0.1278438305,
-1.1661469351,
-1.8341874978,
2.3771123796,
-0.0969267097,
-0.5281707895,
-3.3367309103,
-0.3123882508,
1.4818978944,
2.6038036134,
2.2408424926,
-1.4449706576,
-0.0467216553,
-0.0764081599,
-0.3083395072,
-0.6845480603,
0.3183086221,
0.8074809636,
-0.9877492905,
0.2406200209,
0.5656539441,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0035923421],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.758620746,
-0.6158718947,
0.4103946865,
-1.2906247459,
0.5513206773,
-0.698183014,
0.5156641841,
-0.1177590176,
-1.2063818664,
-0.0042700379,
-0.910607421,
-1.5540610373,
-0.9385773992,
0.0572243996,
0.0866163408,
1.1019953412,
0.1515590719,
-1.8520834784,
-0.3827649509,
-0.2973054319,
0.3295384859,
1.0899631427,
0.9768936361,
-0.7834840479,
1.2929582101,
-0.3086890118,
0.1513480247,
-0.0769290951,
0.7049700902],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00045371056],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1547883008,
0.5482291402,
-0.5127067156,
-0.1760042899,
1.0336739219,
-0.2271899498,
-0.3721188898,
-1.4212713173,
0.1067577756,
-0.5454568658,
-1.2249974395,
-0.1923891417,
-0.1381395957,
-0.6776378874,
0.225973102,
0.444971113,
0.5080780062,
-0.0102082479,
0.4735276129,
-0.5158262866,
1.5751848209,
-2.406443115,
-1.2794695091,
-0.166666167,
0.298995619,
0.6077420709,
0.5915549833,
1.0337253678,
-1.529552268],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012863576],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0540973415,
-0.1339829145,
-2.1389315518,
-0.521862896,
2.1566773207,
2.2644952706,
0.0563590698,
0.4733187273,
-0.0008425918,
0.1755921291,
-0.0638599357,
0.2258455079,
-0.3669466457,
0.8201662408,
0.0842989749,
-0.8156735112,
-0.1882350143,
-1.0423830894,
0.0017670577,
-0.2278370892,
0.1303138741,
0.4943545671,
0.0289403774,
1.3033001442,
0.7969669591,
1.5162306116,
-0.2338545939,
-0.2798302604,
-1.6081295298],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008663237],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.2072431631,
0.314636964,
0.3005546964,
-0.671550258,
-0.3457204109,
0.4809293084,
-2.0119919994,
-3.1960044207,
-0.3816216897,
0.7862978024,
0.4527249241,
1.1480282336,
0.6407594441,
0.2456623487,
0.1216731562,
-1.6031802268,
0.0557189782,
1.9457707364,
0.4238830686,
-1.6359068526,
4.5045913213,
-3.4426464249,
-0.671370554,
-0.8847272664,
-0.375845371,
-0.2020494368,
1.1325438355,
1.048695096,
0.0180574537],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [7.393956e-05],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.1966842524,
0.0492021515,
-0.0457802433,
-1.4583346496,
0.2028477121,
-0.4388913084,
0.335452385,
-0.1203694498,
-1.4275852062,
0.3287584062,
0.9985053176,
0.0891931165,
0.754037859,
-0.0555325765,
-0.9481129907,
1.2291476818,
-0.3116989063,
-0.8632256738,
0.596678495,
0.1155655582,
0.7672729147,
2.0915925381,
-0.3563427656,
1.3879475113,
0.0102348514,
-0.1282520157,
-0.0142612527,
-0.0387992396,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0012035072],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.8317350895,
3.4373295515,
-1.4856319968,
-1.7344634924,
0.6882754316,
0.9093301314,
-0.0442329788,
-6.2999850958,
4.6852792956,
7.3331463152,
1.0116046862,
0.3982056253,
-0.1486067763,
-2.2492697811,
0.2386129395,
-1.1163296245,
-1.6958985453,
0.675492674,
-0.0552864777,
2.5704135767,
7.5762998793,
-1.4823474248,
1.2020113644,
-0.5298186372,
0.5710553333,
-0.691646312,
3.0477274297,
-1.5191108794,
-1.6016250569],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00018787384],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0621530118,
0.2536757007,
0.6287297359,
-0.4438426229,
-0.0987131449,
-0.290788598,
0.4638282812,
-0.0271284789,
0.109078361,
-0.6461184934,
-0.435364947,
0.7547832119,
1.1506223132,
-0.4074027731,
-0.0497924442,
0.361644223,
-0.6558802877,
-0.6775148778,
-0.5070639223,
0.0447457669,
-0.1915603965,
-0.6164233741,
0.6645612932,
1.9177102079,
-1.5872499432,
0.1970893746,
-0.0334093718,
0.0881635922,
0.5244638463],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003104508],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6790463949,
-0.2120837747,
0.0092118583,
-0.4317909168,
-0.5043182857,
-0.6192833237,
-0.3818506317,
-0.1792826663,
-0.7915398284,
0.1143345874,
-0.1462309492,
-0.3552600317,
1.3866029879,
-1.5973430378,
0.980975847,
1.9130153699,
0.8925279286,
-0.943179049,
0.5948697395,
0.3641826797,
0.0688566658,
0.0370962019,
-0.1798136746,
-0.2933515136,
0.8733066068,
-0.5347767356,
0.0638018338,
0.1668537453,
0.476070978],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00044187903],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1054322647,
0.1341389302,
0.788791819,
-0.7677904394,
0.0212889936,
-0.0427672142,
0.5732265116,
-1.2521022742,
-0.21606845,
0.9246387781,
-0.8370744278,
-0.5782436083,
-0.73486118,
-0.7882964601,
-0.9582261122,
-2.5264176561,
0.0519392179,
0.3777522571,
-1.9485488529,
-0.9258111578,
0.4457727942,
-0.6255284817,
0.2822376275,
0.0628790422,
-2.3009132631,
-0.1249663536,
-1.2029574312,
-1.4085617927,
0.0901858743],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011000037],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.2477118786,
-1.0255984452,
0.7276204263,
0.7481579375,
-1.0719816914,
0.9876515975,
-0.7049915765,
0.4586904142,
1.3683644141,
-0.3659958579,
0.2003078046,
0.6903612204,
-1.3579448307,
-0.4626171749,
-1.4748197769,
-0.2293777181,
0.2906406866,
0.053822647,
0.3375170765,
0.5542487953,
0.2073133481,
0.1266959112,
-0.5485094444,
-0.402280671,
0.2630378142,
1.1762349324,
-0.0411044505,
0.200832405,
1.3978689866],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00061646104],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-8.5642596781,
-3.1030502863,
-5.0495481556,
-0.8528336937,
-2.3840985596,
0.3636100153,
-1.2658948982,
2.4897039348,
3.1511163825,
0.8367859018,
0.2057844025,
2.5385645092,
1.1632366935,
1.5247119411,
2.0562791232,
2.2113571309,
0.4161783542,
-0.7168696618,
-0.9306837126,
-8.9496977342,
-2.0688998777,
1.1513229642,
-1.5724488602,
-0.8392989081,
1.4140362335,
-0.8762308541,
-8.0452196501,
3.7355670191,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [2.7120113e-06],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5570196889,
-0.3360074727,
0.6987948107,
0.2134783304,
-0.7747342408,
0.1433065938,
-0.6973122665,
0.1667643445,
2.1551291808,
-0.5614033911,
1.3398952586,
-1.9329999818,
0.477456653,
1.3229348019,
-1.7518170151,
0.2203541698,
0.6506659292,
0.4751812351,
0.833027207,
-0.0988118767,
-0.469889454,
-0.9411575614,
0.0298349542,
-0.0175897106,
0.146977085,
1.8694229071,
-0.2018585218,
0.0104162611,
0.5251881444],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00073826313],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.1546443143,
0.1645608646,
0.9133112694,
-0.6694745012,
-0.4369815929,
0.4833502615,
-0.747399976,
1.0393170216,
0.2221805792,
-1.0690099993,
0.8597364703,
1.5327896526,
-0.0173384979,
0.0742356379,
-1.3343153791,
-0.0624825366,
0.5421552747,
-1.1218458611,
-0.7554112057,
-0.8270315381,
0.0178930909,
-0.0412155081,
-0.6552992777,
-0.3107303568,
-0.762623479,
1.6280433727,
-0.968552029,
-0.8860084101,
0.3658928677],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00021120906],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1788234328,
0.779564672,
-0.2351725264,
-0.426003404,
1.0496640584,
-0.7120157375,
1.3676073141,
-0.7416286893,
0.7759921457,
0.4442465221,
-0.8441025805,
-1.0160097177,
-0.4194203901,
-1.7034582243,
0.9994657153,
-0.0862325637,
-0.0312729234,
1.1037862601,
0.1168682672,
0.5920849456,
0.0162638254,
1.3130141973,
-0.6264462286,
-1.2499085384,
-0.5877295184,
-0.3840731602,
0.1892928121,
-0.7764260324,
-0.3772597224],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00043717027],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0200272923,
0.1667124485,
-0.9161198309,
0.3688777276,
0.2179787504,
-0.8612988283,
0.2503998104,
-0.286150355,
0.2029347906,
-0.365406626,
0.1442028413,
1.053589129,
1.3979469554,
-1.1096464611,
0.0035871181,
0.1046169258,
0.6616359379,
-0.7509746183,
-0.1888982197,
-0.1059898233,
-0.4353169158,
-1.0378548701,
0.6784151162,
1.8165974876,
-0.5247498293,
0.2786044686,
-0.1335996146,
-0.0598224517,
-1.1314557747],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0018209219],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0056864267,
0.4874072632,
-1.0381662508,
-1.1733312042,
2.3511071673,
2.5169231747,
0.5115068443,
0.589319625,
0.1385339832,
-0.2534765636,
0.2581727308,
-0.2464418103,
-0.4571445393,
-1.0451956466,
0.2134214212,
0.1249811911,
0.2728227118,
-0.4749524666,
-0.5317167028,
0.3284165564,
-0.5782686921,
-1.2708152859,
0.1857416784,
0.9769588419,
-0.7454091009,
0.2907979584,
0.4671339818,
-0.2874951031,
-0.0247919714],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0003581345],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7759353112,
-1.1408497065,
-0.8043904484,
-0.2894910367,
-0.6106518588,
0.1361531298,
-0.3377152528,
-0.0174226218,
-0.390859297,
0.7829377217,
0.2642788319,
0.4874729474,
0.2756819118,
0.1531586057,
-0.4567766144,
-1.0940847545,
-0.6143941004,
2.0193528209,
-0.6164041006,
0.0783485014,
-0.2443137373,
-0.9171336151,
0.0523448005,
0.5888053033,
-0.9015637568,
0.9864462692,
-0.2420676216,
-0.005768662,
1.389718547],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002477169],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0530901712,
0.6297657922,
-0.3082255161,
0.0294941799,
0.4430626836,
-0.8876173595,
0.9194835145,
-0.283791466,
1.1838167992,
-1.0425424145,
0.2328057442,
-3.0142221404,
1.2495512816,
0.69264928,
-0.0033153376,
0.0693664183,
1.2891025306,
1.3052567866,
-0.4474705009,
0.1319698744,
0.1828792375,
1.043937056,
-0.0814943952,
-0.4365392186,
-0.5952254429,
-0.3534521198,
0.8161656509,
0.5989956105,
0.6270312936],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00055384636],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-2.2754720752,
-1.0251562993,
-0.0867459158,
-1.2658395376,
-0.5291980838,
0.872973703,
0.0618575229,
-3.8102095483,
0.0247735941,
0.2514194061,
-1.6570866874,
-0.7429646824,
0.2766709285,
-0.9363851623,
-0.6163313792,
2.1271754758,
-0.0688584644,
-2.0040229489,
1.1844894334,
-4.7235243435,
3.3601130321,
-2.855683503,
-0.3789047871,
-1.5874742203,
1.4552922407,
-0.55736256,
4.8897509922,
-2.084429255,
1.6946940364],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00032049417],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1996981994,
0.62241811,
0.8180377014,
-0.0787243768,
0.1738342757,
-0.1359865171,
0.4191164137,
0.2045122127,
-0.5437622828,
-0.323067179,
1.5955311259,
0.433618843,
-0.459812545,
-0.1058778154,
0.5354925238,
0.3394504728,
0.0742043759,
-0.0217421626,
-0.1944820508,
0.080993417,
-0.2646392261,
-0.7140738407,
0.0199283074,
-0.0867501002,
-0.5255295063,
0.1774235315,
0.6172440771,
0.2732987425,
-0.9996350273],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013484359],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.0932906169,
0.2837744937,
-0.061094265,
0.1844157883,
0.6458389212,
-1.1918676805,
0.5679010895,
-0.2167815671,
0.7874977765,
-1.0666403041,
2.5711122723,
-1.9158463135,
1.3795789937,
0.8197674859,
-0.8470900423,
0.0700201382,
1.3812712792,
1.6433140516,
-0.3931668025,
0.0897177655,
0.4270639312,
1.3887640193,
0.1331371901,
0.6720600506,
-0.9049207853,
-0.5181515354,
0.1941193083,
0.4319941464,
0.5199129702],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0010192394],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.0991458877,
0.5813808183,
-0.3863062246,
-0.6286010501,
0.9409158118,
-0.8930618598,
1.1773066606,
-0.3588963424,
0.516297208,
-0.7499991475,
1.4520675555,
-2.1421946093,
1.121653956,
2.4244683006,
-1.6076080593,
-0.3984026047,
0.0223129026,
0.6079870236,
0.1418399592,
-0.2951257448,
0.1466437465,
0.7695253563,
-0.5621386368,
-0.5982862573,
0.3263638155,
0.2640771555,
-0.1213806055,
0.0008224467,
-0.2980975867],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0020678043],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.683869792,
-0.4577585759,
1.1643304509,
-0.8111012587,
0.1568265062,
0.9502833164,
0.2261592938,
0.4435614349,
0.3235317635,
-1.0730720843,
-0.3405987189,
0.3334875486,
-0.4070390944,
-0.4386559284,
-1.2832400486,
0.4049228521,
-0.5745220781,
0.1064444473,
0.4595438673,
0.6001505161,
-0.0700121981,
-0.663682672,
0.274552061,
-2.1452599666,
0.5910584373,
1.9583331979,
-0.2250586866,
0.1680868389,
1.1413662413],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002026856],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.5759067199,
-0.5169497164,
-0.0706098235,
-0.3342933961,
-0.7481987154,
-0.9056092315,
0.0247436929,
-0.2970339025,
-0.9397568542,
0.5801824757,
-0.5071046162,
-0.2972985509,
0.0159355547,
0.3381229322,
0.8140041432,
-1.6086597639,
0.0860472688,
0.943216337,
-0.8887152522,
-0.2757355074,
-0.5002971637,
-1.2580219238,
-0.112523346,
0.7006113311,
0.495370422,
2.0558130956,
-0.2597292384,
0.0900075526,
1.0244294839],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033402443],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7003840853,
-0.3267466532,
-0.400730638,
-0.8328648445,
0.1103662963,
0.0537941594,
-0.1092876626,
-0.1074425704,
-1.2273820208,
0.6733268005,
0.1634201774,
0.045931832,
1.1850517909,
0.0124876172,
-0.168297578,
1.7882067545,
-0.6299657406,
-1.1052659602,
2.1295594424,
0.4041027777,
-0.3054900753,
-1.2639230847,
-0.2643147996,
-2.3399764883,
1.0663160636,
-0.9278334034,
-0.0738148957,
0.0063653331,
0.6587435452],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00022429228],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8620054441,
-0.9547019241,
0.4572266565,
-1.5382606372,
-0.0549126099,
-0.9836856189,
-0.4353126901,
0.3131861479,
-2.8175675146,
0.5882447762,
0.6587568897,
-0.1922701238,
0.6014310425,
0.3321790055,
-1.0197476369,
-0.0248424018,
0.2360134752,
0.2808760557,
-0.0853767493,
0.2319681534,
-0.3187132355,
-1.6987264779,
0.3936638088,
-0.148037973,
-0.1292021375,
-1.4088565564,
-0.1434659837,
-0.5619908971,
0.8370443606],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00023245811],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-1.3343680863,
-5.4113644786,
-3.2444749287,
0.9790459384,
-1.5332212612,
0.3269942688,
2.8965001109,
-0.8123581453,
-1.3142710243,
-0.0583773829,
0.2346538665,
0.6410423237,
0.8756562241,
1.141469489,
-0.8911719275,
-1.6238094805,
-0.2482137329,
2.0776635647,
-1.1418332943,
6.1184574424,
1.7940632475,
-2.057928141,
-3.8761718185,
0.6235110718,
-1.1979792086,
1.102932282,
-1.4375114626,
1.1338504441,
2.439410505],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00013360381],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.7385775392,
0.7734884379,
-0.2726435797,
-1.4699132083,
-0.1413859126,
-0.4392011321,
0.2181535685,
0.7062448742,
0.4577904571,
-1.1434119195,
0.7374800062,
1.6679684081,
0.1814862224,
0.8249069597,
-0.6739875821,
-0.8469624167,
0.0387013968,
-0.0376849044,
0.2213355491,
-0.3075644055,
0.2613016634,
1.0200181274,
-0.0024971154,
-0.4788138264,
0.00625609,
-1.6200561773,
0.5374735682,
0.4196548045,
0.2225635834],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005823672],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.4855102193,
0.097572042,
0.8386713784,
0.7894000761,
0.5262358094,
-0.728877395,
0.2460078266,
0.0754412258,
-0.4013977025,
-0.0039844689,
-0.0923228257,
-0.1914964328,
-0.6157510813,
0.5321630936,
1.4644995621,
-0.7968934564,
0.289649824,
-0.3860593335,
-0.1024347989,
0.4663153178,
0.3316823289,
0.7691443474,
0.2955331801,
0.6443787007,
-0.5240502396,
-0.633620381,
0.9387366816,
0.7768546468,
0.4509880849],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00033175945],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.6985697124,
-0.4524727624,
0.7492468359,
-0.5384239341,
-1.0827650475,
-0.1613092868,
-1.0339068348,
0.0261100164,
-0.248003691,
0.503972257,
-0.6220227495,
-0.3697496081,
1.2806051529,
-0.8207987774,
1.3775502027,
2.0216272197,
-0.3084699385,
-0.6589181551,
0.352727122,
0.2159258362,
0.5661301733,
1.6449592742,
-0.2513427009,
-0.0926456461,
0.7874342306,
-0.0285299949,
0.147529258,
0.1031243198,
-0.3252693381],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00030437112],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0458395446,
0.2492453605,
-1.5260449285,
0.2565118717,
0.5719539347,
-1.3712755189,
0.7420512362,
-0.5445414743,
-0.2168228507,
-0.2900989798,
-0.149280992,
0.5670323544,
1.2286791653,
-0.7817045441,
0.2899214422,
0.034176508,
0.6085666316,
-0.315681077,
-0.1783706403,
-0.0773994701,
0.030381681,
0.2722725634,
-0.0374501115,
-0.1940110001,
0.523948437,
1.5079909673,
-0.2597643199,
-0.1494192034,
0.0901858743],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0013128221],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.1684116213,
0.2538055777,
1.5441066269,
0.9826202422,
-0.0386547839,
1.2464864533,
0.4763148982,
-0.0031863883,
0.5146535873,
0.0562812247,
0.4590009189,
1.1674651633,
0.0284641913,
-1.1306693743,
-2.2525287977,
-1.7070151954,
0.6024755174,
-0.6334481062,
2.1326404469,
0.1824322906,
-0.4995015116,
-0.3416484582,
-0.1931637287,
-0.4798007981,
-0.8003830101,
-1.0424510934,
-0.4881662548,
-1.005679161,
0.6093923963],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008148551],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4468046927,
-0.4785686172,
1.1350786145,
1.1584892406,
-1.0595347723,
0.8844197038,
-0.9917191304,
0.5544288526,
1.5253282621,
-0.2607627326,
0.3931852388,
0.82565848,
-1.8692667054,
-0.5371849037,
-2.0380103962,
-0.7226936182,
0.5935992171,
-0.0221378406,
0.0946397934,
-0.2292567519,
0.0574422007,
0.5818637633,
-0.1422061413,
0.3945358725,
0.6986785006,
-0.5000531487,
0.2446911455,
0.1168833534,
0.6187774938],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0005481243],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.7871179945,
-0.5939434359,
-0.0366528475,
-1.267156068,
-0.5367337198,
0.088379621,
-0.765511915,
-0.0694581906,
-1.998508847,
1.4001576552,
0.2509407285,
0.0413239411,
1.9329948138,
-0.4456552121,
-0.2019021126,
0.132860068,
-0.3362898004,
0.8870721795,
0.6696225664,
-0.2481441908,
-0.3258205574,
-0.3696775674,
-0.263555592,
-1.6509572159,
1.1125045057,
-0.300960951,
0.0738780277,
0.0110679899,
-0.1227703777],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00012585521],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.052355506,
-0.7602601059,
-0.3124601687,
-0.5580714587,
-0.6198353331,
0.6635428464,
-1.2171685083,
0.3144529308,
0.2360632058,
0.878209955,
-0.5518803042,
-0.2781328417,
-0.5675947058,
-0.0982688053,
0.1475098349,
-0.3097481612,
-1.0898892231,
2.804466934,
-0.4211447753,
-0.7315488305,
-0.5311840374,
-0.9053830525,
0.5382443229,
-0.68327623,
-1.1848642272,
0.9872236995,
-0.0260721428,
-0.1405966468,
0.0759031399],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.00011596084],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [-0.8464537996,
-0.7608807925,
2.186072883,
-0.1614362994,
-0.4069378894,
0.734079177,
-0.4611705734,
0.4751492626,
1.4952832213,
-0.9349105827,
-0.7654272171,
0.4362793613,
-0.6623354486,
-1.5326388376,
-1.4311992842,
-1.0573215483,
0.9304904478,
-1.2836000946,
-1.079419331,
0.7138847264,
0.2710369668,
1.1943291742,
0.2527110226,
0.3107779567,
0.4219366694,
2.4854295825,
0.1754876037,
-0.2362979978,
0.9979986569],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0002785325],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [1.0046377125,
0.0343666504,
-1.3512533246,
0.4160460291,
0.5910548281,
-0.8187740907,
0.5840864966,
-0.447623496,
1.1193896296,
-0.1156579903,
0.1298919303,
-2.6410683948,
1.1658091033,
2.3607999565,
-0.4265055896,
-0.4862102299,
0.5102253659,
-0.3384745171,
-0.4081285365,
-0.199414607,
0.0151691668,
0.2644673476,
-0.0483547565,
0.9869714364,
0.629627219,
0.8990505678,
-0.3731273846,
-0.2166148809,
0.6374669208],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0011070371],
'time': 1722279178343},
{'anomaly.count': 0,
'in.dense_input': [0.4951101913,
-0.2499369449,
0.4553345161,
0.9242750451,
-0.3643510229,
0.602688482,
-0.3785553207,
0.3170957153,
0.7368986387,
-0.1195106678,
0.4017042912,
0.7371143425,
-1.2229791154,
0.0061993212,
-1.3541149574,
-0.5839052891,
0.1648461272,
-0.1527212037,
0.2456232399,
-0.1432012313,
-0.0383696111,
0.0865420131,
-0.284099885,
-0.5027591867,
1.1117147574,
-0.5666540195,
0.121220185,
0.0667640208,
0.6583281816],
'metadata.dropped': [],
'metadata.elapsed': [4976659, 5674079],
'metadata.last_model': '{"model_name":"api-sample-model","model_sha":"bc85ce596945f876256f41515c7501c399fd97ebcb9ab3dd41bf03f8937b4507"}',
'metadata.partition': 'engine-5d965d96f4-wxk8l',
'metadata.pipeline_version': '800fa3cd-607f-4550-90ec-227d262f8a45',
'out.dense_1': [0.0008533001],
'time': 1722279178343}]
Retrieve assay baseline via curl.
data = {
'workspace_id': workspace_id,
'pipeline_name': pipeline_name,
'limit': 3
}
!curl {wl.api_endpoint}/v1/api/assays/get_baseline \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}' > output.txt
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 777k 100 777k 100 83 844k 90 --:--:-- --:--:-- --:--:-- 844k
Run Assay Interactively
- Endpoint:
/v1/api/assays/run_interactive
A list of assays with the following fields.
Run Assay Interactively Parameters
Field | Type | Description | ||
---|---|---|---|---|
id | Integer | The numerical identifier for the assay. | ||
name | String | The name of the assay. | ||
active | Boolean | Whether the assay is Active or not. | ||
status | String | The status of the assay. Options are: active : the Assay is created and active. created : The assay is created but inactive. | ||
warning_threshold | Float (Required) | Optional warning threshold. | ||
alert_threshold | Float (Required) | Alert threshold. | ||
pipeline_id | String | The numerical identifier the assay will be placed into. | ||
pipeline_name | String | The name of the pipeline | ||
last_run | String | The DateTime for the last time the assay ran. | ||
next_run | String | The DateTime for the next schedule assay run. | ||
run_until | String | The DateTime when the assay will stop running. | ||
updated_at | String | The DateTime when the assay was last updated. | ||
iopath | String | The iopath of the assay in the format `“input | ||
baseline | Baseline | The baseline for the assay. This is determined by how the assay was generated. See Create Assay Parameters for complete values. | ||
window | AssayWindow | Assay window. | ||
model_name | String | The name of the model used for the assay window. | ||
pipeline_name | String | The name of the pipeline for the assay window. | ||
path | String | The iopath of the assay window. | ||
start | String | The DateTime of when to start the assay window. | ||
width | String | The width of the assay window. | ||
workspace_id | String | The width of the assay window. | ||
locations | List[String] | The locations included in the assay. An empty set indicates only the Wallaroo Ops deployment of the pipeline is used. | ||
summarizer | (AssaySummerizer) | The summarizer type for the array aka “advanced settings” in the Wallaroo Dashboard UI. | ||
type | String | Type of summarizer. | ||
bin_mode | String | The binning model type. Values are: Quantile and Equal | ||
aggregation | String | Aggregation type. Values are: Cumulative , Density , and Edges . | ||
metric | String | Metric type. Values are: PSI , MaxDiff (Maximum Difference of Bins), and SumDiff (Sum of the Difference of Bins) | ||
num_bins | *Integer | The number of bins. Recommended values are between 5 and 14. | ||
bin_weights | *List[float] | The weights assigned to the assay bins. | ||
provided_edges | List[float] | The edges used for the assay bins. |
Run Assay Interactively Returns
Field | Type | Description |
---|---|---|
name | String | The name of the assay. |
pipeline_id | Integer | The numerical identifier of the assay. |
pipeline_name | String | The name of the pipeline. |
active | Boolean | Whether the assay is Active or not. |
status | String | The status of the assay. Options are: active : the Assay is created and active. created : The assay is created but inactive. |
baseline | Assay Baseline | The assay baseline as defined in Create Assay |
window | Assay Window | The assay window as defined in Create Assay |
summarizer | Assay Window | The summarizer as defined in Create Assay |
alert_threshold | Float | Alert threshold. |
created_at | String | The DateTime when the assay was created. |
workspace_id | Integer | The numerical identifier of the workspace. |
id | Integer | The numerical identifier of the assay. |
warning_threshold | Float | Warning threshold. |
last_window_start | String | Date and time the last window date range started. |
run_until | String | Date and time the assay will run to. |
last_run | String | Date and time the last window run. |
Run Assay Interactively Returns
An interactive assay is requested based on the previous assays created.
Retrieve interactive assay via Requests.
## Run interactive assay
import datetime
assay_window_end = datetime.datetime.now(datetime.timezone.utc)
# Retrieve the token
headers = wl.auth.auth_header()
endpoint = f"{wl.api_endpoint}/v1/api/assays/run_interactive"
data = {
"name": exampleAssayName,
"id": assay_id,
"pipeline_id": pipeline.id(),
"pipeline_name": pipeline_name,
"active": True,
"status": "created",
"baseline": {
"static": baseline_summary
},
"window": {
"pipeline_name": pipeline_name,
"model_name": example_model_name,
"width": "1 minutes",
"start": assay_start.isoformat(),
"interval": "1 minutes",
"path": "output dense_1 0",
"workspace_id": workspace_id,
"locations": []
},
"summarizer": {
"type": "UnivariateContinuous",
"bin_mode": "Quantile",
"aggregation": "Density",
"metric": "PSI",
"num_bins": 5,
"bin_weights": None,
"bin_width": None,
"provided_edges": None,
"add_outlier_edges": True
},
"warning_threshold": None,
"alert_threshold": 0.25,
"run_until": assay_window_end.isoformat(),
"workspace_id": workspace_id
}
# print(data)
response = requests.post(endpoint, json=data, headers=headers, verify=True)
# print(len(response.json))
print(response.json())
[{'id': None, 'assay_id': 4, 'window_start': '2024-07-29T19:48:46.944191Z', 'analyzed_at': '2024-07-29T19:54:43.286044715Z', 'elapsed_millis': 18, 'pipeline_id': None, 'workspace_id': None, 'workspace_name': None, 'baseline_summary': {'count': 1001, 'min': 1.5199184e-06, 'max': 1.0, 'mean': 0.006598251655689411, 'median': 0.00054195523, 'std': 0.07661715949339488, 'edges': [1.5199184e-06, 0.00026360154, 0.00045093894, 0.0006800592, 0.00096952915, 1.0, None], 'edge_names': ['left_outlier', 'q_20', 'q_40', 'q_60', 'q_80', 'q_100', 'right_outlier'], 'aggregated_values': [0.0, 0.1998001998001998, 0.1998001998001998, 0.2007992007992008, 0.1998001998001998, 0.1998001998001998, 0.0], 'aggregation': 'Density', 'start': None, 'end': None}, 'window_summary': {'count': 1001, 'min': 1.519918441772461e-06, 'max': 1.0, 'mean': 0.0065982516233499475, 'median': 0.0005419552326202393, 'std': 0.07661715908141875, 'edges': [1.5199184e-06, 0.00026360154, 0.00045093894, 0.0006800592, 0.00096952915, 1.0, None], 'edge_names': ['left_outlier', 'e_2.64e-4', 'e_4.51e-4', 'e_6.80e-4', 'e_9.70e-4', 'e_1.00e0', 'right_outlier'], 'aggregated_values': [0.0, 0.1988011988011988, 0.1998001998001998, 0.2017982017982018, 0.1988011988011988, 0.2007992007992008, 0.0], 'aggregation': 'Density', 'start': '2024-07-29T19:48:46.944191Z', 'end': '2024-07-29T19:49:46.944191Z'}, 'warning_threshold': None, 'alert_threshold': 0.25, 'score': 1.995545904121508e-05, 'scores': [0.0, 5.007534289255001e-06, 0.0, 4.957831510618228e-06, 5.007534289255001e-06, 4.982558952086851e-06, 0.0], 'bin_index': None, 'summarizer': {'type': 'UnivariateContinuous', 'bin_mode': 'Quantile', 'aggregation': 'Density', 'metric': 'PSI', 'num_bins': 5, 'bin_weights': None, 'provided_edges': None}, 'status': 'Ok', 'created_at': None}, {'id': None, 'assay_id': 4, 'window_start': '2024-07-29T19:49:46.944191Z', 'analyzed_at': '2024-07-29T19:54:43.286185134Z', 'elapsed_millis': 27, 'pipeline_id': None, 'workspace_id': None, 'workspace_name': None, 'baseline_summary': {'count': 1001, 'min': 1.5199184e-06, 'max': 1.0, 'mean': 0.006598251655689411, 'median': 0.00054195523, 'std': 0.07661715949339488, 'edges': [1.5199184e-06, 0.00026360154, 0.00045093894, 0.0006800592, 0.00096952915, 1.0, None], 'edge_names': ['left_outlier', 'q_20', 'q_40', 'q_60', 'q_80', 'q_100', 'right_outlier'], 'aggregated_values': [0.0, 0.1998001998001998, 0.1998001998001998, 0.2007992007992008, 0.1998001998001998, 0.1998001998001998, 0.0], 'aggregation': 'Density', 'start': None, 'end': None}, 'window_summary': {'count': 1001, 'min': 1.519918441772461e-06, 'max': 1.0, 'mean': 0.0065982516233499475, 'median': 0.0005419552326202393, 'std': 0.07661715908141875, 'edges': [1.5199184e-06, 0.00026360154, 0.00045093894, 0.0006800592, 0.00096952915, 1.0, None], 'edge_names': ['left_outlier', 'e_2.64e-4', 'e_4.51e-4', 'e_6.80e-4', 'e_9.70e-4', 'e_1.00e0', 'right_outlier'], 'aggregated_values': [0.0, 0.1988011988011988, 0.1998001998001998, 0.2017982017982018, 0.1988011988011988, 0.2007992007992008, 0.0], 'aggregation': 'Density', 'start': '2024-07-29T19:49:46.944191Z', 'end': '2024-07-29T19:50:46.944191Z'}, 'warning_threshold': None, 'alert_threshold': 0.25, 'score': 1.995545904121508e-05, 'scores': [0.0, 5.007534289255001e-06, 0.0, 4.957831510618228e-06, 5.007534289255001e-06, 4.982558952086851e-06, 0.0], 'bin_index': None, 'summarizer': {'type': 'UnivariateContinuous', 'bin_mode': 'Quantile', 'aggregation': 'Density', 'metric': 'PSI', 'num_bins': 5, 'bin_weights': None, 'provided_edges': None}, 'status': 'Ok', 'created_at': None}]
Retrieve interactive assay via curl.
data = {
"name": exampleAssayName,
"id": assay_id,
"pipeline_id": pipeline.id(),
"pipeline_name": pipeline_name,
"active": True,
"status": "created",
"baseline": {
"static": baseline_summary
},
"window": {
"pipeline_name": pipeline_name,
"model_name": example_model_name,
"width": "1 minutes",
"start": assay_start.isoformat(),
"interval": "1 minutes",
"path": "output dense_1 0",
"workspace_id": workspace_id,
"locations": []
},
"summarizer": {
"type": "UnivariateContinuous",
"bin_mode": "Quantile",
"aggregation": "Density",
"metric": "PSI",
"num_bins": 5,
"bin_weights": None,
"bin_width": None,
"provided_edges": None,
"add_outlier_edges": True
},
"warning_threshold": None,
"alert_threshold": 0.25,
"run_until": assay_window_end.isoformat(),
"workspace_id": workspace_id
}
!curl {wl.api_endpoint}/v1/api/assays/run_interactive \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}'
[{"id":null,"assay_id":4,"window_start":"2024-07-29T19:48:46.944191Z","analyzed_at":"2024-07-29T19:54:57.167038277Z","elapsed_millis":26,"pipeline_id":null,"workspace_id":null,"workspace_name":null,"baseline_summary":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null},"window_summary":{"count":1001,"min":1.519918441772461e-6,"max":1.0,"mean":0.0065982516233499475,"median":0.0005419552326202393,"std":0.07661715908141875,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","e_2.64e-4","e_4.51e-4","e_6.80e-4","e_9.70e-4","e_1.00e0","right_outlier"],"aggregated_values":[0.0,0.1988011988011988,0.1998001998001998,0.2017982017982018,0.1988011988011988,0.2007992007992008,0.0],"aggregation":"Density","start":"2024-07-29T19:48:46.944191Z","end":"2024-07-29T19:49:46.944191Z"},"warning_threshold":null,"alert_threshold":0.25,"score":0.00001995545904121508,"scores":[0.0,5.007534289255001e-6,0.0,4.957831510618228e-6,5.007534289255001e-6,4.982558952086851e-6,0.0],"bin_index":null,"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"status":"Ok","created_at":null},{"id":null,"assay_id":4,"window_start":"2024-07-29T19:49:46.944191Z","analyzed_at":"2024-07-29T19:54:57.167203127Z","elapsed_millis":31,"pipeline_id":null,"workspace_id":null,"workspace_name":null,"baseline_summary":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null},"window_summary":{"count":1001,"min":1.519918441772461e-6,"max":1.0,"mean":0.0065982516233499475,"median":0.0005419552326202393,"std":0.07661715908141875,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","e_2.64e-4","e_4.51e-4","e_6.80e-4","e_9.70e-4","e_1.00e0","right_outlier"],"aggregated_values":[0.0,0.1988011988011988,0.1998001998001998,0.2017982017982018,0.1988011988011988,0.2007992007992008,0.0],"aggregation":"Density","start":"2024-07-29T19:49:46.944191Z","end":"2024-07-29T19:50:46.944191Z"},"warning_threshold":null,"alert_threshold":0.25,"score":0.00001995545904121508,"scores":[0.0,5.007534289255001e-6,0.0,4.957831510618228e-6,5.007534289255001e-6,4.982558952086851e-6,0.0],"bin_index":null,"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"status":"Ok","created_at":null}]
Get Assay Results
- Endpoint*:
/v1/api/assays/get_results
Retrieve the results for an assay.
Get Assay Results Parameters
Field | Type | Description |
---|---|---|
assay_id | Integer (REQUIRED) | Numerical id for the assay. |
start | String (OPTIONAL) | DateTime for when the baseline starts. |
end | String (OPTIONAL) | DateTime for when the baseline ends. |
limit | Integer (OPTIONAL) | Maximum number of results to return. |
pipeline_id | Integer (OPTIONAL) | Numerical id of the pipeline the assay is in. |
Get Assay Results Returns
Field | Type | Description |
---|---|---|
window_start | String | Date and time the window start range. |
analyzed_at | String | Date and time the analysis started. |
elapsed_millis | Integer | How long the assay analysis took in milliseconds. |
baseline_summary | Object | Result from summarizing one sample. |
window_summary | Object | Result from summarizing one sample collection. |
alert_threshold | Float | Alert threshold. |
score | Float | Assay final score. |
scores | List[Float] | All assay scores from the values. |
summarizer | Object | The assay summarizer. |
status | String | The status of the assay. Values are active and created . |
id | Integer | The workspace id. |
assay_id | Integer | The assay id. |
pipeline_id | Integer | The pipeline id. |
alert_threshold | Float | Warning threshold. |
bin_index | Integer | The bin index for the assay. |
created_at | String | The date and time the assay was created. |
Get Assay Results Examples
Retrieve the results from the assay created earlier.
Retrieve assay results via Requests.
# Get Assay Results
# Retrieve the token
headers = wl.auth.auth_header()
assay_window_end = datetime.datetime.now(datetime.timezone.utc)
# print(f'{assay_window_end.isoformat()}+00:00')
endpoint = f"{wl.api_endpoint}/v1/api/assays/get_assay_results"
data = {
'assay_id': assay_id,
'start': assay_start.isoformat(),
'end': assay_window_end.isoformat()
}
response = requests.post(endpoint, json=data, headers=headers, verify=True).json()
response
[{'id': 4,
'assay_id': 4,
'window_start': '2024-07-29T19:48:46.944191Z',
'analyzed_at': '2024-07-29T19:50:07.144395Z',
'elapsed_millis': 9,
'pipeline_id': 1,
'workspace_id': 6,
'workspace_name': 'sample-api-workspace-assays',
'baseline_summary': {'count': 1001,
'min': 1.5199184e-06,
'max': 1.0,
'mean': 0.006598251655689411,
'median': 0.00054195523,
'std': 0.07661715949339488,
'edges': [1.5199184e-06,
0.00026360154,
0.00045093894,
0.0006800592,
0.00096952915,
1.0,
None],
'edge_names': ['left_outlier',
'q_20',
'q_40',
'q_60',
'q_80',
'q_100',
'right_outlier'],
'aggregated_values': [0.0,
0.1998001998001998,
0.1998001998001998,
0.2007992007992008,
0.1998001998001998,
0.1998001998001998,
0.0],
'aggregation': 'Density',
'start': None,
'end': None},
'window_summary': {'count': 1001,
'min': 1.519918441772461e-06,
'max': 1.0,
'mean': 0.0065982516233499475,
'median': 0.0005419552326202393,
'std': 0.07661715908141875,
'edges': [1.5199184e-06,
0.00026360154,
0.00045093894,
0.0006800592,
0.00096952915,
1.0,
None],
'edge_names': ['left_outlier',
'e_2.64e-4',
'e_4.51e-4',
'e_6.80e-4',
'e_9.70e-4',
'e_1.00e0',
'right_outlier'],
'aggregated_values': [0.0,
0.1988011988011988,
0.1998001998001998,
0.2017982017982018,
0.1988011988011988,
0.2007992007992008,
0.0],
'aggregation': 'Density',
'start': '2024-07-29T19:48:46.944191Z',
'end': '2024-07-29T19:49:46.944191Z'},
'warning_threshold': None,
'alert_threshold': 0.25,
'score': 1.995546e-05,
'scores': [0.0,
5.007534289255001e-06,
0.0,
4.957831510618228e-06,
5.007534289255001e-06,
4.982558952086851e-06,
0.0],
'bin_index': None,
'summarizer': {'type': 'UnivariateContinuous',
'bin_mode': 'Quantile',
'aggregation': 'Density',
'metric': 'PSI',
'num_bins': 5,
'bin_weights': None,
'provided_edges': None},
'status': 'Ok',
'created_at': '2024-07-29T19:50:07.156553Z'},
{'id': 5,
'assay_id': 4,
'window_start': '2024-07-29T19:49:46.944191Z',
'analyzed_at': '2024-07-29T19:51:14.769817Z',
'elapsed_millis': 11,
'pipeline_id': 1,
'workspace_id': 6,
'workspace_name': 'sample-api-workspace-assays',
'baseline_summary': {'count': 1001,
'min': 1.5199184e-06,
'max': 1.0,
'mean': 0.006598251655689411,
'median': 0.00054195523,
'std': 0.07661715949339488,
'edges': [1.5199184e-06,
0.00026360154,
0.00045093894,
0.0006800592,
0.00096952915,
1.0,
None],
'edge_names': ['left_outlier',
'q_20',
'q_40',
'q_60',
'q_80',
'q_100',
'right_outlier'],
'aggregated_values': [0.0,
0.1998001998001998,
0.1998001998001998,
0.2007992007992008,
0.1998001998001998,
0.1998001998001998,
0.0],
'aggregation': 'Density',
'start': None,
'end': None},
'window_summary': {'count': 1001,
'min': 1.519918441772461e-06,
'max': 1.0,
'mean': 0.0065982516233499475,
'median': 0.0005419552326202393,
'std': 0.07661715908141875,
'edges': [1.5199184e-06,
0.00026360154,
0.00045093894,
0.0006800592,
0.00096952915,
1.0,
None],
'edge_names': ['left_outlier',
'e_2.64e-4',
'e_4.51e-4',
'e_6.80e-4',
'e_9.70e-4',
'e_1.00e0',
'right_outlier'],
'aggregated_values': [0.0,
0.1988011988011988,
0.1998001998001998,
0.2017982017982018,
0.1988011988011988,
0.2007992007992008,
0.0],
'aggregation': 'Density',
'start': '2024-07-29T19:49:46.944191Z',
'end': '2024-07-29T19:50:46.944191Z'},
'warning_threshold': None,
'alert_threshold': 0.25,
'score': 1.995546e-05,
'scores': [0.0,
5.007534289255001e-06,
0.0,
4.957831510618228e-06,
5.007534289255001e-06,
4.982558952086851e-06,
0.0],
'bin_index': None,
'summarizer': {'type': 'UnivariateContinuous',
'bin_mode': 'Quantile',
'aggregation': 'Density',
'metric': 'PSI',
'num_bins': 5,
'bin_weights': None,
'provided_edges': None},
'status': 'Ok',
'created_at': '2024-07-29T19:51:14.784044Z'}]
Retrieve assay results via curl.
data = {
'assay_id': assay_id,
'start': assay_start.isoformat(),
'end': assay_window_end.isoformat()
}
!curl {wl.api_endpoint}/v1/api/assays/get_assay_results \
-H "Authorization: {wl.auth.auth_header()['Authorization']}" \
-H "Content-Type: application/json" \
--data '{json.dumps(data)}'
[{"id":4,"assay_id":4,"window_start":"2024-07-29T19:48:46.944191Z","analyzed_at":"2024-07-29T19:50:07.144395Z","elapsed_millis":9,"pipeline_id":1,"workspace_id":6,"workspace_name":"sample-api-workspace-assays","baseline_summary":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null},"window_summary":{"count":1001,"min":1.519918441772461e-6,"max":1.0,"mean":0.0065982516233499475,"median":0.0005419552326202393,"std":0.07661715908141875,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","e_2.64e-4","e_4.51e-4","e_6.80e-4","e_9.70e-4","e_1.00e0","right_outlier"],"aggregated_values":[0.0,0.1988011988011988,0.1998001998001998,0.2017982017982018,0.1988011988011988,0.2007992007992008,0.0],"aggregation":"Density","start":"2024-07-29T19:48:46.944191Z","end":"2024-07-29T19:49:46.944191Z"},"warning_threshold":null,"alert_threshold":0.25,"score":0.00001995546,"scores":[0.0,5.007534289255001e-6,0.0,4.957831510618228e-6,5.007534289255001e-6,4.982558952086851e-6,0.0],"bin_index":null,"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"status":"Ok","created_at":"2024-07-29T19:50:07.156553Z"},{"id":5,"assay_id":4,"window_start":"2024-07-29T19:49:46.944191Z","analyzed_at":"2024-07-29T19:51:14.769817Z","elapsed_millis":11,"pipeline_id":1,"workspace_id":6,"workspace_name":"sample-api-workspace-assays","baseline_summary":{"count":1001,"min":1.5199184e-6,"max":1.0,"mean":0.006598251655689411,"median":0.00054195523,"std":0.07661715949339488,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","q_20","q_40","q_60","q_80","q_100","right_outlier"],"aggregated_values":[0.0,0.1998001998001998,0.1998001998001998,0.2007992007992008,0.1998001998001998,0.1998001998001998,0.0],"aggregation":"Density","start":null,"end":null},"window_summary":{"count":1001,"min":1.519918441772461e-6,"max":1.0,"mean":0.0065982516233499475,"median":0.0005419552326202393,"std":0.07661715908141875,"edges":[1.5199184e-6,0.00026360154,0.00045093894,0.0006800592,0.00096952915,1.0,null],"edge_names":["left_outlier","e_2.64e-4","e_4.51e-4","e_6.80e-4","e_9.70e-4","e_1.00e0","right_outlier"],"aggregated_values":[0.0,0.1988011988011988,0.1998001998001998,0.2017982017982018,0.1988011988011988,0.2007992007992008,0.0],"aggregation":"Density","start":"2024-07-29T19:49:46.944191Z","end":"2024-07-29T19:50:46.944191Z"},"warning_threshold":null,"alert_threshold":0.25,"score":0.00001995546,"scores":[0.0,5.007534289255001e-6,0.0,4.957831510618228e-6,5.007534289255001e-6,4.982558952086851e-6,0.0],"bin_index":null,"summarizer":{"type":"UnivariateContinuous","bin_mode":"Quantile","aggregation":"Density","metric":"PSI","num_bins":5,"bin_weights":null,"provided_edges":null},"status":"Ok","created_at":"2024-07-29T19:51:14.784044Z"}]