Wallaroo Run Anywhere Model Drift Observability with Assays Tutorial

How to detect model drift in Wallaroo Run Anywhere deployments using the house price model as an example.

This tutorial and the assets can be downloaded as part of the Wallaroo Tutorials repository.

Wallaroo Run Anywhere Model Drift Observability with Assays

The Model Insights feature lets you monitor how the environment that your model operates within may be changing in ways that affect it’s predictions so that you can intervene (retrain) in an efficient and timely manner. Changes in the inputs, data drift, can occur due to errors in the data processing pipeline or due to changes in the environment such as user preference or behavior.

Wallaroo Run Anywhere allows models to be deployed on edge and other locations, and have their inference result logs uploaded to the Wallaroo Ops center. Wallaroo assays allow for model drift detection to include the inference results from one or more deployment locations and compare any one or multiple locations results against an established baseline.

This notebook is designed to demonstrate the Wallaroo Run Anywhere with Model Drift Observability with Wallaroo Assays. This notebook will walk through the process of:

  • Setting up a workspace, pipeline, and model for deriving the price of a house based on inputs.
  • Performing a sample set of inferences used to demonstrate potential model drift.
  • Publish the deployed model to an Open Container Initiative (OCI) Registry, and use that to deploy the model to an edge device.
  • Perform similar inferences on the edge device and show those inference results in the Wallaroo Ops pipeline logs.
  • Perform the steps in creating an assay:
    • Build an assay baseline.
    • Preview the assay and show different assay configurations based on selecting the inference data from the Wallaroo Ops model deployment versus the edge deployment.
    • Create the assay.
    • View assay results.

This notebook focuses on interactive exploration over historical data. After you are comfortable with how your data has behaved historically, you can schedule this same analysis (called an assay) to automatically run periodically, looking for indications of data drift or concept drift. For this tutorial, the locations used to collect analysis data is changed to allow for edge deployment results to be included in the model drift detection analysis.

In this notebook, we will be running a drift assay on an ONNX model pre-trained to predict house prices.

Goal

Model insights monitors the output of the house price model over a designated time window and compares it to an expected baseline distribution. We measure the performance of model deployments in different locations and compare that to the baseline to detect model drift.

Resources

This tutorial provides the following:

  • Models:
    • models/rf_model.onnx: The champion model that has been used in this environment for some time.
    • Various inputs:
      • smallinputs.df.json: A set of house inputs that tends to generate low house price values.
      • biginputs.df.json: A set of house inputs that tends to generate high house price values.

Prerequisites

  • A deployed Wallaroo instance with Edge Registry Services and Edge Observability enabled.
  • The following Python libraries installed:
    • wallaroo: The Wallaroo SDK. Included with the Wallaroo JupyterHub service by default.
    • pandas: Pandas, mainly used for Pandas DataFrame
  • A X64 Docker deployment to deploy the model on an edge location.

Steps

  • Deploying a sample ML model used to determine house prices based on a set of input parameters.
  • Build an assay baseline from a set of baseline start and end dates, and an assay baseline from a numpy array.
  • Preview the assay and show different assay configurations.
  • Upload the assay.
  • View assay results.
  • Pause and resume the assay.

Import Libraries

The first step will be to import our libraries, and set variables used through this tutorial.

import wallaroo
from wallaroo.object import EntityNotFoundError
from wallaroo.framework import Framework

from IPython.display import display

# used to display DataFrame information without truncating
from IPython.display import display
import pandas as pd
pd.set_option('display.max_colwidth', None)

import datetime
import time

workspace_name = f'run-anywhere-assay-demonstration-tutorial'
main_pipeline_name = f'assay-demo-tutorial'
model_name_control = f'house-price-estimator'
model_file_name_control = './models/rf_model.onnx'

# Set the name of the assay
assay_name="ops assay example"
edge_assay_name = "edge assay example"
combined_assay_name = "combined assay example"

# ignoring warnings for demonstration
import warnings
warnings.filterwarnings('ignore')

# used to display DataFrame information without truncating
from IPython.display import display
import pandas as pd
pd.set_option('display.max_colwidth', None)
def get_workspace(name, client):
    workspace = None
    for ws in client.list_workspaces():
        if ws.name() == name:
            workspace= ws
    if(workspace == None):
        workspace = client.create_workspace(name)
    return workspace

Connect to the Wallaroo Instance

The first step is to connect to Wallaroo through the Wallaroo client. The Python library is included in the Wallaroo install and available through the Jupyter Hub interface provided with your Wallaroo environment.

This is accomplished using the wallaroo.Client() command, which provides a URL to grant the SDK permission to your specific Wallaroo environment. When displayed, enter the URL into a browser and confirm permissions. Store the connection into a variable that can be referenced later.

If logging into the Wallaroo instance through the internal JupyterHub service, use wl = wallaroo.Client(). For more information on Wallaroo Client settings, see the Client Connection guide.

# Login through local Wallaroo instance

wl = wallaroo.Client()

Create Workspace

We will create a workspace to manage our pipeline and models. The following variables will set the name of our sample workspace then set it as the current workspace.

Workspace, pipeline, and model names should be unique to each user, so we’ll add in a randomly generated suffix so multiple people can run this tutorial in a Wallaroo instance without effecting each other.

workspace = get_workspace(workspace_name, wl)

wl.set_current_workspace(workspace)
{'name': 'run-anywhere-assay-demonstration-tutorial', 'id': 94, 'archived': False, 'created_by': 'e40df4e4-cd15-4917-af67-d0bafe445825', 'created_at': '2024-02-21T21:47:32.517298+00:00', 'models': [{'name': 'house-price-estimator', 'versions': 1, 'owner_id': '""', 'last_update_time': datetime.datetime(2024, 2, 21, 21, 47, 34, 336830, tzinfo=tzutc()), 'created_at': datetime.datetime(2024, 2, 21, 21, 47, 34, 336830, tzinfo=tzutc())}], 'pipelines': [{'name': 'assay-demonstration-tutorial', 'create_time': datetime.datetime(2024, 2, 21, 21, 47, 35, 64143, tzinfo=tzutc()), 'definition': '[]'}]}

Upload The Champion Model

For our example, we will upload the champion model that has been trained to derive house prices from a variety of inputs. The model file is rf_model.onnx, and is uploaded with the name house-price-estimator.

housing_model_control = (wl.upload_model(model_name_control, 
                                        model_file_name_control, 
                                        framework=Framework.ONNX)
                                        .configure(tensor_fields=["tensor"])
                        )

Build the Pipeline

This pipeline is made to be an example of an existing situation where a model is deployed and being used for inferences in a production environment. We’ll call it assay-demo-tutorial, set housing_model_control as a pipeline step, then run a few sample inferences.

This pipeline will be a simple one - just a single pipeline step.

mainpipeline = wl.build_pipeline(main_pipeline_name)
# clear the steps if used before
mainpipeline.clear()

mainpipeline.add_model_step(housing_model_control)

#minimum deployment config
deploy_config = wallaroo.DeploymentConfigBuilder().replica_count(1).cpus(0.5).memory("1Gi").build()

mainpipeline.deploy(deployment_config = deploy_config)
nameassay-demo-tutorial
created2024-02-22 16:10:47.470433+00:00
last_updated2024-02-22 16:10:48.267253+00:00
deployedTrue
archNone
accelNone
tags
versionsdffc6643-7621-4f75-bd5b-0e9844ee17da, 59f472d8-a7ec-4a79-bd3a-f568254b6d62
stepshouse-price-estimator
publishedFalse
mainpipeline.status()
{'status': 'Running',
 'details': [],
 'engines': [{'ip': '10.124.1.92',
   'name': 'engine-666cd7bdf9-4fsbj',
   'status': 'Running',
   'reason': None,
   'details': [],
   'pipeline_statuses': {'pipelines': [{'id': 'assay-demo-tutorial',
      'status': 'Running'}]},
   'model_statuses': {'models': [{'name': 'house-price-estimator',
      'sha': 'e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6',
      'status': 'Running',
      'version': '190b6588-3658-4815-a0e9-18eb785084b3'}]}}],
 'engine_lbs': [{'ip': '10.124.1.91',
   'name': 'engine-lb-d7cc8fc9c-x8vpw',
   'status': 'Running',
   'reason': None,
   'details': []}],
 'sidekicks': []}

Testing

We’ll use two inferences as a quick sample test - one that has a house that should be determined around $700k, the other with a house determined to be around $1.5 million.

normal_input = pd.DataFrame.from_records({"tensor": [[4.0, 2.5, 2900.0, 5505.0, 2.0, 0.0, 0.0, 3.0, 8.0, 2900.0, 0.0, 47.6063, -122.02, 2970.0, 5251.0, 12.0, 0.0, 0.0]]})
result = mainpipeline.infer(normal_input)
display(result)
timein.tensorout.variableanomaly.count
02024-02-22 16:11:06.413[4.0, 2.5, 2900.0, 5505.0, 2.0, 0.0, 0.0, 3.0, 8.0, 2900.0, 0.0, 47.6063, -122.02, 2970.0, 5251.0, 12.0, 0.0, 0.0][718013.7]0
large_house_input = pd.DataFrame.from_records({'tensor': [[4.0, 3.0, 3710.0, 20000.0, 2.0, 0.0, 2.0, 5.0, 10.0, 2760.0, 950.0, 47.6696, -122.261, 3970.0, 20000.0, 79.0, 0.0, 0.0]]})
large_house_result = mainpipeline.infer(large_house_input)
display(large_house_result)
timein.tensorout.variableanomaly.count
02024-02-22 16:11:06.893[4.0, 3.0, 3710.0, 20000.0, 2.0, 0.0, 2.0, 5.0, 10.0, 2760.0, 950.0, 47.6696, -122.261, 3970.0, 20000.0, 79.0, 0.0, 0.0][1514079.4]0

Generate Sample Data

Before creating the assays, we must generate data for the assays to build from.

For this example, we will:

  • Perform sample inferences based on lower priced houses and use that as our baseline.
  • Generate inferences from specific set of high priced houses create inference outputs that will be outside the baseline. This is used in later steps to demonstrate baseline comparison against assay analyses.

Inference Results History Generation

To start the demonstration, we’ll create a baseline of values from houses with small estimated prices and set that as our baseline.

We will save the beginning and end periods of our baseline data to the variables assay_baseline_start and assay_baseline_end.

small_houses_inputs = pd.read_json('./data/smallinputs.df.json')
baseline_size = 500

# Where the baseline data will start
assay_baseline_start = datetime.datetime.now()

# These inputs will be random samples of small priced houses.  Around 30,000 is a good number
small_houses = small_houses_inputs.sample(baseline_size, replace=True).reset_index(drop=True)

# Wait 60 seconds to set this data apart from the rest
time.sleep(60)
small_results = mainpipeline.infer(small_houses)

# Set the baseline end

assay_baseline_end = datetime.datetime.now()

Assay Test Data

The following will generate inference data for us to test against the assay baseline. For this, we will add in house data that generate higher house prices than the baseline data we used earlier.

This process should take 6 minutes to generate the historical data we’ll later use in our assays. We store the DateTime assay_window_start to determine where to start out assay analyses.

# Get a spread of house values

# # Set the start for our assay window period.
assay_window_start = datetime.datetime.now()

time.sleep(65)
inference_size = 1000

# And a spread of large house values

small_houses_inputs = pd.read_json('./data/smallinputs.df.json', orient="records")
small_houses = small_houses_inputs.sample(inference_size, replace=True).reset_index(drop=True)

mainpipeline.infer(small_houses)

time.sleep(65)
# Get a spread of normal house values

time.sleep(65)
inference_size = 1000

# And a spread of large house values

big_houses_inputs = pd.read_json('./data/normal-inputs.df.json', orient="records")
big_houses = big_houses_inputs.sample(inference_size, replace=True).reset_index(drop=True)

mainpipeline.infer(big_houses)

time.sleep(65)
print(assay_baseline_start)
print(assay_baseline_end)
print(assay_window_start)
2024-02-22 09:11:06.866165
2024-02-22 09:12:07.767609
2024-02-22 09:12:07.781924

Edge Deployment

We can now deploy the pipeline to an edge device. This will require the following steps:

  • Publish the pipeline: Publishes the pipeline to the OCI registry.
  • Add Edge: Add the edge location to the pipeline publish.
  • Deploy Edge: Deploy the edge device with the edge location settings.

Publish Pipeline

Publishing the pipeline uses the pipeline wallaroo.pipeline.publish() command. This requires that the Wallaroo Ops instance have Edge Registry Services enabled.

The following publishes the pipeline to the OCI registry and displays the container details. For more information, see Wallaroo SDK Essentials Guide: Pipeline Edge Publication.

assay_pub = mainpipeline.publish()
Waiting for pipeline publish... It may take up to 600 sec.
Pipeline is Publishing.....Published.

Add Edge Location

The edge location is added with the wallaroo.pipeline_publish.add_edge(name) method. This returns the OCI registration information, and the EDGE_BUNDLE information. The EDGE_BUNDLE data is a base64 encoded set of parameters for the pipeline that the edge device is associated with, the workspace, and other data.

For full details, see Wallaroo SDK Essentials Guide: Pipeline Edge Publication: Edge Observability.

edge_name = "houseprice-edge-01"
edge_publish = assay_pub.add_edge(edge_name)
display(edge_publish)
ID30
Pipeline Nameassay-demo-tutorial
Pipeline Versiond7c8dbf6-dd09-4420-af0b-aecee2765b9a
StatusPublished
Engine URLus-central1-docker.pkg.dev/wallaroo-dev-253816/uat/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2024.1.0-main-4587
Pipeline URLus-central1-docker.pkg.dev/wallaroo-dev-253816/uat/pipelines/assay-demo-tutorial:d7c8dbf6-dd09-4420-af0b-aecee2765b9a
Helm Chart URLoci://us-central1-docker.pkg.dev/wallaroo-dev-253816/uat/charts/assay-demo-tutorial
Helm Chart Referenceus-central1-docker.pkg.dev/wallaroo-dev-253816/uat/charts@sha256:cdbb8997441d77ef69453b9f621b5c4012fcd36efcba5661f3fff6bffb8c3e92
Helm Chart Version0.0.1-d7c8dbf6-dd09-4420-af0b-aecee2765b9a
Engine Config{'engine': {'resources': {'limits': {'cpu': 4.0, 'memory': '3Gi'}, 'requests': {'cpu': 4.0, 'memory': '3Gi'}, 'accel': 'none', 'arch': 'x86', 'gpu': False}}, 'engineAux': {'autoscale': {'type': 'none'}, 'images': None}, 'enginelb': {'resources': {'limits': {'cpu': 1.0, 'memory': '512Mi'}, 'requests': {'cpu': 0.2, 'memory': '512Mi'}, 'accel': 'none', 'arch': 'x86', 'gpu': False}}}
User Images[]
Created Byjohn.hummel@wallaroo.ai
Created At2024-02-22 16:16:31.263405+00:00
Updated At2024-02-22 16:16:31.263405+00:00
Replaces
Docker Run Command
docker run \
-e OCI_USERNAME=$OCI_USERNAME \
-e OCI_PASSWORD=$OCI_PASSWORD \
-e EDGE_BUNDLE=ZXhwb3J0IEJVTkRMRV9WRVJTSU9OPTEKZXhwb3J0IENPTkZJR19DUFVTPTQKZXhwb3J0IEVER0VfTkFNRT1ob3VzZXByaWNlLWVkZ2UtMDEKZXhwb3J0IE9QU0NFTlRFUl9IT1NUPWVkZ2UuYXV0b3NjYWxlLXVhdC1nY3Aud2FsbGFyb28uZGV2CmV4cG9ydCBQSVBFTElORV9VUkw9dXMtY2VudHJhbDEtZG9ja2VyLnBrZy5kZXYvd2FsbGFyb28tZGV2LTI1MzgxNi91YXQvcGlwZWxpbmVzL2Fzc2F5LWRlbW8tdHV0b3JpYWw6ZDdjOGRiZjYtZGQwOS00NDIwLWFmMGItYWVjZWUyNzY1YjlhCmV4cG9ydCBXT1JLU1BBQ0VfSUQ9OTQKZXhwb3J0IEpPSU5fVE9LRU49NjNkMmUzNGItNzA4OC00MjRmLWE4OTMtNmZkYzRjMWE0ZDM2 \
-e CONFIG_CPUS=4 us-central1-docker.pkg.dev/wallaroo-dev-253816/uat/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2024.1.0-main-4587

Note: Please set the OCI_USERNAME, and OCI_PASSWORD environment variables.
Helm Install Command
helm install --atomic $HELM_INSTALL_NAME \
oci://us-central1-docker.pkg.dev/wallaroo-dev-253816/uat/charts/assay-demo-tutorial \
--namespace $HELM_INSTALL_NAMESPACE \
--version 0.0.1-d7c8dbf6-dd09-4420-af0b-aecee2765b9a \
--set ociRegistry.username=$OCI_USERNAME \
--set ociRegistry.password=$OCI_PASSWORD \
--set edgeBundle=ZXhwb3J0IEJVTkRMRV9WRVJTSU9OPTEKZXhwb3J0IENPTkZJR19DUFVTPTQKZXhwb3J0IEVER0VfTkFNRT1ob3VzZXByaWNlLWVkZ2UtMDEKZXhwb3J0IE9QU0NFTlRFUl9IT1NUPWVkZ2UuYXV0b3NjYWxlLXVhdC1nY3Aud2FsbGFyb28uZGV2CmV4cG9ydCBQSVBFTElORV9VUkw9dXMtY2VudHJhbDEtZG9ja2VyLnBrZy5kZXYvd2FsbGFyb28tZGV2LTI1MzgxNi91YXQvcGlwZWxpbmVzL2Fzc2F5LWRlbW8tdHV0b3JpYWw6ZDdjOGRiZjYtZGQwOS00NDIwLWFmMGItYWVjZWUyNzY1YjlhCmV4cG9ydCBXT1JLU1BBQ0VfSUQ9OTQKZXhwb3J0IEpPSU5fVE9LRU49NjNkMmUzNGItNzA4OC00MjRmLWE4OTMtNmZkYzRjMWE0ZDM2

Note: Please set the HELM_INSTALL_NAME, HELM_INSTALL_NAMESPACE, OCI_USERNAME, and OCI_PASSWORD environment variables.

DevOps Deployment

The edge deployment is performed with docker run, docker compose, or helm installations. The following command generates the docker run command, with the following values provided by the DevOps Engineer:

  • $REGISTRYURL
  • $REGISTRYUSERNAME
  • $REGISTRYPASSWORD

Before deploying, create the ./data directory that is used to store the authentication credentials.

# create docker run 

docker_command = f'''
docker run -p 8080:8080 \\
    -v ./data:/persist \\
    -e DEBUG=true \\
    -e OCI_REGISTRY=$REGISTRYURL \\
    -e EDGE_BUNDLE={edge_publish.docker_run_variables['EDGE_BUNDLE']} \\
    -e CONFIG_CPUS=1 \\
    -e OCI_USERNAME=$OCI_USERNAME \\
    -e OCI_PASSWORD=$OCI_PASSWORD \\
    -e PIPELINE_URL={edge_publish.pipeline_url} \\
    {edge_publish.engine_url}
'''

print(docker_command)
docker run -p 8080:8080 \
    -v ./data:/persist \
    -e DEBUG=true \
    -e OCI_REGISTRY=$REGISTRYURL \
    -e EDGE_BUNDLE=ZXhwb3J0IEJVTkRMRV9WRVJTSU9OPTEKZXhwb3J0IENPTkZJR19DUFVTPTQKZXhwb3J0IEVER0VfTkFNRT1ob3VzZXByaWNlLWVkZ2UtMDEKZXhwb3J0IE9QU0NFTlRFUl9IT1NUPWVkZ2UuYXV0b3NjYWxlLXVhdC1nY3Aud2FsbGFyb28uZGV2CmV4cG9ydCBQSVBFTElORV9VUkw9dXMtY2VudHJhbDEtZG9ja2VyLnBrZy5kZXYvd2FsbGFyb28tZGV2LTI1MzgxNi91YXQvcGlwZWxpbmVzL2Fzc2F5LWRlbW8tdHV0b3JpYWw6ZDdjOGRiZjYtZGQwOS00NDIwLWFmMGItYWVjZWUyNzY1YjlhCmV4cG9ydCBXT1JLU1BBQ0VfSUQ9OTQKZXhwb3J0IEpPSU5fVE9LRU49NjNkMmUzNGItNzA4OC00MjRmLWE4OTMtNmZkYzRjMWE0ZDM2 \
    -e CONFIG_CPUS=1 \
    -e OCI_USERNAME=$OCI_USERNAME \
    -e OCI_PASSWORD=$OCI_PASSWORD \
    -e PIPELINE_URL=us-central1-docker.pkg.dev/wallaroo-dev-253816/uat/pipelines/assay-demo-tutorial:d7c8dbf6-dd09-4420-af0b-aecee2765b9a \
    us-central1-docker.pkg.dev/wallaroo-dev-253816/uat/engines/proxy/wallaroo/ghcr.io/wallaroolabs/standalone-mini:v2024.1.0-main-4587

Verify Logs

Before we perform inferences on the edge deployment, we’ll collect the pipeline logs and display the current partitions. These should only include the Wallaroo Ops pipeline partition, which is generated when a pipeline version is deployed.

We will save that log partition so it can be added to the assay location settings later.

logs = mainpipeline.logs(dataset=['time', 'out.variable', 'metadata'])

ops_locations = [pd.unique(logs['metadata.partition']).tolist()][0]
display(ops_locations)
ops_location = ops_locations[0]
Warning: There are more logs available. Please set a larger limit or request a file using export_logs.

['engine-666cd7bdf9-4fsbj']

Edge Inferences

We will perform sample inference on our edge location, then verify that the inference results are added to our pipeline logs with the name of our edge location. For these example, the edge location is on the hostname HOSTNAME. Change this hostname to the host name of your edge deployment.

We will submit two sets of inferences:

  • A normal set will is unlikely to trigger an assay alert when compared against the baseline.
  • A set of inferences that will return large house values that is likely to trigger an assay alert when compared against the baseline.
edge_datetime_start = datetime.datetime.now()

!curl HOSTNAME:8080/pipelines
{"pipelines":[{"id":"assay-demo-tutorial","status":"Running"}]}
# generate a set of normal house values
!curl -X POST HOSTNAME:8080/pipelines/{main_pipeline_name} \
    -H "Content-Type: Content-Type: application/json; format=pandas-records" \
    --data @./data/normal-inputs.df.json

time.sleep(65)
# generate a set of large house values that will trigger an assay alert based on our baseline
!curl -X POST HOSTNAME:8080/pipelines/{main_pipeline_name} \
    -H "Content-Type: Content-Type: application/json; format=pandas-records" \
    --data @./data/biginputs.df.json
[{"time":1708618847421,"in":{"tensor":[4.0,2.5,2900.0,5505.0,2.0,0.0,0.0,3.0,8.0,2900.0,0.0,47.6063,-122.02,2970.0,5251.0,12.0,0.0,0.0]},"out":{"variable":[718013.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,2170.0,6361.0,1.0,0.0,2.0,3.0,8.0,2170.0,0.0,47.7109,-122.017,2310.0,7419.0,6.0,0.0,0.0]},"out":{"variable":[615094.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1300.0,812.0,2.0,0.0,0.0,3.0,8.0,880.0,420.0,47.5893,-122.317,1300.0,824.0,6.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2500.0,8540.0,2.0,0.0,0.0,3.0,9.0,2500.0,0.0,47.5759,-121.994,2560.0,8475.0,24.0,0.0,0.0]},"out":{"variable":[758714.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2200.0,11520.0,1.0,0.0,0.0,4.0,7.0,2200.0,0.0,47.7659,-122.341,1690.0,8038.0,62.0,0.0,0.0]},"out":{"variable":[513264.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2140.0,4923.0,1.0,0.0,0.0,4.0,8.0,1070.0,1070.0,47.6902,-122.339,1470.0,4923.0,86.0,0.0,0.0]},"out":{"variable":[668288.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3590.0,5334.0,2.0,0.0,2.0,3.0,9.0,3140.0,450.0,47.6763,-122.267,2100.0,6250.0,9.0,0.0,0.0]},"out":{"variable":[1004846.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1280.0,960.0,2.0,0.0,0.0,3.0,9.0,1040.0,240.0,47.602,-122.311,1280.0,1173.0,0.0,0.0,0.0]},"out":{"variable":[684577.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2820.0,15000.0,2.0,0.0,0.0,4.0,9.0,2820.0,0.0,47.7255,-122.101,2440.0,15000.0,29.0,0.0,0.0]},"out":{"variable":[727898.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1790.0,11393.0,1.0,0.0,0.0,3.0,8.0,1790.0,0.0,47.6297,-122.099,2290.0,11894.0,36.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1010.0,7683.0,1.5,0.0,0.0,5.0,7.0,1010.0,0.0,47.72,-122.318,1550.0,7271.0,61.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1270.0,1323.0,3.0,0.0,0.0,3.0,8.0,1270.0,0.0,47.6934,-122.342,1330.0,1323.0,8.0,0.0,0.0]},"out":{"variable":[442168.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2070.0,9120.0,1.0,0.0,0.0,4.0,7.0,1250.0,820.0,47.6045,-122.123,1650.0,8400.0,57.0,0.0,0.0]},"out":{"variable":[630865.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1620.0,4080.0,1.5,0.0,0.0,3.0,7.0,1620.0,0.0,47.6696,-122.324,1760.0,4080.0,91.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,3990.0,9786.0,2.0,0.0,0.0,3.0,9.0,3990.0,0.0,47.6784,-122.026,3920.0,8200.0,10.0,0.0,0.0]},"out":{"variable":[909441.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1780.0,19843.0,1.0,0.0,0.0,3.0,7.0,1780.0,0.0,47.4414,-122.154,2210.0,13500.0,52.0,0.0,0.0]},"out":{"variable":[313096.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2130.0,6003.0,2.0,0.0,0.0,3.0,8.0,2130.0,0.0,47.4518,-122.12,1940.0,4529.0,11.0,0.0,0.0]},"out":{"variable":[404040.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1660.0,10440.0,1.0,0.0,0.0,3.0,7.0,1040.0,620.0,47.4448,-121.77,1240.0,10380.0,36.0,0.0,0.0]},"out":{"variable":[292859.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2110.0,4118.0,2.0,0.0,0.0,3.0,8.0,2110.0,0.0,47.3878,-122.153,2110.0,4044.0,25.0,0.0,0.0]},"out":{"variable":[338357.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2200.0,11250.0,1.5,0.0,0.0,5.0,7.0,1300.0,900.0,47.6845,-122.201,2320.0,10814.0,94.0,0.0,0.0]},"out":{"variable":[682284.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2020.0,10260.0,2.0,0.0,0.0,4.0,7.0,2020.0,0.0,47.6801,-122.114,2020.0,10311.0,31.0,0.0,0.0]},"out":{"variable":[583765.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1390.0,1302.0,2.0,0.0,0.0,3.0,7.0,1390.0,0.0,47.3089,-122.33,1390.0,1302.0,28.0,0.0,0.0]},"out":{"variable":[249227.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1400.0,7920.0,1.0,0.0,0.0,3.0,7.0,1400.0,0.0,47.4658,-122.184,1910.0,7700.0,52.0,0.0,0.0]},"out":{"variable":[267013.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1370.0,1140.0,2.0,0.0,0.0,3.0,8.0,1080.0,290.0,47.7055,-122.342,1340.0,1050.0,5.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2390.0,6976.0,2.0,0.0,0.0,3.0,7.0,2390.0,0.0,47.4807,-122.182,2390.0,6346.0,11.0,0.0,0.0]},"out":{"variable":[410291.78]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,2170.0,2440.0,1.5,0.0,0.0,4.0,8.0,1450.0,720.0,47.6724,-122.317,2070.0,4000.0,103.0,0.0,0.0]},"out":{"variable":[675545.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1370.0,9460.0,1.0,0.0,0.0,3.0,6.0,1370.0,0.0,47.6238,-122.191,1690.0,9930.0,65.0,0.0,0.0]},"out":{"variable":[449699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2270.0,5000.0,2.0,0.0,0.0,3.0,9.0,2270.0,0.0,47.6916,-122.37,1210.0,5000.0,0.0,0.0,0.0]},"out":{"variable":[756045.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,1330.0,1379.0,2.0,0.0,0.0,4.0,8.0,1120.0,210.0,47.6126,-122.313,1810.0,1770.0,9.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2490.0,24969.0,1.0,0.0,2.0,4.0,8.0,1540.0,950.0,47.336,-122.35,2790.0,15600.0,55.0,0.0,0.0]},"out":{"variable":[392724.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,3710.0,20000.0,2.0,0.0,2.0,5.0,10.0,2760.0,950.0,47.6696,-122.261,3970.0,20000.0,79.0,0.0,0.0]},"out":{"variable":[1514079.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2800.0,17300.0,1.0,0.0,0.0,4.0,8.0,1420.0,1380.0,47.5716,-122.128,2140.0,12650.0,44.0,0.0,0.0]},"out":{"variable":[706407.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1790.0,50529.0,1.0,0.0,0.0,5.0,7.0,1090.0,700.0,47.3511,-122.073,1940.0,50529.0,50.0,0.0,0.0]},"out":{"variable":[291904.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1340.0,11744.0,1.0,0.0,0.0,2.0,7.0,1340.0,0.0,47.4947,-122.36,2020.0,13673.0,64.0,0.0,0.0]},"out":{"variable":[259657.48]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2110.0,7434.0,2.0,0.0,0.0,4.0,7.0,2110.0,0.0,47.3935,-122.169,2100.0,7749.0,36.0,0.0,0.0]},"out":{"variable":[335398.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2440.0,3600.0,2.5,0.0,0.0,4.0,8.0,2440.0,0.0,47.6298,-122.362,2440.0,5440.0,112.0,0.0,0.0]},"out":{"variable":[713979.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2100.0,11894.0,1.0,0.0,0.0,4.0,8.0,1720.0,380.0,47.6006,-122.194,2390.0,9450.0,46.0,0.0,0.0]},"out":{"variable":[642519.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1280.0,959.0,3.0,0.0,0.0,3.0,8.0,1280.0,0.0,47.6914,-122.343,1130.0,1126.0,9.0,0.0,0.0]},"out":{"variable":[446768.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1740.0,9038.0,1.0,0.0,0.0,4.0,7.0,1740.0,0.0,47.5897,-122.136,1390.0,9770.0,59.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1860.0,3504.0,2.0,0.0,0.0,3.0,7.0,1860.0,0.0,47.776,-122.239,1860.0,4246.0,14.0,0.0,0.0]},"out":{"variable":[438514.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,4.5,5120.0,41327.0,2.0,0.0,0.0,3.0,10.0,3290.0,1830.0,47.7009,-122.059,3360.0,82764.0,6.0,0.0,0.0]},"out":{"variable":[1204324.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,670.0,11505.0,1.0,0.0,0.0,3.0,5.0,670.0,0.0,47.499,-122.157,2180.0,11505.0,12.0,0.0,0.0]},"out":{"variable":[251194.58]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2370.0,4200.0,2.0,0.0,0.0,3.0,8.0,2370.0,0.0,47.3699,-122.019,2370.0,4370.0,1.0,0.0,0.0]},"out":{"variable":[349102.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2580.0,7865.0,1.0,0.0,0.0,4.0,8.0,1480.0,1100.0,47.6208,-122.139,2140.0,8400.0,51.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,998.0,904.0,2.0,0.0,0.0,3.0,7.0,798.0,200.0,47.6983,-122.367,998.0,1110.0,7.0,0.0,0.0]},"out":{"variable":[400561.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2930.0,7806.0,2.0,0.0,0.0,3.0,9.0,2930.0,0.0,47.6219,-122.024,2600.0,6051.0,9.0,0.0,0.0]},"out":{"variable":[779809.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1120.0,4000.0,1.0,0.0,0.0,4.0,7.0,870.0,250.0,47.6684,-122.368,1470.0,4000.0,98.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,2000.0,4800.0,2.0,0.0,0.0,4.0,7.0,2000.0,0.0,47.6583,-122.351,1260.0,1452.0,104.0,0.0,0.0]},"out":{"variable":[581003.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1520.0,3370.0,2.0,0.0,0.0,3.0,8.0,1520.0,0.0,47.5696,-122.004,1860.0,4486.0,21.0,0.0,0.0]},"out":{"variable":[535229.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2920.0,9904.0,2.0,0.0,0.0,4.0,9.0,2920.0,0.0,47.5759,-121.995,1810.0,5617.0,24.0,0.0,0.0]},"out":{"variable":[778197.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1850.0,8208.0,1.0,0.0,0.0,4.0,7.0,1180.0,670.0,47.3109,-122.362,1790.0,8174.0,44.0,0.0,0.0]},"out":{"variable":[291261.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3430.0,35120.0,2.0,0.0,0.0,3.0,10.0,3430.0,0.0,47.6484,-122.182,3920.0,35230.0,31.0,0.0,0.0]},"out":{"variable":[950176.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1530.0,6375.0,2.0,0.0,0.0,3.0,7.0,1530.0,0.0,47.4692,-122.162,1500.0,8712.0,72.0,1.0,41.0]},"out":{"variable":[289359.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1640.0,8400.0,1.0,0.0,0.0,3.0,8.0,1180.0,460.0,47.3733,-122.289,1600.0,8120.0,46.0,0.0,0.0]},"out":{"variable":[277145.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1540.0,8400.0,1.0,0.0,0.0,3.0,7.0,1180.0,360.0,47.6554,-122.129,1550.0,8760.0,46.0,0.0,0.0]},"out":{"variable":[552992.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1850.0,8310.0,1.0,0.0,0.0,3.0,7.0,1200.0,650.0,47.7717,-122.29,1840.0,10080.0,53.0,0.0,0.0]},"out":{"variable":[437753.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1530.0,7245.0,1.0,0.0,0.0,4.0,7.0,1530.0,0.0,47.731,-122.191,1530.0,7490.0,31.0,0.0,0.0]},"out":{"variable":[431929.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2610.0,5866.0,2.0,0.0,0.0,3.0,8.0,2610.0,0.0,47.3441,-122.04,2480.0,5188.0,9.0,0.0,0.0]},"out":{"variable":[358668.22]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1710.0,5000.0,1.0,0.0,0.0,3.0,8.0,1110.0,600.0,47.6772,-122.285,1750.0,5304.0,36.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,3470.0,12003.0,2.0,0.0,0.0,3.0,8.0,3470.0,0.0,47.624,-122.048,2220.0,12283.0,37.0,0.0,0.0]},"out":{"variable":[732736.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1020.0,1204.0,2.0,0.0,0.0,3.0,7.0,720.0,300.0,47.5445,-122.376,1360.0,1506.0,10.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2870.0,6600.0,2.0,0.0,2.0,3.0,8.0,2870.0,0.0,47.5745,-122.113,2570.0,7925.0,30.0,0.0,0.0]},"out":{"variable":[710023.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1440.0,4666.0,1.0,0.0,0.0,3.0,8.0,1440.0,0.0,47.709,-122.019,1510.0,4595.0,5.0,0.0,0.0]},"out":{"variable":[359614.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,4040.0,19700.0,2.0,0.0,0.0,3.0,11.0,4040.0,0.0,47.7205,-122.127,3930.0,21887.0,27.0,0.0,0.0]},"out":{"variable":[1028923.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,4.5,3300.0,7480.0,2.0,0.0,0.0,3.0,8.0,3300.0,0.0,47.6796,-122.104,2470.0,7561.0,34.0,0.0,0.0]},"out":{"variable":[725572.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1670.0,3852.0,2.0,0.0,3.0,4.0,8.0,1670.0,0.0,47.6411,-122.371,2320.0,4572.0,87.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1700.0,6031.0,2.0,0.0,0.0,3.0,8.0,1700.0,0.0,47.3582,-122.191,1930.0,6035.0,20.0,0.0,0.0]},"out":{"variable":[290323.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3220.0,7873.0,2.0,0.0,0.0,3.0,10.0,3220.0,0.0,47.5849,-122.03,2610.0,8023.0,21.0,0.0,0.0]},"out":{"variable":[886958.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,3030.0,20446.0,2.0,0.0,2.0,3.0,9.0,2130.0,900.0,47.6133,-122.106,2890.0,20908.0,38.0,0.0,0.0]},"out":{"variable":[811666.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1050.0,9871.0,1.0,0.0,0.0,5.0,7.0,1050.0,0.0,47.3816,-122.087,1300.0,10794.0,46.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,2230.0,6000.0,1.0,0.0,1.0,3.0,8.0,1260.0,970.0,47.5373,-122.395,2120.0,7200.0,47.0,0.0,0.0]},"out":{"variable":[683845.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2710.0,6474.0,2.0,0.0,0.0,3.0,8.0,2710.0,0.0,47.5383,-121.878,2870.0,6968.0,11.0,0.0,0.0]},"out":{"variable":[717470.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3490.0,18521.0,2.0,0.0,0.0,4.0,9.0,3490.0,0.0,47.7406,-122.07,2850.0,18521.0,24.0,0.0,0.0]},"out":{"variable":[873315.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,720.0,5820.0,1.0,0.0,1.0,5.0,6.0,720.0,0.0,47.7598,-122.255,952.0,5820.0,65.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2100.0,11942.0,1.0,0.0,0.0,3.0,7.0,1030.0,1070.0,47.55,-122.356,1170.0,6986.0,50.0,0.0,0.0]},"out":{"variable":[642519.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,3240.0,6919.0,2.0,0.0,0.0,3.0,8.0,2760.0,480.0,47.4779,-122.122,2970.0,5690.0,0.0,0.0,0.0]},"out":{"variable":[464811.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1410.0,5000.0,1.0,0.0,2.0,4.0,7.0,940.0,470.0,47.5531,-122.379,1450.0,5000.0,97.0,0.0,0.0]},"out":{"variable":[437929.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2300.0,5090.0,2.0,0.0,0.0,3.0,8.0,1700.0,600.0,47.545,-122.36,1530.0,9100.0,7.0,0.0,0.0]},"out":{"variable":[686891.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2410.0,7140.0,2.0,0.0,0.0,3.0,8.0,2410.0,0.0,47.6329,-122.021,2350.0,7140.0,21.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1920.0,7455.0,1.0,0.0,0.0,4.0,7.0,960.0,960.0,47.7106,-122.286,1920.0,7455.0,75.0,1.0,25.0]},"out":{"variable":[447162.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1670.0,9886.0,1.0,0.0,0.0,5.0,7.0,1670.0,0.0,47.7249,-122.287,2590.0,9997.0,67.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1880.0,5500.0,2.0,0.0,0.0,4.0,7.0,1880.0,0.0,47.657,-122.393,1230.0,5500.0,67.0,1.0,60.0]},"out":{"variable":[561604.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1270.0,10790.0,1.0,0.0,0.0,3.0,7.0,1270.0,0.0,47.6647,-122.177,1270.0,10790.0,58.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1070.0,8100.0,1.0,0.0,0.0,4.0,6.0,1070.0,0.0,47.2853,-122.22,1260.0,8100.0,57.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2480.0,4950.0,2.0,0.0,0.0,3.0,7.0,2480.0,0.0,47.4389,-122.116,2230.0,5298.0,11.0,0.0,0.0]},"out":{"variable":[397183.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1400.0,4914.0,1.5,0.0,0.0,3.0,7.0,1400.0,0.0,47.681,-122.364,1400.0,3744.0,85.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3190.0,4980.0,2.0,0.0,0.0,3.0,9.0,3190.0,0.0,47.3657,-122.034,2830.0,6720.0,10.0,0.0,0.0]},"out":{"variable":[511200.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1700.0,4400.0,1.5,0.0,0.0,4.0,8.0,1700.0,0.0,47.612,-122.292,1610.0,4180.0,108.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1620.0,14467.0,2.0,0.0,0.0,3.0,7.0,1620.0,0.0,47.6306,-122.035,1470.0,13615.0,33.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2160.0,8809.0,1.0,0.0,0.0,3.0,9.0,1540.0,620.0,47.6994,-122.349,930.0,5420.0,0.0,0.0,0.0]},"out":{"variable":[726181.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1060.0,7868.0,1.0,0.0,0.0,3.0,7.0,1060.0,0.0,47.7414,-122.295,1530.0,10728.0,63.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,2320.0,18919.0,2.0,1.0,4.0,4.0,8.0,2320.0,0.0,47.3905,-122.462,1610.0,18919.0,39.0,0.0,0.0]},"out":{"variable":[491385.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,3.75,3190.0,4700.0,2.0,0.0,0.0,3.0,8.0,3190.0,0.0,47.3724,-122.105,2680.0,5640.0,12.0,0.0,0.0]},"out":{"variable":[383833.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,2.0,1900.0,8240.0,1.0,0.0,0.0,2.0,7.0,1200.0,700.0,47.7037,-122.296,1900.0,8240.0,51.0,0.0,0.0]},"out":{"variable":[458858.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,3940.0,27591.0,2.0,0.0,3.0,3.0,9.0,3440.0,500.0,47.5157,-122.116,3420.0,29170.0,14.0,0.0,0.0]},"out":{"variable":[736751.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1340.0,3011.0,2.0,0.0,0.0,3.0,7.0,1340.0,0.0,47.3839,-122.038,1060.0,3232.0,19.0,0.0,0.0]},"out":{"variable":[244380.27]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,2280.0,8339.0,1.0,0.0,0.0,4.0,7.0,1220.0,1060.0,47.6986,-122.297,1970.0,8340.0,61.0,0.0,0.0]},"out":{"variable":[665791.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2510.0,12013.0,2.0,0.0,0.0,3.0,8.0,2510.0,0.0,47.3473,-122.314,1870.0,8017.0,27.0,0.0,0.0]},"out":{"variable":[352864.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.5,1750.0,12491.0,1.0,0.0,0.0,3.0,6.0,1390.0,360.0,47.6995,-122.174,1560.0,12473.0,54.0,0.0,0.0]},"out":{"variable":[467742.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1590.0,4600.0,1.5,0.0,0.0,4.0,7.0,1290.0,300.0,47.6807,-122.399,1770.0,4350.0,88.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1740.0,3060.0,1.0,0.0,0.0,5.0,8.0,950.0,790.0,47.6816,-122.31,1800.0,3960.0,84.0,1.0,84.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2570.0,11070.0,2.0,0.0,0.0,4.0,8.0,2570.0,0.0,47.4507,-122.152,2210.0,9600.0,49.0,0.0,0.0]},"out":{"variable":[427942.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2420.0,11120.0,1.0,0.0,2.0,4.0,8.0,1620.0,800.0,47.4954,-122.366,2210.0,8497.0,63.0,0.0,0.0]},"out":{"variable":[447951.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2632.0,4117.0,2.0,0.0,0.0,3.0,8.0,2632.0,0.0,47.3428,-122.278,2040.0,5195.0,1.0,0.0,0.0]},"out":{"variable":[368504.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1440.0,11330.0,1.0,0.0,0.0,3.0,7.0,1440.0,0.0,47.4742,-122.265,1580.0,10100.0,50.0,0.0,0.0]},"out":{"variable":[263051.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1630.0,1686.0,2.0,0.0,0.0,3.0,10.0,1330.0,300.0,47.6113,-122.314,1570.0,2580.0,0.0,0.0,0.0]},"out":{"variable":[917346.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2600.0,3839.0,2.0,0.0,0.0,3.0,7.0,2600.0,0.0,47.4324,-122.145,2180.0,4800.0,9.0,0.0,0.0]},"out":{"variable":[400676.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,3160.0,8429.0,1.0,0.0,3.0,4.0,7.0,1620.0,1540.0,47.511,-122.251,1760.0,6780.0,33.0,0.0,0.0]},"out":{"variable":[480989.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1480.0,5400.0,2.0,0.0,0.0,4.0,8.0,1480.0,0.0,47.6095,-122.296,1280.0,3600.0,100.0,0.0,0.0]},"out":{"variable":[533935.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2040.0,12065.0,1.0,0.0,0.0,3.0,8.0,2040.0,0.0,47.3756,-122.044,2010.0,11717.0,27.0,0.0,0.0]},"out":{"variable":[328513.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3470.0,20445.0,2.0,0.0,0.0,4.0,10.0,3470.0,0.0,47.547,-122.219,3360.0,21950.0,51.0,0.0,0.0]},"out":{"variable":[1412215.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1400.0,6380.0,1.0,0.0,0.0,4.0,7.0,700.0,700.0,47.7015,-122.316,1690.0,5800.0,91.0,0.0,0.0]},"out":{"variable":[394707.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1610.0,8976.0,1.0,0.0,0.0,4.0,8.0,1610.0,0.0,47.6011,-122.192,1930.0,8976.0,48.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1850.0,8770.0,2.0,0.0,0.0,3.0,8.0,1850.0,0.0,47.2091,-122.009,2350.0,8606.0,18.0,0.0,0.0]},"out":{"variable":[291857.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,2170.0,9948.0,2.0,0.0,0.0,3.0,7.0,2170.0,0.0,47.4263,-122.331,1500.0,9750.0,62.0,0.0,0.0]},"out":{"variable":[371795.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.25,1950.0,8086.0,1.0,0.0,0.0,3.0,7.0,1130.0,820.0,47.3179,-122.331,1670.0,8550.0,35.0,0.0,0.0]},"out":{"variable":[312429.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2080.0,87991.0,1.0,0.0,0.0,3.0,6.0,1040.0,1040.0,47.6724,-121.865,2080.0,84300.0,44.0,0.0,0.0]},"out":{"variable":[632114.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,2580.0,4500.0,2.0,0.0,0.0,4.0,9.0,1850.0,730.0,47.6245,-122.316,2590.0,4100.0,110.0,0.0,0.0]},"out":{"variable":[964052.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,2240.0,7725.0,1.0,0.0,0.0,5.0,7.0,1120.0,1120.0,47.5331,-122.365,1340.0,6300.0,58.0,0.0,0.0]},"out":{"variable":[423382.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,800.0,1200.0,2.0,0.0,0.0,3.0,7.0,800.0,0.0,47.6969,-122.347,806.0,1200.0,15.0,0.0,0.0]},"out":{"variable":[404484.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1980.0,3243.0,1.5,0.0,0.0,3.0,8.0,1980.0,0.0,47.6429,-122.327,1380.0,1249.0,102.0,0.0,0.0]},"out":{"variable":[577149.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,1280.0,1257.0,2.0,0.0,0.0,3.0,8.0,1040.0,240.0,47.6721,-122.374,1280.0,1249.0,14.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2000.0,14733.0,1.0,0.0,0.0,4.0,8.0,2000.0,0.0,47.6001,-122.178,2620.0,14733.0,57.0,0.0,0.0]},"out":{"variable":[581003.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1350.0,1493.0,2.0,0.0,0.0,3.0,8.0,1050.0,300.0,47.5421,-122.388,1250.0,1202.0,7.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1200.0,10890.0,1.0,0.0,0.0,5.0,7.0,1200.0,0.0,47.3423,-122.088,1250.0,10139.0,42.0,0.0,0.0]},"out":{"variable":[241330.19]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1850.0,7684.0,1.0,0.0,0.0,3.0,8.0,1320.0,530.0,47.2975,-122.37,1940.0,7630.0,35.0,0.0,0.0]},"out":{"variable":[291857.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1440.0,725.0,2.0,0.0,0.0,3.0,8.0,1100.0,340.0,47.5607,-122.378,1440.0,4255.0,3.0,0.0,0.0]},"out":{"variable":[447192.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1040.0,4240.0,1.0,0.0,0.0,4.0,7.0,860.0,180.0,47.6768,-122.367,1170.0,4240.0,90.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1088.0,1360.0,2.0,0.0,0.0,3.0,7.0,1088.0,0.0,47.7094,-122.213,1098.0,1469.0,31.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1260.0,15000.0,1.5,0.0,0.0,4.0,7.0,1260.0,0.0,47.2737,-122.153,2400.0,21715.0,32.0,0.0,0.0]},"out":{"variable":[254622.97]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2620.0,13777.0,1.5,0.0,2.0,4.0,9.0,1720.0,900.0,47.58,-122.285,3530.0,9287.0,88.0,0.0,0.0]},"out":{"variable":[1223839.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2260.0,41236.0,1.0,0.0,0.0,4.0,8.0,1690.0,570.0,47.5528,-122.034,3080.0,30240.0,53.0,0.0,0.0]},"out":{"variable":[695842.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1640.0,9234.0,1.0,0.0,0.0,5.0,7.0,1060.0,580.0,47.5162,-122.274,2230.0,10354.0,47.0,0.0,0.0]},"out":{"variable":[332134.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.25,3320.0,13138.0,1.0,0.0,2.0,4.0,9.0,1900.0,1420.0,47.759,-122.269,2820.0,13138.0,51.0,0.0,0.0]},"out":{"variable":[1108000.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1320.0,1824.0,1.5,0.0,0.0,4.0,6.0,1320.0,0.0,47.585,-122.294,1320.0,4000.0,105.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2250.0,10160.0,2.0,0.0,0.0,5.0,8.0,2250.0,0.0,47.5645,-122.219,2660.0,10125.0,48.0,0.0,0.0]},"out":{"variable":[684559.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1740.0,3690.0,2.0,0.0,0.0,3.0,8.0,1740.0,0.0,47.5345,-121.867,2100.0,4944.0,14.0,0.0,0.0]},"out":{"variable":[517771.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1730.0,4286.0,2.0,0.0,0.0,3.0,7.0,1730.0,0.0,47.432,-122.329,1780.0,4343.0,16.0,0.0,0.0]},"out":{"variable":[310164.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,1020.0,3200.0,1.0,0.0,0.0,3.0,7.0,1020.0,0.0,47.6361,-122.343,1670.0,3480.0,87.0,0.0,0.0]},"out":{"variable":[449699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1420.0,1438.0,2.0,0.0,0.0,3.0,9.0,1280.0,140.0,47.6265,-122.323,1490.0,1439.0,11.0,0.0,0.0]},"out":{"variable":[684577.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1180.0,1800.0,2.0,0.0,2.0,3.0,8.0,1180.0,0.0,47.6168,-122.301,1500.0,1948.0,21.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2800.0,12831.0,2.0,0.0,0.0,3.0,8.0,2800.0,0.0,47.7392,-121.966,2810.0,10235.0,13.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1320.0,9675.0,1.5,0.0,0.0,4.0,7.0,1320.0,0.0,47.5695,-121.902,1160.0,9675.0,44.0,0.0,0.0]},"out":{"variable":[438346.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1380.0,4590.0,1.0,0.0,0.0,2.0,7.0,930.0,450.0,47.6841,-122.293,1320.0,4692.0,64.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1340.0,4000.0,1.5,0.0,0.0,4.0,7.0,1340.0,0.0,47.6652,-122.288,1510.0,4000.0,87.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1580.0,14398.0,1.0,0.0,0.0,3.0,7.0,1080.0,500.0,47.6328,-122.174,1650.0,14407.0,34.0,0.0,0.0]},"out":{"variable":[558463.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,920.0,43560.0,1.0,0.0,0.0,4.0,5.0,920.0,0.0,47.5245,-121.931,1530.0,11875.0,91.0,0.0,0.0]},"out":{"variable":[243300.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1720.0,37363.0,1.0,0.0,0.0,4.0,8.0,1350.0,370.0,47.6608,-122.035,2740.0,40635.0,41.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,2940.0,5763.0,1.0,0.0,0.0,5.0,8.0,1640.0,1300.0,47.5589,-122.295,2020.0,7320.0,59.0,0.0,0.0]},"out":{"variable":[727968.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1730.0,10396.0,1.0,0.0,0.0,3.0,7.0,1730.0,0.0,47.4497,-122.168,1510.0,10396.0,51.0,0.0,0.0]},"out":{"variable":[300988.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1320.0,11090.0,1.0,0.0,0.0,3.0,7.0,1320.0,0.0,47.7748,-122.304,1320.0,8319.0,59.0,0.0,0.0]},"out":{"variable":[341649.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2250.0,8076.0,2.0,0.0,0.0,3.0,8.0,2250.0,0.0,47.3667,-122.041,2180.0,7244.0,19.0,0.0,0.0]},"out":{"variable":[343304.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,2260.0,280962.0,2.0,0.0,2.0,3.0,9.0,1890.0,370.0,47.6359,-121.94,2860.0,219542.0,9.0,0.0,0.0]},"out":{"variable":[735392.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2210.0,14073.0,1.0,0.0,0.0,3.0,8.0,1630.0,580.0,47.4774,-122.142,2340.0,11340.0,37.0,0.0,0.0]},"out":{"variable":[416774.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,3800.0,9606.0,2.0,0.0,0.0,3.0,9.0,3800.0,0.0,47.7368,-122.208,3400.0,9677.0,6.0,0.0,0.0]},"out":{"variable":[1039781.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1200.0,43560.0,1.0,0.0,0.0,3.0,5.0,1200.0,0.0,47.3375,-122.123,1400.0,54450.0,46.0,0.0,0.0]},"out":{"variable":[242656.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1380.0,5198.0,1.0,0.0,0.0,4.0,7.0,1380.0,0.0,47.5514,-122.357,1320.0,6827.0,33.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1480.0,8165.0,1.0,0.0,0.0,4.0,7.0,1480.0,0.0,47.3624,-122.079,1450.0,7939.0,30.0,0.0,0.0]},"out":{"variable":[256845.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1890.0,9646.0,1.0,0.0,0.0,3.0,8.0,1890.0,0.0,47.4838,-122.299,1580.0,9488.0,49.0,0.0,0.0]},"out":{"variable":[307947.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1260.0,11224.0,1.0,0.0,0.0,5.0,7.0,1260.0,0.0,47.7444,-122.321,1570.0,11052.0,67.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,4150.0,13232.0,2.0,0.0,0.0,3.0,11.0,4150.0,0.0,47.3417,-122.182,3840.0,15121.0,9.0,0.0,0.0]},"out":{"variable":[1042119.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,3070.0,8474.0,2.0,0.0,0.0,3.0,9.0,3070.0,0.0,47.6852,-122.184,3070.0,8527.0,3.0,0.0,0.0]},"out":{"variable":[837085.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2160.0,9540.0,2.0,0.0,0.0,3.0,8.0,2160.0,0.0,47.7668,-122.243,1720.0,12593.0,36.0,0.0,0.0]},"out":{"variable":[513083.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1280.0,10716.0,1.0,0.0,0.0,4.0,7.0,1280.0,0.0,47.4755,-122.145,1440.0,9870.0,45.0,0.0,0.0]},"out":{"variable":[243585.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2190.0,3746.0,2.0,0.0,0.0,3.0,8.0,2190.0,0.0,47.3896,-122.034,2200.0,3591.0,9.0,0.0,0.0]},"out":{"variable":[341472.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,930.0,7129.0,1.0,0.0,0.0,3.0,6.0,930.0,0.0,47.7234,-122.333,1300.0,8075.0,66.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,720.0,8040.0,1.0,0.0,0.0,3.0,6.0,720.0,0.0,47.4662,-122.359,2300.0,9500.0,71.0,0.0,0.0]},"out":{"variable":[251194.58]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1120.0,7250.0,1.0,0.0,0.0,4.0,7.0,1120.0,0.0,47.7143,-122.211,1340.0,7302.0,42.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1760.0,6150.0,1.5,0.0,0.0,3.0,7.0,1760.0,0.0,47.3871,-122.224,1760.0,8276.0,63.0,0.0,0.0]},"out":{"variable":[289684.22]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,1920.0,8259.0,2.0,0.0,0.0,4.0,8.0,1920.0,0.0,47.5616,-122.088,2030.0,8910.0,35.0,0.0,0.0]},"out":{"variable":[553463.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2590.0,6120.0,2.0,0.0,0.0,3.0,8.0,2590.0,0.0,47.6667,-122.327,1390.0,3060.0,105.0,0.0,0.0]},"out":{"variable":[715530.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1650.0,2710.0,2.0,0.0,2.0,3.0,8.0,1650.0,0.0,47.5173,-121.878,1760.0,2992.0,6.0,0.0,0.0]},"out":{"variable":[354512.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1280.0,8710.0,1.0,0.0,0.0,3.0,7.0,1280.0,0.0,47.4472,-122.16,1520.0,9375.0,47.0,0.0,0.0]},"out":{"variable":[245070.97]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1420.0,11040.0,1.0,0.0,0.0,4.0,7.0,1420.0,0.0,47.5969,-122.14,1530.0,8208.0,54.0,0.0,0.0]},"out":{"variable":[453195.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2330.0,33750.0,2.0,0.0,0.0,3.0,9.0,2330.0,0.0,47.4787,-121.723,2270.0,35000.0,32.0,1.0,18.0]},"out":{"variable":[521639.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1790.0,12000.0,1.0,0.0,0.0,3.0,7.0,1040.0,750.0,47.3945,-122.313,1840.0,12000.0,54.0,0.0,0.0]},"out":{"variable":[291872.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,3520.0,36558.0,2.0,0.0,0.0,4.0,8.0,2100.0,1420.0,47.4658,-122.007,3000.0,36558.0,29.0,0.0,0.0]},"out":{"variable":[475971.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2090.0,7416.0,1.0,0.0,0.0,4.0,7.0,1050.0,1040.0,47.4107,-122.179,1710.0,7527.0,44.0,0.0,0.0]},"out":{"variable":[349619.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1760.0,6300.0,1.0,0.0,0.0,3.0,7.0,1060.0,700.0,47.5003,-122.26,1340.0,7300.0,52.0,0.0,0.0]},"out":{"variable":[300446.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,1610.0,11201.0,1.0,0.0,0.0,5.0,7.0,1020.0,590.0,47.7024,-122.198,1610.0,9000.0,32.0,0.0,0.0]},"out":{"variable":[465401.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2630.0,48706.0,2.0,0.0,0.0,3.0,8.0,2630.0,0.0,47.775,-122.125,2680.0,48706.0,28.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1570.0,10824.0,2.0,0.0,0.0,3.0,7.0,1570.0,0.0,47.54,-122.275,1530.0,8125.0,107.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.25,2910.0,9454.0,1.0,0.0,1.0,3.0,8.0,1910.0,1000.0,47.5871,-122.173,2400.0,10690.0,42.0,0.0,0.0]},"out":{"variable":[711565.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2120.0,7620.0,2.0,0.0,0.0,3.0,8.0,2120.0,0.0,47.457,-122.346,1820.0,7620.0,43.0,1.0,31.0]},"out":{"variable":[404040.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2320.0,9420.0,1.0,0.0,0.0,5.0,7.0,2320.0,0.0,47.5133,-122.196,2030.0,9420.0,62.0,0.0,0.0]},"out":{"variable":[413013.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1010.0,1546.0,2.0,0.0,0.0,3.0,8.0,1010.0,0.0,47.5998,-122.311,1010.0,1517.0,44.0,1.0,43.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2730.0,5820.0,2.0,0.0,0.0,3.0,8.0,2730.0,0.0,47.4856,-122.154,2730.0,5700.0,0.0,0.0,0.0]},"out":{"variable":[457449.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,870.0,7227.0,1.0,0.0,0.0,3.0,7.0,870.0,0.0,47.7288,-122.331,1250.0,7252.0,66.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,820.0,681.0,3.0,0.0,0.0,3.0,8.0,820.0,0.0,47.6619,-122.352,820.0,1156.0,8.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2450.0,4187.0,2.0,0.0,2.0,3.0,8.0,2450.0,0.0,47.5471,-122.016,2320.0,4187.0,4.0,0.0,0.0]},"out":{"variable":[705013.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,3380.0,7074.0,2.0,0.0,0.0,3.0,8.0,2200.0,1180.0,47.7462,-121.978,2060.0,6548.0,15.0,0.0,0.0]},"out":{"variable":[597475.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1050.0,6250.0,1.0,0.0,0.0,4.0,6.0,840.0,210.0,47.5024,-122.333,1310.0,12500.0,72.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,770.0,4800.0,1.0,0.0,0.0,3.0,7.0,770.0,0.0,47.527,-122.383,1390.0,4800.0,71.0,0.0,0.0]},"out":{"variable":[313906.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1600.0,7350.0,1.0,0.0,0.0,4.0,7.0,1600.0,0.0,47.6977,-122.126,1600.0,7200.0,35.0,0.0,0.0]},"out":{"variable":[469038.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1930.0,13350.0,1.0,0.0,0.0,3.0,8.0,1930.0,0.0,47.3317,-122.365,2270.0,13350.0,48.0,0.0,0.0]},"out":{"variable":[306159.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1330.0,13102.0,1.0,0.0,0.0,3.0,7.0,1330.0,0.0,47.3172,-122.322,1270.0,11475.0,46.0,0.0,0.0]},"out":{"variable":[244380.27]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2640.0,4000.0,2.0,0.0,0.0,5.0,8.0,1730.0,910.0,47.6727,-122.297,1530.0,3740.0,89.0,0.0,0.0]},"out":{"variable":[718445.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,850.0,2340.0,1.0,0.0,0.0,3.0,7.0,850.0,0.0,47.6707,-122.328,1300.0,3000.0,92.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2070.0,7995.0,1.0,0.0,0.0,3.0,7.0,1350.0,720.0,47.403,-122.175,1620.0,6799.0,28.0,0.0,0.0]},"out":{"variable":[349100.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1680.0,4226.0,2.0,0.0,0.0,3.0,8.0,1680.0,0.0,47.3684,-122.123,1800.0,5559.0,12.0,0.0,0.0]},"out":{"variable":[289727.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1350.0,2560.0,1.0,0.0,0.0,4.0,8.0,1350.0,0.0,47.6338,-122.106,1800.0,2560.0,41.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,3010.0,7215.0,2.0,0.0,0.0,3.0,9.0,3010.0,0.0,47.6952,-122.178,3010.0,7215.0,0.0,0.0,0.0]},"out":{"variable":[795841.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1260.0,10350.0,1.0,0.0,0.0,3.0,7.0,1260.0,0.0,47.6357,-122.123,1800.0,10350.0,55.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1930.0,5570.0,1.0,0.0,0.0,3.0,8.0,1930.0,0.0,47.7173,-122.034,1810.0,5178.0,9.0,0.0,0.0]},"out":{"variable":[444885.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1850.0,7850.0,2.0,0.0,0.0,3.0,8.0,1850.0,0.0,47.6914,-122.103,1830.0,8140.0,29.0,0.0,0.0]},"out":{"variable":[550183.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1100.0,11824.0,1.0,0.0,0.0,4.0,7.0,1100.0,0.0,47.5704,-122.141,1380.0,11796.0,60.0,0.0,0.0]},"out":{"variable":[438346.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2910.0,6334.0,2.0,0.0,0.0,3.0,8.0,2910.0,0.0,47.4826,-121.771,2790.0,6352.0,1.0,0.0,0.0]},"out":{"variable":[463718.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2060.0,7080.0,2.0,0.0,0.0,3.0,9.0,1800.0,260.0,47.6455,-122.409,3070.0,7500.0,75.0,0.0,0.0]},"out":{"variable":[904204.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2700.0,37011.0,2.0,0.0,0.0,3.0,9.0,2700.0,0.0,47.3496,-122.088,2700.0,37457.0,30.0,0.0,0.0]},"out":{"variable":[490051.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1990.0,4740.0,1.0,0.0,0.0,3.0,7.0,1080.0,910.0,47.6112,-122.303,1560.0,2370.0,89.0,0.0,0.0]},"out":{"variable":[581003.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,4300.0,70407.0,2.0,0.0,0.0,3.0,10.0,2710.0,1590.0,47.4472,-122.092,3520.0,26727.0,22.0,0.0,0.0]},"out":{"variable":[1115275.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1680.0,81893.0,1.0,0.0,0.0,3.0,7.0,1680.0,0.0,47.3248,-122.179,2480.0,38637.0,23.0,0.0,0.0]},"out":{"variable":[290987.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2040.0,12000.0,1.0,0.0,0.0,4.0,7.0,1300.0,740.0,47.7362,-122.241,1930.0,12000.0,52.0,0.0,0.0]},"out":{"variable":[477541.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2190.0,125452.0,1.0,0.0,2.0,3.0,9.0,2190.0,0.0,47.2703,-122.069,3000.0,125017.0,46.0,0.0,0.0]},"out":{"variable":[656707.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2220.0,11646.0,1.0,0.0,0.0,3.0,7.0,1270.0,950.0,47.7762,-122.27,1490.0,10003.0,64.0,0.0,0.0]},"out":{"variable":[513264.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1680.0,11193.0,2.0,0.0,0.0,3.0,8.0,1680.0,0.0,47.4482,-122.125,2080.0,8084.0,30.0,0.0,0.0]},"out":{"variable":[311515.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,3460.0,7977.0,2.0,0.0,0.0,3.0,9.0,3460.0,0.0,47.5908,-122.062,3390.0,6630.0,3.0,0.0,0.0]},"out":{"variable":[879092.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2717.0,4513.0,2.0,0.0,0.0,3.0,8.0,2717.0,0.0,47.3373,-122.266,2550.0,4841.0,9.0,0.0,0.0]},"out":{"variable":[371040.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,0.75,1020.0,1076.0,2.0,0.0,0.0,3.0,7.0,1020.0,0.0,47.5941,-122.299,1020.0,1357.0,6.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1490.0,4522.0,2.0,0.0,0.0,3.0,7.0,1490.0,0.0,47.7611,-122.233,1580.0,4667.0,5.0,0.0,0.0]},"out":{"variable":[417980.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,840.0,7020.0,1.5,0.0,0.0,4.0,7.0,840.0,0.0,47.5513,-122.394,1310.0,7072.0,72.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1970.0,4590.0,2.5,0.0,0.0,3.0,7.0,1970.0,0.0,47.666,-122.332,1900.0,4590.0,105.0,0.0,0.0]},"out":{"variable":[572709.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,820.0,3700.0,1.0,0.0,0.0,5.0,7.0,820.0,0.0,47.588,-122.251,1750.0,9000.0,46.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2701.0,4500.0,2.0,0.0,0.0,3.0,9.0,2701.0,0.0,47.2586,-122.194,2570.0,4800.0,0.0,0.0,0.0]},"out":{"variable":[467855.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1340.0,8867.0,2.0,0.0,0.0,3.0,8.0,1340.0,0.0,47.724,-122.327,1630.0,7287.0,30.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2420.0,10200.0,1.0,0.0,0.0,3.0,8.0,1220.0,1200.0,47.72,-122.236,2240.0,9750.0,53.0,0.0,0.0]},"out":{"variable":[538316.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1340.0,7788.0,1.0,0.0,2.0,3.0,7.0,1340.0,0.0,47.5094,-122.244,2550.0,7788.0,67.0,0.0,0.0]},"out":{"variable":[278475.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,940.0,9839.0,1.0,0.0,0.0,3.0,6.0,940.0,0.0,47.5379,-122.386,1330.0,8740.0,104.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,4.0,2080.0,2250.0,3.0,0.0,4.0,3.0,8.0,2080.0,0.0,47.6598,-122.355,2080.0,2250.0,17.0,0.0,0.0]},"out":{"variable":[656923.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1810.0,8232.0,1.0,0.0,0.0,3.0,8.0,1810.0,0.0,47.3195,-122.273,2260.0,8491.0,27.0,0.0,0.0]},"out":{"variable":[291239.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1030.0,3000.0,1.0,0.0,0.0,3.0,7.0,830.0,200.0,47.6813,-122.317,1830.0,3000.0,90.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1170.0,5248.0,1.0,0.0,0.0,5.0,6.0,1170.0,0.0,47.5318,-122.374,1170.0,5120.0,74.0,0.0,0.0]},"out":{"variable":[260266.48]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2830.0,3750.0,3.0,0.0,0.0,3.0,10.0,2830.0,0.0,47.6799,-122.385,1780.0,5000.0,0.0,0.0,0.0]},"out":{"variable":[937359.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,3310.0,8540.0,1.0,0.0,4.0,4.0,9.0,1660.0,1650.0,47.5603,-122.158,3450.0,9566.0,41.0,0.0,0.0]},"out":{"variable":[921561.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,2.0,3000.0,204732.0,2.5,0.0,2.0,3.0,8.0,3000.0,0.0,47.6331,-121.945,2330.0,213008.0,35.0,0.0,0.0]},"out":{"variable":[716558.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,900.0,5000.0,1.0,0.0,0.0,3.0,7.0,900.0,0.0,47.6883,-122.395,1280.0,5000.0,70.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2580.0,7344.0,2.0,0.0,0.0,3.0,8.0,2580.0,0.0,47.5647,-122.09,2390.0,7507.0,37.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1990.0,4040.0,1.5,0.0,0.0,5.0,8.0,1390.0,600.0,47.6867,-122.354,1180.0,3030.0,88.0,0.0,0.0]},"out":{"variable":[581003.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1440.0,1102.0,3.0,0.0,0.0,3.0,8.0,1440.0,0.0,47.6995,-122.346,1440.0,1434.0,6.0,0.0,0.0]},"out":{"variable":[408956.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,5010.0,49222.0,2.0,0.0,0.0,5.0,9.0,3710.0,1300.0,47.5489,-122.092,3140.0,54014.0,36.0,0.0,0.0]},"out":{"variable":[1092274.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1770.0,5750.0,2.0,0.0,0.0,3.0,7.0,1770.0,0.0,47.5621,-122.394,970.0,5750.0,67.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,1790.0,7203.0,1.0,0.0,0.0,4.0,7.0,1110.0,680.0,47.7709,-122.294,2270.0,9000.0,41.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2470.0,4760.0,1.5,0.0,0.0,5.0,9.0,1890.0,580.0,47.6331,-122.31,2470.0,4760.0,108.0,0.0,0.0]},"out":{"variable":[957189.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2060.0,5721.0,1.0,0.0,2.0,3.0,9.0,1140.0,920.0,47.5268,-122.388,2060.0,8124.0,50.0,0.0,0.0]},"out":{"variable":[764936.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1240.0,720.0,2.0,0.0,0.0,3.0,7.0,1150.0,90.0,47.5322,-122.072,1260.0,810.0,7.0,0.0,0.0]},"out":{"variable":[258321.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,4.0,4100.0,8120.0,2.0,0.0,0.0,3.0,9.0,4100.0,0.0,47.6917,-122.02,4100.0,7625.0,3.0,0.0,0.0]},"out":{"variable":[987974.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1680.0,7910.0,1.0,0.0,0.0,3.0,7.0,1680.0,0.0,47.5085,-122.385,1330.0,7910.0,66.0,0.0,0.0]},"out":{"variable":[323856.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1400.0,6600.0,1.0,0.0,0.0,3.0,6.0,1280.0,120.0,47.4845,-122.331,1730.0,6600.0,60.0,0.0,0.0]},"out":{"variable":[259955.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.75,4410.0,8112.0,3.0,0.0,4.0,3.0,11.0,3570.0,840.0,47.5888,-122.392,2770.0,5750.0,12.0,0.0,0.0]},"out":{"variable":[1967344.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.75,3710.0,34412.0,2.0,0.0,0.0,3.0,10.0,2910.0,800.0,47.5888,-122.04,2390.0,34412.0,36.0,0.0,0.0]},"out":{"variable":[924823.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3450.0,35100.0,2.0,0.0,0.0,3.0,10.0,3450.0,0.0,47.7302,-122.106,3110.0,35894.0,27.0,0.0,0.0]},"out":{"variable":[921695.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1810.0,5080.0,1.0,0.0,0.0,3.0,7.0,1030.0,780.0,47.6819,-122.287,1780.0,7620.0,57.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,1850.0,16960.0,1.0,0.0,2.0,4.0,8.0,1850.0,0.0,47.7128,-122.365,2470.0,13761.0,61.0,0.0,0.0]},"out":{"variable":[440821.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1570.0,6300.0,1.0,0.0,0.0,3.0,7.0,820.0,750.0,47.5565,-122.275,1510.0,4281.0,61.0,1.0,52.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2140.0,13260.0,1.0,0.0,0.0,3.0,7.0,1240.0,900.0,47.5074,-122.353,1640.0,13260.0,66.0,0.0,0.0]},"out":{"variable":[388243.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,4750.0,21701.0,1.5,0.0,0.0,5.0,11.0,4750.0,0.0,47.6454,-122.218,3120.0,18551.0,38.0,0.0,0.0]},"out":{"variable":[2002393.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1270.0,2509.0,2.0,0.0,0.0,3.0,8.0,1270.0,0.0,47.5357,-122.365,1420.0,2206.0,10.0,0.0,0.0]},"out":{"variable":[431992.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2030.0,4867.0,2.0,0.0,0.0,3.0,7.0,2030.0,0.0,47.3747,-122.128,2030.0,5000.0,12.0,0.0,0.0]},"out":{"variable":[327625.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1520.0,4170.0,2.0,0.0,0.0,3.0,7.0,1520.0,0.0,47.3842,-122.04,1560.0,4237.0,10.0,0.0,0.0]},"out":{"variable":[261886.92]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,1570.0,499571.0,1.0,0.0,3.0,4.0,7.0,1570.0,0.0,47.1808,-122.023,1700.0,181708.0,42.0,0.0,0.0]},"out":{"variable":[303082.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,2500.0,7620.0,1.0,0.0,3.0,3.0,7.0,1250.0,1250.0,47.5298,-122.344,2020.0,7620.0,53.0,0.0,0.0]},"out":{"variable":[474010.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.25,3070.0,64033.0,1.0,0.0,0.0,3.0,9.0,2730.0,340.0,47.3238,-122.292,1560.0,28260.0,31.0,0.0,0.0]},"out":{"variable":[536388.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,3060.0,8862.0,2.0,0.0,0.0,3.0,8.0,3060.0,0.0,47.5322,-122.185,2680.0,8398.0,26.0,0.0,0.0]},"out":{"variable":[481600.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1250.0,8400.0,1.0,0.0,0.0,3.0,7.0,960.0,290.0,47.7505,-122.315,1560.0,8400.0,64.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1670.0,8800.0,1.0,0.0,0.0,4.0,7.0,1150.0,520.0,47.6096,-122.132,2020.0,8250.0,53.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,4115.0,7910.0,2.0,0.0,0.0,3.0,9.0,4115.0,0.0,47.6847,-122.016,3950.0,6765.0,0.0,0.0,0.0]},"out":{"variable":[988481.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,2680.0,15438.0,2.0,0.0,2.0,3.0,8.0,2680.0,0.0,47.6109,-122.226,4480.0,14406.0,113.0,1.0,54.0]},"out":{"variable":[747075.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1150.0,6600.0,1.5,0.0,0.0,4.0,6.0,1150.0,0.0,47.6709,-122.185,1530.0,6600.0,44.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1650.0,1180.0,3.0,0.0,0.0,3.0,8.0,1650.0,0.0,47.6636,-122.319,1720.0,1960.0,0.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1850.0,2575.0,2.0,0.0,0.0,3.0,9.0,1850.0,0.0,47.5525,-122.273,1080.0,4120.0,1.0,0.0,0.0]},"out":{"variable":[723935.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1560.0,3840.0,1.0,0.0,0.0,4.0,6.0,960.0,600.0,47.6882,-122.365,1560.0,4800.0,90.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,5790.0,13726.0,2.0,0.0,3.0,3.0,10.0,4430.0,1360.0,47.5388,-122.114,5790.0,13726.0,0.0,0.0,0.0]},"out":{"variable":[1189654.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2070.0,2992.0,2.0,0.0,0.0,3.0,8.0,2070.0,0.0,47.4496,-122.12,1900.0,2957.0,13.0,0.0,0.0]},"out":{"variable":[400536.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,980.0,6380.0,1.0,0.0,0.0,3.0,7.0,760.0,220.0,47.692,-122.308,1390.0,6380.0,73.0,0.0,0.0]},"out":{"variable":[444933.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2110.0,5000.0,1.5,0.0,0.0,4.0,7.0,1250.0,860.0,47.6745,-122.287,1720.0,5000.0,69.0,0.0,0.0]},"out":{"variable":[656396.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,740.0,6250.0,1.0,0.0,0.0,3.0,6.0,740.0,0.0,47.506,-122.335,980.0,6957.0,72.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1140.0,5258.0,1.5,0.0,0.0,3.0,6.0,1140.0,0.0,47.5122,-122.383,1140.0,5280.0,103.0,0.0,0.0]},"out":{"variable":[312719.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,2298.0,10140.0,1.0,0.0,0.0,3.0,7.0,2298.0,0.0,47.6909,-122.083,2580.0,24724.0,46.0,0.0,0.0]},"out":{"variable":[683869.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,890.0,9465.0,1.0,0.0,0.0,3.0,6.0,890.0,0.0,47.4388,-122.328,1590.0,9147.0,57.0,0.0,0.0]},"out":{"variable":[240212.22]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1950.0,5451.0,2.0,0.0,0.0,3.0,7.0,1950.0,0.0,47.4341,-122.144,2240.0,6221.0,10.0,0.0,0.0]},"out":{"variable":[350049.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,830.0,26329.0,1.0,1.0,3.0,4.0,6.0,830.0,0.0,47.4012,-122.425,2030.0,27338.0,86.0,0.0,0.0]},"out":{"variable":[379398.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,3570.0,6250.0,2.0,0.0,2.0,3.0,10.0,2710.0,860.0,47.5624,-122.399,2550.0,7596.0,30.0,0.0,0.0]},"out":{"variable":[1124493.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,3170.0,34850.0,1.0,0.0,0.0,5.0,9.0,3170.0,0.0,47.6611,-122.169,3920.0,36740.0,58.0,0.0,0.0]},"out":{"variable":[1227073.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,3260.0,19542.0,1.0,0.0,0.0,4.0,10.0,2170.0,1090.0,47.6245,-122.236,3480.0,19863.0,46.0,0.0,0.0]},"out":{"variable":[1364650.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1210.0,4141.0,1.0,0.0,0.0,4.0,7.0,910.0,300.0,47.686,-122.382,1310.0,4141.0,72.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,4020.0,18745.0,2.0,0.0,4.0,4.0,10.0,2830.0,1190.0,47.6042,-122.21,3150.0,20897.0,26.0,0.0,0.0]},"out":{"variable":[1322835.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1930.0,10183.0,1.0,0.0,0.0,4.0,8.0,1480.0,450.0,47.5624,-122.135,2320.0,10000.0,39.0,0.0,0.0]},"out":{"variable":[559453.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1240.0,5758.0,1.5,0.0,0.0,4.0,6.0,960.0,280.0,47.5675,-122.396,1460.0,5750.0,105.0,0.0,0.0]},"out":{"variable":[437002.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1730.0,4102.0,3.0,1.0,4.0,3.0,8.0,1730.0,0.0,47.645,-122.084,2340.0,16994.0,19.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2160.0,10987.0,1.0,0.0,0.0,4.0,8.0,1440.0,720.0,47.6333,-122.034,1280.0,11617.0,34.0,1.0,22.0]},"out":{"variable":[673288.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1770.0,30689.0,1.0,0.0,4.0,3.0,9.0,1770.0,0.0,47.7648,-122.37,2650.0,30280.0,62.0,0.0,0.0]},"out":{"variable":[836230.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,3001.0,5710.0,2.0,0.0,0.0,3.0,8.0,3001.0,0.0,47.3727,-122.177,2340.0,5980.0,8.0,0.0,0.0]},"out":{"variable":[379076.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,962.0,1992.0,2.0,0.0,0.0,3.0,7.0,962.0,0.0,47.6911,-122.313,1130.0,1992.0,3.0,0.0,0.0]},"out":{"variable":[446768.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2350.0,5100.0,2.0,0.0,0.0,3.0,8.0,2350.0,0.0,47.3512,-122.008,2350.0,5363.0,11.0,0.0,0.0]},"out":{"variable":[349102.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1750.0,14400.0,1.0,0.0,0.0,4.0,7.0,1750.0,0.0,47.4535,-122.361,2030.0,14400.0,63.0,0.0,0.0]},"out":{"variable":[313096.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1620.0,1171.0,3.0,0.0,4.0,3.0,8.0,1470.0,150.0,47.6681,-122.355,1620.0,1505.0,6.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1410.0,5101.0,1.5,0.0,0.0,3.0,8.0,1410.0,0.0,47.6872,-122.333,1410.0,4224.0,87.0,0.0,0.0]},"out":{"variable":[450928.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,990.0,8140.0,1.0,0.0,0.0,1.0,6.0,990.0,0.0,47.5828,-122.382,2150.0,5000.0,105.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2690.0,7000.0,2.0,0.0,0.0,5.0,7.0,1840.0,850.0,47.6784,-122.277,1800.0,6435.0,71.0,0.0,0.0]},"out":{"variable":[718445.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2240.0,4616.0,2.0,0.0,0.0,3.0,7.0,1840.0,400.0,47.5118,-122.194,2260.0,5200.0,14.0,0.0,0.0]},"out":{"variable":[407385.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,810.0,4080.0,1.0,0.0,0.0,4.0,6.0,810.0,0.0,47.5337,-122.379,1400.0,4080.0,73.0,0.0,0.0]},"out":{"variable":[375011.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1240.0,10956.0,1.0,0.0,0.0,3.0,6.0,1240.0,0.0,47.3705,-122.15,1240.0,8137.0,27.0,0.0,0.0]},"out":{"variable":[243063.14]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2550.0,7555.0,2.0,0.0,0.0,3.0,8.0,2550.0,0.0,47.2614,-122.29,2550.0,6800.0,13.0,0.0,0.0]},"out":{"variable":[353912.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,770.0,6731.0,1.0,0.0,0.0,4.0,6.0,770.0,0.0,47.7505,-122.312,1120.0,9212.0,72.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3450.0,7832.0,2.0,0.0,0.0,3.0,10.0,3450.0,0.0,47.5637,-122.123,3220.0,8567.0,7.0,0.0,0.0]},"out":{"variable":[921695.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1660.0,2890.0,2.0,0.0,0.0,3.0,7.0,1660.0,0.0,47.5434,-122.293,1540.0,2890.0,14.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1450.0,5456.0,1.0,0.0,0.0,5.0,7.0,1450.0,0.0,47.5442,-122.297,980.0,6100.0,63.0,0.0,0.0]},"out":{"variable":[451058.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1170.0,6543.0,1.0,0.0,0.0,3.0,7.0,1170.0,0.0,47.537,-122.385,1550.0,7225.0,101.0,0.0,0.0]},"out":{"variable":[434534.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2750.0,11830.0,2.0,0.0,0.0,3.0,9.0,2750.0,0.0,47.4698,-122.121,2310.0,11830.0,0.0,0.0,0.0]},"out":{"variable":[515844.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2060.0,2900.0,1.5,0.0,0.0,5.0,8.0,1330.0,730.0,47.5897,-122.292,1910.0,3900.0,84.0,0.0,0.0]},"out":{"variable":[630865.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2350.0,20820.0,1.0,0.0,0.0,4.0,8.0,1800.0,550.0,47.6095,-122.059,2040.0,10800.0,36.0,0.0,0.0]},"out":{"variable":[700294.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1160.0,3700.0,1.5,0.0,0.0,3.0,7.0,1160.0,0.0,47.5651,-122.359,1340.0,3750.0,105.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2070.0,9600.0,1.0,0.0,1.0,3.0,7.0,1590.0,480.0,47.616,-122.239,3000.0,16215.0,68.0,0.0,0.0]},"out":{"variable":[636559.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2490.0,5812.0,2.0,0.0,0.0,3.0,8.0,2490.0,0.0,47.3875,-122.155,2690.0,6012.0,14.0,0.0,0.0]},"out":{"variable":[352272.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,980.0,3800.0,1.0,0.0,0.0,3.0,7.0,980.0,0.0,47.6903,-122.34,1520.0,5010.0,89.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1130.0,2640.0,1.0,0.0,0.0,4.0,8.0,1130.0,0.0,47.6438,-122.357,1680.0,3200.0,87.0,0.0,0.0]},"out":{"variable":[449699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,0.75,1240.0,4000.0,1.0,0.0,0.0,4.0,7.0,1240.0,0.0,47.6239,-122.297,1460.0,4000.0,47.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1400.0,2036.0,2.0,0.0,0.0,3.0,7.0,1400.0,0.0,47.5516,-122.382,1500.0,2036.0,11.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1530.0,8500.0,1.0,0.0,0.0,5.0,7.0,1030.0,500.0,47.3592,-122.046,1850.0,8140.0,19.0,0.0,0.0]},"out":{"variable":[281411.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1830.0,8133.0,1.0,0.0,0.0,3.0,8.0,1390.0,440.0,47.7478,-122.247,2310.0,11522.0,19.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2570.0,10431.0,2.0,0.0,0.0,3.0,9.0,2570.0,0.0,47.4188,-122.213,2590.0,10078.0,25.0,0.0,0.0]},"out":{"variable":[482485.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1760.0,4125.0,1.5,0.0,3.0,4.0,7.0,1760.0,0.0,47.6748,-122.352,1760.0,4000.0,87.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2990.0,5669.0,2.0,0.0,0.0,3.0,8.0,2990.0,0.0,47.6119,-122.011,3110.0,5058.0,11.0,0.0,0.0]},"out":{"variable":[728707.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,2480.0,5500.0,2.0,0.0,3.0,3.0,10.0,1730.0,750.0,47.6466,-122.404,2950.0,5670.0,64.0,1.0,55.0]},"out":{"variable":[1100884.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1240.0,8410.0,1.0,0.0,0.0,5.0,6.0,1240.0,0.0,47.753,-122.328,1630.0,8410.0,67.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2720.0,5000.0,1.5,0.0,0.0,4.0,7.0,1530.0,1190.0,47.6827,-122.376,1210.0,5000.0,75.0,0.0,0.0]},"out":{"variable":[718445.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3880.0,14550.0,2.0,0.0,0.0,3.0,10.0,3880.0,0.0,47.6378,-122.04,3240.0,14045.0,27.0,0.0,0.0]},"out":{"variable":[946325.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2460.0,38794.0,2.0,0.0,0.0,3.0,9.0,2460.0,0.0,47.7602,-122.022,2470.0,51400.0,16.0,0.0,0.0]},"out":{"variable":[721143.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,920.0,4095.0,1.0,0.0,0.0,4.0,6.0,920.0,0.0,47.5484,-122.278,1460.0,4945.0,100.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,2330.0,7280.0,1.0,0.0,0.0,3.0,7.0,1450.0,880.0,47.4282,-122.28,1830.0,12178.0,33.0,0.0,0.0]},"out":{"variable":[392393.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1900.0,8160.0,1.0,0.0,0.0,3.0,7.0,1900.0,0.0,47.2114,-121.986,1280.0,6532.0,40.0,0.0,0.0]},"out":{"variable":[287576.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3820.0,17745.0,2.0,0.0,2.0,3.0,8.0,2440.0,1380.0,47.557,-122.295,2520.0,9640.0,59.0,0.0,0.0]},"out":{"variable":[785664.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,2840.0,7199.0,1.0,0.0,0.0,3.0,7.0,1710.0,1130.0,47.5065,-122.275,2210.0,10800.0,11.0,0.0,0.0]},"out":{"variable":[432908.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1580.0,507038.0,1.0,0.0,2.0,4.0,7.0,1580.0,0.0,47.2303,-121.936,2040.0,210394.0,29.0,0.0,0.0]},"out":{"variable":[311536.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2650.0,18295.0,2.0,0.0,0.0,3.0,8.0,2650.0,0.0,47.6075,-122.154,2230.0,19856.0,28.0,0.0,0.0]},"out":{"variable":[706407.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1260.0,8092.0,1.0,0.0,0.0,3.0,7.0,1260.0,0.0,47.3635,-122.054,1950.0,8092.0,28.0,0.0,0.0]},"out":{"variable":[253958.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1960.0,8136.0,1.0,0.0,0.0,3.0,7.0,980.0,980.0,47.5208,-122.364,1070.0,7480.0,66.0,0.0,0.0]},"out":{"variable":[365436.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2210.0,7620.0,2.0,0.0,0.0,3.0,8.0,2210.0,0.0,47.6938,-122.13,1920.0,7440.0,20.0,0.0,0.0]},"out":{"variable":[677870.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,3160.0,10587.0,1.0,0.0,0.0,5.0,7.0,2190.0,970.0,47.7238,-122.165,2200.0,7761.0,55.0,0.0,0.0]},"out":{"variable":[573403.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2280.0,7500.0,1.0,0.0,0.0,4.0,7.0,1140.0,1140.0,47.4182,-122.332,1660.0,8000.0,51.0,0.0,0.0]},"out":{"variable":[380461.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2870.0,6658.0,2.0,0.0,0.0,3.0,8.0,2870.0,0.0,47.5394,-121.878,2770.0,6658.0,11.0,0.0,0.0]},"out":{"variable":[713358.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,2570.0,4000.0,2.0,0.0,0.0,3.0,8.0,1750.0,820.0,47.6743,-122.313,1970.0,4000.0,105.0,1.0,105.0]},"out":{"variable":[713979.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1220.0,3000.0,1.5,0.0,0.0,3.0,6.0,1220.0,0.0,47.6506,-122.346,1350.0,3000.0,114.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1140.0,1069.0,3.0,0.0,0.0,3.0,8.0,1140.0,0.0,47.6907,-122.342,1230.0,1276.0,10.0,0.0,0.0]},"out":{"variable":[446768.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1700.0,6356.0,1.5,0.0,0.0,3.0,7.0,1700.0,0.0,47.5677,-122.281,2080.0,6000.0,107.0,0.0,0.0]},"out":{"variable":[548006.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1280.0,4366.0,2.0,0.0,0.0,4.0,6.0,1280.0,0.0,47.335,-122.215,1280.0,4366.0,29.0,0.0,0.0]},"out":{"variable":[243063.14]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.75,1465.0,972.0,2.0,0.0,0.0,3.0,7.0,1050.0,415.0,47.621,-122.298,1480.0,1430.0,8.0,0.0,0.0]},"out":{"variable":[498579.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[7.0,3.25,4340.0,8521.0,2.0,0.0,0.0,3.0,7.0,2550.0,1790.0,47.52,-122.338,1890.0,8951.0,28.0,0.0,0.0]},"out":{"variable":[474651.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2640.0,3750.0,2.0,0.0,0.0,5.0,7.0,1840.0,800.0,47.6783,-122.363,1690.0,5000.0,103.0,0.0,0.0]},"out":{"variable":[718445.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1397.0,18000.0,1.0,0.0,0.0,3.0,7.0,1397.0,0.0,47.3388,-122.166,1950.0,31294.0,49.0,1.0,49.0]},"out":{"variable":[261201.17]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1590.0,87120.0,1.0,0.0,3.0,3.0,8.0,1590.0,0.0,47.2241,-122.072,2780.0,183161.0,16.0,0.0,0.0]},"out":{"variable":[318011.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,4.0,4660.0,9900.0,2.0,0.0,2.0,4.0,9.0,2600.0,2060.0,47.5135,-122.2,3380.0,9900.0,35.0,0.0,0.0]},"out":{"variable":[1058105.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1260.0,1312.0,3.0,0.0,0.0,3.0,8.0,1260.0,0.0,47.6538,-122.356,1300.0,1312.0,7.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,930.0,6098.0,1.0,0.0,0.0,4.0,6.0,930.0,0.0,47.5289,-122.03,1730.0,9000.0,95.0,0.0,0.0]},"out":{"variable":[246901.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,1230.0,3774.0,1.0,0.0,0.0,4.0,6.0,830.0,400.0,47.6886,-122.354,1300.0,3774.0,90.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1470.0,1703.0,2.0,0.0,0.0,3.0,8.0,1470.0,0.0,47.5478,-121.999,1380.0,1107.0,9.0,0.0,0.0]},"out":{"variable":[504122.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2120.0,5277.0,2.0,0.0,0.0,3.0,7.0,2120.0,0.0,47.6811,-122.034,2370.0,5257.0,10.0,0.0,0.0]},"out":{"variable":[657905.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1780.0,2778.0,2.0,0.0,0.0,3.0,8.0,1530.0,250.0,47.5487,-122.372,1380.0,1998.0,7.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1860.0,3840.0,1.5,0.0,0.0,3.0,7.0,1170.0,690.0,47.6886,-122.359,1400.0,3840.0,87.0,1.0,86.0]},"out":{"variable":[560013.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,1700.0,7495.0,1.0,0.0,0.0,4.0,7.0,1200.0,500.0,47.7589,-122.354,1650.0,7495.0,51.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3770.0,8501.0,2.0,0.0,0.0,3.0,10.0,3770.0,0.0,47.6744,-122.196,1520.0,9660.0,6.0,0.0,0.0]},"out":{"variable":[1169643.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1740.0,30886.0,2.0,0.0,0.0,3.0,8.0,1740.0,0.0,47.46,-121.707,1740.0,39133.0,22.0,0.0,0.0]},"out":{"variable":[306037.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,980.0,9135.0,1.0,0.0,0.0,3.0,7.0,980.0,0.0,47.3496,-122.289,1780.0,9135.0,59.0,0.0,0.0]},"out":{"variable":[247640.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1680.0,5000.0,2.0,0.0,0.0,3.0,8.0,1680.0,0.0,47.3196,-122.395,1720.0,5000.0,27.0,0.0,0.0]},"out":{"variable":[296411.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2330.0,4950.0,1.5,0.0,0.0,3.0,6.0,1430.0,900.0,47.5585,-122.29,1160.0,5115.0,114.0,0.0,0.0]},"out":{"variable":[689450.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1630.0,1526.0,3.0,0.0,0.0,3.0,8.0,1630.0,0.0,47.6536,-122.354,1570.0,1274.0,0.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2040.0,3810.0,2.0,0.0,0.0,3.0,8.0,2040.0,0.0,47.3537,-122.0,2370.0,4590.0,9.0,0.0,0.0]},"out":{"variable":[328513.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.0,2280.0,5750.0,1.0,0.0,0.0,4.0,8.0,1140.0,1140.0,47.5672,-122.39,1780.0,5750.0,64.0,0.0,0.0]},"out":{"variable":[682284.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1350.0,10125.0,1.0,0.0,0.0,3.0,8.0,1350.0,0.0,47.3334,-122.298,1520.0,9720.0,48.0,0.0,0.0]},"out":{"variable":[248495.05]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.0,2050.0,10200.0,1.0,0.0,0.0,3.0,6.0,1430.0,620.0,47.4136,-122.333,1940.0,8625.0,58.0,0.0,0.0]},"out":{"variable":[355371.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1480.0,4800.0,2.0,0.0,0.0,4.0,7.0,1140.0,340.0,47.6567,-122.397,1810.0,4800.0,70.0,0.0,0.0]},"out":{"variable":[536175.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2990.0,15085.0,2.0,0.0,0.0,3.0,9.0,2990.0,0.0,47.746,-122.218,3150.0,13076.0,8.0,0.0,0.0]},"out":{"variable":[810731.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1450.0,4500.0,1.5,0.0,0.0,4.0,7.0,1450.0,0.0,47.6739,-122.396,1470.0,5000.0,93.0,0.0,0.0]},"out":{"variable":[464057.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1200.0,2002.0,2.0,0.0,0.0,3.0,8.0,1200.0,0.0,47.4659,-122.189,1270.0,1848.0,48.0,0.0,0.0]},"out":{"variable":[241852.33]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,2.75,3500.0,5150.0,2.0,0.0,0.0,5.0,8.0,2430.0,1070.0,47.6842,-122.363,1430.0,3860.0,105.0,0.0,0.0]},"out":{"variable":[784103.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2190.0,4944.0,2.0,0.0,0.0,3.0,8.0,2190.0,0.0,47.5341,-121.866,2190.0,5108.0,16.0,0.0,0.0]},"out":{"variable":[598725.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2630.0,4611.0,2.0,0.0,0.0,3.0,8.0,2630.0,0.0,47.5322,-121.868,2220.0,5250.0,14.0,0.0,0.0]},"out":{"variable":[470087.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2550.0,5395.0,2.0,0.0,0.0,3.0,8.0,2550.0,0.0,47.5355,-121.874,2850.0,6109.0,14.0,0.0,0.0]},"out":{"variable":[699002.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,3.75,2930.0,14980.0,2.0,0.0,3.0,3.0,9.0,2930.0,0.0,47.5441,-122.117,3210.0,10787.0,1.0,0.0,0.0]},"out":{"variable":[788215.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,1630.0,20750.0,1.0,0.0,0.0,4.0,7.0,1100.0,530.0,47.3657,-122.113,1630.0,8640.0,40.0,0.0,0.0]},"out":{"variable":[278094.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2320.0,7700.0,1.0,0.0,0.0,5.0,7.0,1290.0,1030.0,47.3426,-122.285,1740.0,7210.0,52.0,0.0,0.0]},"out":{"variable":[347191.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1900.0,5065.0,2.0,0.0,0.0,3.0,8.0,1900.0,0.0,47.7175,-122.034,1350.0,4664.0,10.0,0.0,0.0]},"out":{"variable":[441512.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1020.0,7020.0,1.5,0.0,0.0,4.0,7.0,1020.0,0.0,47.7362,-122.314,1020.0,5871.0,61.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1280.0,16738.0,1.5,0.0,0.0,4.0,5.0,1280.0,0.0,47.3895,-122.023,1590.0,16317.0,82.0,0.0,0.0]},"out":{"variable":[246525.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3500.0,7048.0,2.0,0.0,0.0,3.0,9.0,3500.0,0.0,47.6811,-122.025,3920.0,7864.0,9.0,0.0,0.0]},"out":{"variable":[879092.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1810.0,8158.0,1.0,0.0,0.0,3.0,8.0,1450.0,360.0,47.6258,-122.038,1740.0,9532.0,30.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1220.0,5120.0,1.5,0.0,0.0,5.0,6.0,1220.0,0.0,47.205,-121.996,1540.0,7670.0,75.0,0.0,0.0]},"out":{"variable":[244351.95]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.25,1720.0,1587.0,2.5,0.0,2.0,3.0,9.0,1410.0,310.0,47.6187,-122.299,1490.0,1620.0,11.0,0.0,0.0]},"out":{"variable":[725184.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1270.0,1333.0,3.0,0.0,0.0,3.0,8.0,1270.0,0.0,47.6933,-122.342,1330.0,1333.0,9.0,0.0,0.0]},"out":{"variable":[442168.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1250.0,3880.0,1.0,0.0,0.0,4.0,7.0,750.0,500.0,47.6869,-122.392,1240.0,3880.0,70.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3710.0,7491.0,2.0,0.0,0.0,3.0,9.0,3710.0,0.0,47.5596,-122.016,3040.0,7491.0,12.0,0.0,0.0]},"out":{"variable":[879092.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1500.0,10227.0,1.0,0.0,0.0,4.0,7.0,1000.0,500.0,47.2043,-121.996,1490.0,7670.0,69.0,0.0,0.0]},"out":{"variable":[256845.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1160.0,1269.0,2.0,0.0,0.0,3.0,7.0,970.0,190.0,47.6608,-122.335,1700.0,3150.0,9.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2000.0,7414.0,2.0,0.0,0.0,4.0,7.0,2000.0,0.0,47.3508,-122.057,2000.0,7414.0,21.0,0.0,0.0]},"out":{"variable":[320863.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1880.0,11700.0,1.0,0.0,0.0,4.0,7.0,1880.0,0.0,47.3213,-122.187,2230.0,35200.0,46.0,0.0,0.0]},"out":{"variable":[296253.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.25,1710.0,2171.0,2.0,0.0,0.0,3.0,7.0,1400.0,310.0,47.5434,-122.368,1380.0,1300.0,0.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,2240.0,3800.0,2.0,0.0,0.0,3.0,8.0,1370.0,870.0,47.6887,-122.307,1690.0,4275.0,85.0,0.0,0.0]},"out":{"variable":[682284.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2720.0,4000.0,2.0,0.0,1.0,3.0,10.0,2070.0,650.0,47.5554,-122.267,1450.0,4000.0,0.0,0.0,0.0]},"out":{"variable":[941029.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2390.0,7875.0,1.0,0.0,1.0,3.0,10.0,1980.0,410.0,47.6515,-122.278,3720.0,9075.0,66.0,0.0,0.0]},"out":{"variable":[1364149.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2050.0,3320.0,1.5,0.0,0.0,4.0,7.0,1580.0,470.0,47.6719,-122.301,1760.0,4150.0,87.0,0.0,0.0]},"out":{"variable":[630865.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1100.0,1737.0,2.0,0.0,0.0,3.0,8.0,1100.0,0.0,47.4499,-122.189,1610.0,2563.0,8.0,0.0,0.0]},"out":{"variable":[241657.14]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,0.75,770.0,4600.0,1.0,0.0,0.0,4.0,6.0,770.0,0.0,47.5565,-122.377,1550.0,4600.0,104.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2920.0,6300.0,1.0,0.0,0.0,3.0,8.0,1710.0,1210.0,47.7065,-122.37,1940.0,6300.0,58.0,0.0,0.0]},"out":{"variable":[719351.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3340.0,34238.0,1.0,0.0,0.0,4.0,8.0,2060.0,1280.0,47.7654,-122.076,2400.0,36590.0,37.0,0.0,0.0]},"out":{"variable":[597475.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,4.25,4110.0,42755.0,2.0,0.0,2.0,3.0,10.0,2970.0,1140.0,47.3375,-122.337,2730.0,12750.0,14.0,0.0,0.0]},"out":{"variable":[900814.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,1560.0,1466.0,3.0,0.0,0.0,3.0,8.0,1560.0,0.0,47.6604,-122.352,1530.0,2975.0,8.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1900.0,7225.0,1.0,0.0,0.0,3.0,8.0,1220.0,680.0,47.6394,-122.113,1900.0,7399.0,44.0,0.0,0.0]},"out":{"variable":[563844.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1480.0,6210.0,1.0,0.0,0.0,3.0,7.0,1080.0,400.0,47.774,-122.351,1290.0,7509.0,64.0,0.0,0.0]},"out":{"variable":[415964.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1070.0,5000.0,1.0,0.0,0.0,3.0,7.0,1070.0,0.0,47.6666,-122.331,1710.0,5000.0,91.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2080.0,11375.0,1.0,0.0,0.0,3.0,8.0,2080.0,0.0,47.214,-121.993,1080.0,12899.0,12.0,0.0,0.0]},"out":{"variable":[337248.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1670.0,9880.0,1.0,0.0,0.0,4.0,7.0,1670.0,0.0,47.4864,-122.348,1670.0,9807.0,73.0,1.0,22.0]},"out":{"variable":[299854.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1920.0,7500.0,1.0,0.0,0.0,4.0,7.0,1920.0,0.0,47.4222,-122.318,1490.0,8000.0,52.0,0.0,0.0]},"out":{"variable":[303936.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2780.0,6000.0,1.0,0.0,3.0,4.0,9.0,1670.0,1110.0,47.6442,-122.406,2780.0,6000.0,66.0,0.0,0.0]},"out":{"variable":[998351.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2990.0,6037.0,2.0,0.0,0.0,3.0,9.0,2990.0,0.0,47.4766,-121.735,2990.0,5992.0,2.0,0.0,0.0]},"out":{"variable":[524275.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,5430.0,10327.0,2.0,0.0,2.0,3.0,10.0,4010.0,1420.0,47.5476,-122.116,4340.0,10324.0,7.0,0.0,0.0]},"out":{"variable":[1207858.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1980.0,4500.0,2.0,0.0,0.0,3.0,7.0,1980.0,0.0,47.3671,-122.113,2200.0,4500.0,2.0,0.0,0.0]},"out":{"variable":[320395.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1240.0,12400.0,1.0,0.0,0.0,3.0,7.0,1240.0,0.0,47.607,-122.132,1640.0,9600.0,56.0,0.0,0.0]},"out":{"variable":[449699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2360.0,4080.0,2.0,0.0,0.0,3.0,7.0,2360.0,0.0,47.6825,-122.038,2290.0,4080.0,11.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,3260.0,24300.0,1.5,0.0,1.0,4.0,8.0,2310.0,950.0,47.7587,-122.274,2390.0,32057.0,64.0,0.0,0.0]},"out":{"variable":[611431.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2280.0,27441.0,2.0,0.0,0.0,3.0,8.0,2280.0,0.0,47.7628,-122.123,2350.0,35020.0,18.0,0.0,0.0]},"out":{"variable":[519346.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1480.0,4200.0,1.5,0.0,0.0,3.0,7.0,1480.0,0.0,47.6147,-122.298,1460.0,3600.0,89.0,0.0,0.0]},"out":{"variable":[533935.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1710.0,1664.0,2.0,0.0,0.0,5.0,8.0,1300.0,410.0,47.6456,-122.383,1470.0,5400.0,11.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,2800.0,7694.0,1.0,0.0,0.0,3.0,9.0,2800.0,0.0,47.7095,-122.022,2420.0,7694.0,10.0,0.0,0.0]},"out":{"variable":[759983.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,0.75,1080.0,5025.0,1.0,0.0,0.0,3.0,5.0,1080.0,0.0,47.4936,-122.335,1370.0,6000.0,66.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2840.0,8800.0,2.0,0.0,0.0,3.0,9.0,2840.0,0.0,47.7029,-122.171,1840.0,7700.0,6.0,0.0,0.0]},"out":{"variable":[765468.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2000.0,8700.0,1.0,0.0,0.0,5.0,7.0,1010.0,990.0,47.374,-122.141,1490.0,7350.0,39.0,0.0,0.0]},"out":{"variable":[317551.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1410.0,7700.0,1.0,0.0,0.0,3.0,7.0,980.0,430.0,47.4577,-122.171,1510.0,7700.0,52.0,0.0,0.0]},"out":{"variable":[257630.27]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1000.0,4171.0,1.0,0.0,0.0,3.0,7.0,1000.0,0.0,47.6834,-122.097,1090.0,3479.0,29.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1150.0,4000.0,1.0,0.0,0.0,3.0,7.0,1150.0,0.0,47.6575,-122.394,1150.0,4288.0,67.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1050.0,18304.0,1.0,0.0,0.0,4.0,7.0,1050.0,0.0,47.3206,-122.269,1690.0,15675.0,61.0,0.0,0.0]},"out":{"variable":[241809.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2580.0,21115.0,2.0,0.0,0.0,4.0,9.0,2580.0,0.0,47.5566,-122.219,2690.0,10165.0,37.0,0.0,0.0]},"out":{"variable":[793214.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1750.0,5200.0,1.0,0.0,1.0,4.0,8.0,1750.0,0.0,47.6995,-122.383,2060.0,5200.0,58.0,0.0,0.0]},"out":{"variable":[467742.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,3410.0,9600.0,1.0,0.0,0.0,4.0,8.0,1870.0,1540.0,47.6358,-122.103,2390.0,9679.0,46.0,0.0,0.0]},"out":{"variable":[732736.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1500.0,3608.0,2.0,0.0,0.0,3.0,8.0,1500.0,0.0,47.5472,-121.994,2080.0,2686.0,9.0,0.0,0.0]},"out":{"variable":[525737.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,901.0,1245.0,3.0,0.0,0.0,3.0,7.0,901.0,0.0,47.6774,-122.325,1138.0,1137.0,13.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2130.0,6222.0,1.0,0.0,0.0,3.0,7.0,1300.0,830.0,47.5272,-122.276,2130.0,6222.0,23.0,0.0,0.0]},"out":{"variable":[391460.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2640.0,8800.0,1.0,0.0,0.0,3.0,8.0,1620.0,1020.0,47.7552,-122.148,2500.0,11700.0,35.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2100.0,2200.0,2.0,0.0,0.0,4.0,7.0,1500.0,600.0,47.614,-122.294,1750.0,4400.0,96.0,0.0,0.0]},"out":{"variable":[642519.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1080.0,9225.0,1.0,0.0,0.0,2.0,7.0,1080.0,0.0,47.4842,-122.346,1410.0,9840.0,59.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2590.0,12600.0,2.0,0.0,0.0,3.0,9.0,2590.0,0.0,47.5566,-122.162,2620.0,11050.0,36.0,0.0,0.0]},"out":{"variable":[758714.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2180.0,7876.0,1.0,0.0,0.0,4.0,7.0,1290.0,890.0,47.5157,-122.191,1960.0,7225.0,38.0,0.0,0.0]},"out":{"variable":[395096.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,810.0,5100.0,1.0,0.0,0.0,3.0,6.0,810.0,0.0,47.7317,-122.343,1500.0,5100.0,59.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2430.0,88426.0,1.0,0.0,0.0,4.0,7.0,1570.0,860.0,47.4828,-121.718,1560.0,56827.0,29.0,0.0,0.0]},"out":{"variable":[418823.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,4.0,4360.0,8030.0,2.0,0.0,0.0,3.0,10.0,4360.0,0.0,47.5923,-121.973,3570.0,6185.0,0.0,0.0,0.0]},"out":{"variable":[1160512.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,3190.0,29982.0,1.0,0.0,3.0,4.0,8.0,2630.0,560.0,47.458,-122.368,2600.0,19878.0,74.0,0.0,0.0]},"out":{"variable":[509102.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2210.0,4000.0,2.0,0.0,0.0,3.0,8.0,2210.0,0.0,47.6954,-122.017,2230.0,4674.0,6.0,0.0,0.0]},"out":{"variable":[673519.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1453.0,2225.0,2.0,0.0,0.0,4.0,8.0,1453.0,0.0,47.5429,-122.188,1860.0,2526.0,29.0,0.0,0.0]},"out":{"variable":[453298.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1790.0,3962.0,2.0,0.0,0.0,3.0,8.0,1790.0,0.0,47.6894,-122.391,1340.0,3960.0,22.0,0.0,0.0]},"out":{"variable":[554921.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,730.0,5040.0,1.0,0.0,0.0,3.0,6.0,730.0,0.0,47.5387,-122.374,790.0,5040.0,87.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.75,2690.0,4000.0,2.0,0.0,3.0,4.0,9.0,2120.0,570.0,47.6418,-122.372,2830.0,4000.0,105.0,1.0,80.0]},"out":{"variable":[999203.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1240.0,10800.0,1.0,0.0,0.0,5.0,7.0,1240.0,0.0,47.5233,-122.185,1810.0,10800.0,55.0,0.0,0.0]},"out":{"variable":[268856.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1300.0,8284.0,1.0,0.0,0.0,3.0,7.0,1300.0,0.0,47.3327,-122.306,1360.0,7848.0,46.0,0.0,0.0]},"out":{"variable":[243560.81]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1340.0,8505.0,1.0,0.0,0.0,3.0,6.0,1340.0,0.0,47.4727,-122.297,1370.0,9000.0,83.0,0.0,0.0]},"out":{"variable":[246026.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,900.0,4368.0,1.0,0.0,0.0,5.0,6.0,900.0,0.0,47.2107,-121.99,1290.0,5000.0,100.0,1.0,35.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2120.0,9706.0,1.0,0.0,0.0,3.0,7.0,1370.0,750.0,47.4939,-122.297,1730.0,11337.0,49.0,0.0,0.0]},"out":{"variable":[385561.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2500.0,5801.0,1.5,0.0,0.0,3.0,8.0,1960.0,540.0,47.632,-122.29,3670.0,7350.0,88.0,0.0,0.0]},"out":{"variable":[739536.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1670.0,5400.0,2.0,0.0,0.0,5.0,8.0,1670.0,0.0,47.635,-122.284,2100.0,5400.0,102.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1200.0,9266.0,1.0,0.0,0.0,4.0,7.0,1200.0,0.0,47.314,-122.208,1200.0,9266.0,54.0,0.0,0.0]},"out":{"variable":[241330.19]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1330.0,36537.0,1.0,0.0,0.0,4.0,7.0,1330.0,0.0,47.3126,-122.129,1650.0,35100.0,26.0,0.0,0.0]},"out":{"variable":[249455.83]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2340.0,5670.0,2.0,0.0,0.0,3.0,7.0,2340.0,0.0,47.4913,-122.152,2190.0,4869.0,5.0,0.0,0.0]},"out":{"variable":[407019.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2160.0,4297.0,2.0,0.0,0.0,3.0,9.0,2160.0,0.0,47.5476,-122.012,2160.0,3968.0,15.0,0.0,0.0]},"out":{"variable":[723867.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1120.0,8661.0,1.0,0.0,0.0,3.0,7.0,1120.0,0.0,47.7034,-122.307,1470.0,7205.0,68.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1350.0,8220.0,1.0,0.0,0.0,3.0,7.0,1060.0,290.0,47.7224,-122.358,1540.0,8280.0,66.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2800.0,9538.0,2.0,0.0,0.0,3.0,8.0,2800.0,0.0,47.2675,-122.307,1970.0,7750.0,21.0,0.0,0.0]},"out":{"variable":[375104.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1260.0,1488.0,3.0,0.0,0.0,3.0,7.0,1260.0,0.0,47.7071,-122.336,1190.0,1095.0,5.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,1990.0,7712.0,1.0,0.0,0.0,3.0,8.0,1210.0,780.0,47.5688,-122.087,1720.0,7393.0,41.0,0.0,0.0]},"out":{"variable":[575724.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2330.0,16300.0,2.0,0.0,0.0,3.0,9.0,2330.0,0.0,47.7037,-122.24,2330.0,16300.0,51.0,0.0,0.0]},"out":{"variable":[920796.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[9.0,3.0,3680.0,4400.0,2.0,0.0,0.0,3.0,7.0,2830.0,850.0,47.6374,-122.324,1960.0,2450.0,107.0,0.0,0.0]},"out":{"variable":[784103.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2340.0,6183.0,1.0,0.0,0.0,3.0,7.0,1210.0,1130.0,47.6979,-122.31,1970.0,6183.0,85.0,0.0,0.0]},"out":{"variable":[676904.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2140.0,159865.0,1.0,0.0,0.0,4.0,7.0,1140.0,1000.0,47.4235,-122.218,1830.0,15569.0,54.0,0.0,0.0]},"out":{"variable":[385957.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.25,3080.0,12100.0,2.0,0.0,0.0,3.0,8.0,2080.0,1000.0,47.695,-122.399,2100.0,6581.0,30.0,0.0,0.0]},"out":{"variable":[756699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3190.0,24170.0,2.0,0.0,0.0,3.0,10.0,3190.0,0.0,47.6209,-122.052,2110.0,26321.0,13.0,0.0,0.0]},"out":{"variable":[886958.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2570.0,7221.0,1.0,0.0,0.0,4.0,8.0,1570.0,1000.0,47.6921,-122.387,2440.0,7274.0,57.0,0.0,0.0]},"out":{"variable":[713979.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2830.0,5932.0,2.0,0.0,0.0,3.0,9.0,2830.0,0.0,47.6479,-122.408,2840.0,5593.0,0.0,0.0,0.0]},"out":{"variable":[800304.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1440.0,11787.0,1.0,0.0,0.0,3.0,8.0,1440.0,0.0,47.6276,-122.033,2190.0,11787.0,31.0,0.0,0.0]},"out":{"variable":[462431.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3740.0,41458.0,2.0,0.0,2.0,3.0,11.0,3740.0,0.0,47.7375,-122.139,3750.0,38325.0,14.0,0.0,0.0]},"out":{"variable":[957666.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1680.0,4584.0,2.0,0.0,0.0,3.0,7.0,1680.0,0.0,47.4794,-122.182,2160.0,4621.0,11.0,0.0,0.0]},"out":{"variable":[311515.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,3230.0,17833.0,2.0,0.0,0.0,4.0,9.0,3230.0,0.0,47.5683,-122.188,3690.0,17162.0,41.0,0.0,0.0]},"out":{"variable":[937281.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1800.0,4357.0,2.0,0.0,0.0,3.0,8.0,1800.0,0.0,47.5337,-121.841,1800.0,3663.0,2.0,0.0,0.0]},"out":{"variable":[450996.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1460.0,11481.0,1.0,0.0,0.0,2.0,7.0,1170.0,290.0,47.4493,-121.777,1540.0,9680.0,19.0,0.0,0.0]},"out":{"variable":[266405.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,3470.0,212639.0,2.0,0.0,0.0,3.0,7.0,2070.0,1400.0,47.7066,-121.968,2370.0,233917.0,21.0,0.0,0.0]},"out":{"variable":[727923.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,3310.0,5300.0,2.0,0.0,2.0,3.0,8.0,2440.0,870.0,47.5178,-122.389,2140.0,7500.0,6.0,0.0,0.0]},"out":{"variable":[480151.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1770.0,6014.0,1.5,0.0,0.0,4.0,7.0,1240.0,530.0,47.5773,-122.393,1740.0,6014.0,68.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1560.0,1020.0,3.0,0.0,0.0,3.0,8.0,1560.0,0.0,47.605,-122.304,1560.0,1728.0,0.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1350.0,14200.0,1.0,0.0,0.0,3.0,7.0,1350.0,0.0,47.7315,-121.972,2100.0,15101.0,25.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1840.0,5000.0,1.5,0.0,0.0,5.0,7.0,1340.0,500.0,47.6652,-122.362,1840.0,5000.0,99.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2480.0,10804.0,1.0,0.0,0.0,3.0,8.0,1800.0,680.0,47.7721,-122.367,2480.0,10400.0,38.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1030.0,8414.0,1.0,0.0,0.0,4.0,7.0,1030.0,0.0,47.7654,-122.297,1750.0,8414.0,47.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2450.0,15002.0,1.0,0.0,0.0,5.0,9.0,2450.0,0.0,47.4268,-122.343,2650.0,15055.0,40.0,0.0,0.0]},"out":{"variable":[508746.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1010.0,4000.0,1.0,0.0,0.0,3.0,6.0,1010.0,0.0,47.5536,-122.267,1040.0,4000.0,103.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1330.0,1200.0,3.0,0.0,0.0,3.0,7.0,1330.0,0.0,47.7034,-122.344,1330.0,1206.0,12.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,2770.0,19700.0,2.0,0.0,0.0,3.0,8.0,1780.0,990.0,47.7581,-122.365,2360.0,9700.0,31.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1900.0,5520.0,1.0,0.0,0.0,3.0,7.0,1280.0,620.0,47.5549,-122.292,1330.0,5196.0,32.0,0.0,0.0]},"out":{"variable":[551223.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1470.0,2034.0,2.0,0.0,0.0,4.0,8.0,1470.0,0.0,47.6213,-122.153,1510.0,2055.0,29.0,0.0,0.0]},"out":{"variable":[517121.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,2770.0,8763.0,2.0,0.0,0.0,3.0,8.0,2100.0,670.0,47.2625,-122.308,2030.0,7242.0,18.0,0.0,0.0]},"out":{"variable":[373955.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3550.0,35689.0,2.0,0.0,0.0,4.0,9.0,3550.0,0.0,47.7503,-122.074,3350.0,35711.0,23.0,0.0,0.0]},"out":{"variable":[873315.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2510.0,47044.0,2.0,0.0,0.0,3.0,9.0,2510.0,0.0,47.7699,-122.085,2600.0,42612.0,27.0,0.0,0.0]},"out":{"variable":[721143.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,4090.0,11225.0,2.0,0.0,0.0,3.0,10.0,4090.0,0.0,47.581,-121.971,3510.0,8762.0,9.0,0.0,0.0]},"out":{"variable":[1048372.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,720.0,5000.0,1.0,0.0,0.0,5.0,6.0,720.0,0.0,47.5195,-122.374,810.0,5000.0,63.0,0.0,0.0]},"out":{"variable":[244566.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2930.0,22000.0,1.0,0.0,3.0,4.0,9.0,1580.0,1350.0,47.3227,-122.384,2930.0,9758.0,36.0,0.0,0.0]},"out":{"variable":[518869.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,850.0,5000.0,1.0,0.0,0.0,3.0,6.0,850.0,0.0,47.3817,-122.314,1160.0,5000.0,39.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1570.0,1433.0,3.0,0.0,0.0,3.0,8.0,1570.0,0.0,47.6858,-122.336,1570.0,2652.0,4.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2390.0,15669.0,2.0,0.0,0.0,3.0,9.0,2390.0,0.0,47.7446,-122.193,2640.0,12500.0,24.0,0.0,0.0]},"out":{"variable":[741973.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,0.75,920.0,20412.0,1.0,1.0,2.0,5.0,6.0,920.0,0.0,47.4781,-122.49,1162.0,54705.0,64.0,0.0,0.0]},"out":{"variable":[338418.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2800.0,246114.0,2.0,0.0,0.0,3.0,9.0,2800.0,0.0,47.6586,-121.962,2750.0,60351.0,15.0,0.0,0.0]},"out":{"variable":[765468.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1120.0,9912.0,1.0,0.0,0.0,4.0,6.0,1120.0,0.0,47.3735,-122.43,1540.0,9750.0,34.0,0.0,0.0]},"out":{"variable":[309800.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,2760.0,4500.0,2.0,0.0,0.0,3.0,9.0,2120.0,640.0,47.6529,-122.372,1950.0,6000.0,10.0,0.0,0.0]},"out":{"variable":[798188.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2710.0,11400.0,1.0,0.0,0.0,4.0,9.0,1430.0,1280.0,47.561,-122.153,2640.0,11000.0,38.0,0.0,0.0]},"out":{"variable":[772048.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1700.0,7496.0,2.0,0.0,0.0,3.0,8.0,1700.0,0.0,47.432,-122.189,2280.0,7496.0,20.0,0.0,0.0]},"out":{"variable":[310992.97]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3420.0,33106.0,2.0,0.0,0.0,3.0,9.0,3420.0,0.0,47.3554,-121.986,3420.0,36590.0,10.0,0.0,0.0]},"out":{"variable":[539867.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1060.0,5750.0,1.0,0.0,0.0,3.0,6.0,950.0,110.0,47.6562,-122.389,1790.0,5857.0,110.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2720.0,54048.0,2.0,0.0,0.0,3.0,8.0,2720.0,0.0,47.7181,-122.089,2580.0,37721.0,30.0,0.0,0.0]},"out":{"variable":[546009.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2740.0,43101.0,2.0,0.0,0.0,3.0,9.0,2740.0,0.0,47.7649,-122.049,2740.0,33447.0,21.0,0.0,0.0]},"out":{"variable":[727898.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,3320.0,8587.0,3.0,0.0,0.0,3.0,11.0,2950.0,370.0,47.691,-122.337,1860.0,5668.0,6.0,0.0,0.0]},"out":{"variable":[1130661.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3130.0,13202.0,2.0,0.0,0.0,3.0,10.0,3130.0,0.0,47.5878,-121.976,2840.0,10470.0,19.0,0.0,0.0]},"out":{"variable":[879083.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1370.0,5125.0,1.0,0.0,0.0,5.0,6.0,1370.0,0.0,47.6926,-122.346,1200.0,5100.0,70.0,0.0,0.0]},"out":{"variable":[444933.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2040.0,5508.0,2.0,0.0,0.0,4.0,8.0,2040.0,0.0,47.5719,-122.007,2130.0,5496.0,18.0,0.0,0.0]},"out":{"variable":[627853.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3140.0,12792.0,2.0,0.0,0.0,4.0,9.0,3140.0,0.0,47.3863,-122.156,2510.0,12792.0,37.0,0.0,0.0]},"out":{"variable":[513583.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1190.0,7620.0,1.5,0.0,0.0,3.0,6.0,1190.0,0.0,47.5281,-122.348,1060.0,7320.0,88.0,0.0,0.0]},"out":{"variable":[247792.73]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2927.0,12171.0,2.0,0.0,0.0,3.0,10.0,2927.0,0.0,47.5948,-121.983,2967.0,12166.0,17.0,0.0,0.0]},"out":{"variable":[829775.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.75,4170.0,8142.0,2.0,0.0,2.0,3.0,10.0,4170.0,0.0,47.5354,-122.181,3030.0,7980.0,9.0,0.0,0.0]},"out":{"variable":[1098628.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2520.0,5000.0,3.0,0.0,0.0,3.0,9.0,2520.0,0.0,47.5664,-122.359,1130.0,5000.0,24.0,0.0,0.0]},"out":{"variable":[793214.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,2738.0,6031.0,2.0,0.0,0.0,3.0,8.0,2738.0,0.0,47.2962,-122.35,2738.0,5201.0,0.0,0.0,0.0]},"out":{"variable":[371040.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1110.0,8724.0,1.0,0.0,0.0,4.0,7.0,1110.0,0.0,47.3056,-122.206,1390.0,7750.0,24.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1180.0,1231.0,3.0,0.0,0.0,3.0,7.0,1180.0,0.0,47.6845,-122.315,1280.0,3360.0,7.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,910.0,6000.0,1.0,0.0,0.0,2.0,6.0,910.0,0.0,47.5065,-122.338,1090.0,6957.0,58.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1540.0,7168.0,1.0,0.0,0.0,3.0,7.0,1160.0,380.0,47.455,-122.198,1540.0,7176.0,51.0,0.0,0.0]},"out":{"variable":[293808.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1570.0,9415.0,2.0,0.0,0.0,4.0,7.0,1570.0,0.0,47.3168,-122.174,1550.0,8978.0,30.0,0.0,0.0]},"out":{"variable":[276709.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2160.0,9682.0,2.0,0.0,0.0,3.0,8.0,2160.0,0.0,47.4106,-122.204,1770.0,9600.0,15.0,0.0,0.0]},"out":{"variable":[363491.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1190.0,9199.0,1.0,0.0,0.0,3.0,7.0,1190.0,0.0,47.4258,-122.322,1190.0,9364.0,59.0,0.0,0.0]},"out":{"variable":[241330.19]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,4.25,3500.0,8750.0,1.0,0.0,4.0,5.0,9.0,2140.0,1360.0,47.7222,-122.367,3110.0,8750.0,63.0,0.0,0.0]},"out":{"variable":[1140733.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2230.0,9625.0,1.0,0.0,4.0,3.0,8.0,1180.0,1050.0,47.508,-122.244,2300.0,8211.0,59.0,0.0,0.0]},"out":{"variable":[473591.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2420.0,9147.0,2.0,0.0,0.0,3.0,10.0,2420.0,0.0,47.3221,-122.322,1400.0,7200.0,16.0,0.0,0.0]},"out":{"variable":[559139.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1750.0,7208.0,2.0,0.0,0.0,3.0,8.0,1750.0,0.0,47.4315,-122.192,2050.0,7524.0,20.0,0.0,0.0]},"out":{"variable":[311909.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2330.0,6450.0,1.0,0.0,1.0,3.0,8.0,1330.0,1000.0,47.4959,-122.367,2330.0,8258.0,57.0,0.0,0.0]},"out":{"variable":[448720.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,4460.0,16271.0,2.0,0.0,2.0,3.0,11.0,4460.0,0.0,47.5862,-121.97,4540.0,17122.0,13.0,0.0,0.0]},"out":{"variable":[1208638.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,3010.0,1842.0,2.0,0.0,0.0,3.0,9.0,3010.0,0.0,47.5836,-121.994,2950.0,4200.0,3.0,0.0,0.0]},"out":{"variable":[795841.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1780.0,4750.0,1.0,0.0,0.0,4.0,7.0,1080.0,700.0,47.6859,-122.395,1690.0,5962.0,67.0,0.0,0.0]},"out":{"variable":[558463.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1650.0,2201.0,3.0,0.0,0.0,3.0,8.0,1650.0,0.0,47.7108,-122.333,1650.0,1965.0,8.0,0.0,0.0]},"out":{"variable":[439977.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2370.0,11310.0,1.0,0.0,0.0,3.0,8.0,1550.0,820.0,47.7684,-122.289,1890.0,8621.0,47.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,1520.0,1884.0,3.0,0.0,0.0,3.0,8.0,1520.0,0.0,47.7176,-122.284,1360.0,1939.0,5.0,0.0,0.0]},"out":{"variable":[424966.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1300.0,4659.0,1.0,0.0,0.0,3.0,8.0,1300.0,0.0,47.7132,-122.033,1640.0,4780.0,9.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2074.0,4900.0,2.0,0.0,0.0,3.0,8.0,2074.0,0.0,47.7327,-122.233,1840.0,7382.0,17.0,0.0,0.0]},"out":{"variable":[483519.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3200.0,6691.0,2.0,0.0,0.0,3.0,7.0,3200.0,0.0,47.367,-122.031,2610.0,6510.0,13.0,0.0,0.0]},"out":{"variable":[383833.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1060.0,12690.0,1.0,0.0,0.0,3.0,7.0,1060.0,0.0,47.6736,-122.167,1920.0,10200.0,45.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1740.0,7290.0,1.0,0.0,0.0,3.0,8.0,1280.0,460.0,47.6461,-122.397,1820.0,6174.0,64.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2490.0,8700.0,1.0,0.0,0.0,3.0,7.0,1890.0,600.0,47.7397,-122.324,1470.0,7975.0,39.0,0.0,0.0]},"out":{"variable":[530288.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1050.0,7854.0,1.0,0.0,0.0,4.0,7.0,1050.0,0.0,47.3011,-122.369,1360.0,7668.0,40.0,0.0,0.0]},"out":{"variable":[239734.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1800.0,6750.0,1.5,0.0,0.0,4.0,7.0,1800.0,0.0,47.6868,-122.285,1420.0,5900.0,64.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2570.0,6466.0,2.0,0.0,0.0,3.0,9.0,2570.0,0.0,47.3324,-122.17,2520.0,6667.0,15.0,0.0,0.0]},"out":{"variable":[464060.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1590.0,21600.0,1.5,0.0,0.0,4.0,7.0,1590.0,0.0,47.2159,-121.966,1780.0,21600.0,44.0,0.0,0.0]},"out":{"variable":[283759.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1400.0,1650.0,3.0,0.0,0.0,3.0,7.0,1400.0,0.0,47.7222,-122.29,1430.0,1650.0,15.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3010.0,7953.0,2.0,0.0,0.0,3.0,9.0,3010.0,0.0,47.522,-122.19,2670.0,6202.0,14.0,0.0,0.0]},"out":{"variable":[660749.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1280.0,9000.0,1.5,0.0,0.0,4.0,6.0,1280.0,0.0,47.4915,-122.338,1430.0,4500.0,60.0,0.0,0.0]},"out":{"variable":[243585.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1270.0,6760.0,1.0,0.0,0.0,5.0,7.0,1270.0,0.0,47.7381,-122.179,1550.0,5734.0,42.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2160.0,7200.0,1.5,0.0,0.0,3.0,7.0,1220.0,940.0,47.5576,-122.273,1900.0,7200.0,59.0,0.0,0.0]},"out":{"variable":[673288.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,4285.0,9567.0,2.0,0.0,1.0,5.0,10.0,3485.0,800.0,47.6434,-122.409,2960.0,6902.0,68.0,0.0,0.0]},"out":{"variable":[1886959.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2060.0,8906.0,1.0,0.0,0.0,4.0,7.0,1220.0,840.0,47.5358,-122.289,1840.0,8906.0,36.0,0.0,0.0]},"out":{"variable":[627884.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2670.0,5001.0,1.0,0.0,0.0,3.0,9.0,1640.0,1030.0,47.5666,-122.293,1610.0,5001.0,1.0,0.0,0.0]},"out":{"variable":[793214.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2380.0,13550.0,2.0,0.0,0.0,3.0,7.0,2380.0,0.0,47.4486,-122.288,1230.0,9450.0,15.0,0.0,0.0]},"out":{"variable":[397096.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,3600.0,9437.0,2.0,0.0,0.0,3.0,9.0,3600.0,0.0,47.4822,-122.131,3550.0,9421.0,0.0,0.0,0.0]},"out":{"variable":[542342.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,1090.0,32010.0,1.0,0.0,0.0,4.0,6.0,1090.0,0.0,47.6928,-121.87,1870.0,25346.0,56.0,0.0,0.0]},"out":{"variable":[444407.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1700.0,6375.0,1.0,0.0,0.0,4.0,7.0,850.0,850.0,47.6973,-122.295,1470.0,8360.0,65.0,0.0,0.0]},"out":{"variable":[469038.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.0,2000.0,4211.0,1.5,0.0,2.0,4.0,7.0,1280.0,720.0,47.6283,-122.301,1680.0,4000.0,106.0,0.0,0.0]},"out":{"variable":[582564.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1780.0,9969.0,1.0,0.0,0.0,3.0,8.0,1450.0,330.0,47.7286,-122.168,1950.0,7974.0,29.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2190.0,6450.0,1.0,0.0,0.0,3.0,8.0,1480.0,710.0,47.5284,-122.391,2190.0,6450.0,58.0,0.0,0.0]},"out":{"variable":[421402.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2220.0,10530.0,1.0,0.0,0.0,4.0,8.0,1700.0,520.0,47.6383,-122.098,2500.0,10014.0,41.0,0.0,0.0]},"out":{"variable":[680620.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1940.0,4400.0,1.0,0.0,0.0,3.0,7.0,970.0,970.0,47.6371,-122.279,1480.0,3080.0,92.0,0.0,0.0]},"out":{"variable":[567502.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,2120.0,6290.0,1.0,0.0,0.0,4.0,8.0,1220.0,900.0,47.5658,-122.318,1620.0,5400.0,65.0,0.0,0.0]},"out":{"variable":[657905.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2242.0,4800.0,2.0,0.0,0.0,3.0,8.0,2242.0,0.0,47.2581,-122.2,2009.0,4800.0,2.0,0.0,0.0]},"out":{"variable":[343304.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,770.0,5040.0,1.0,0.0,0.0,3.0,5.0,770.0,0.0,47.5964,-122.299,1330.0,2580.0,85.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,3320.0,5354.0,2.0,0.0,0.0,3.0,9.0,3320.0,0.0,47.6542,-122.331,2330.0,4040.0,11.0,0.0,0.0]},"out":{"variable":[974485.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,840.0,9480.0,1.0,0.0,0.0,3.0,6.0,840.0,0.0,47.3277,-122.341,840.0,9420.0,55.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,2000.0,5000.0,1.5,0.0,0.0,5.0,7.0,2000.0,0.0,47.5787,-122.293,2200.0,5000.0,90.0,0.0,0.0]},"out":{"variable":[581003.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,800.0,6016.0,1.0,0.0,0.0,3.0,6.0,800.0,0.0,47.6913,-122.369,1470.0,3734.0,72.0,0.0,0.0]},"out":{"variable":[446768.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2300.0,35287.0,2.0,0.0,0.0,3.0,8.0,2300.0,0.0,47.2477,-121.937,1760.0,47916.0,38.0,0.0,0.0]},"out":{"variable":[400628.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,4.0,1680.0,7268.0,1.0,0.0,0.0,3.0,8.0,1370.0,310.0,47.5571,-122.356,2040.0,8259.0,7.0,0.0,0.0]},"out":{"variable":[546632.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1180.0,10277.0,1.0,0.0,0.0,3.0,6.0,1180.0,0.0,47.488,-121.787,1680.0,11104.0,31.0,0.0,0.0]},"out":{"variable":[246775.14]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1460.0,3840.0,1.5,0.0,0.0,3.0,8.0,1340.0,120.0,47.533,-122.347,990.0,4200.0,87.0,0.0,0.0]},"out":{"variable":[288798.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1540.0,3570.0,1.5,0.0,0.0,5.0,7.0,1490.0,50.0,47.6692,-122.325,1620.0,4080.0,84.0,0.0,0.0]},"out":{"variable":[552992.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,870.0,4600.0,1.0,0.0,0.0,4.0,7.0,870.0,0.0,47.5274,-122.379,930.0,4600.0,72.0,0.0,0.0]},"out":{"variable":[313906.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,2010.0,3797.0,1.5,0.0,0.0,3.0,7.0,1450.0,560.0,47.5596,-122.315,1660.0,4650.0,92.0,1.0,82.0]},"out":{"variable":[578362.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,1790.0,47250.0,1.0,0.0,0.0,3.0,7.0,1220.0,570.0,47.5302,-121.746,1250.0,43791.0,27.0,0.0,0.0]},"out":{"variable":[323826.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2230.0,4372.0,2.0,0.0,0.0,5.0,8.0,1540.0,690.0,47.6698,-122.334,2020.0,4372.0,79.0,0.0,0.0]},"out":{"variable":[682284.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1310.0,9855.0,1.0,0.0,0.0,3.0,7.0,1310.0,0.0,47.7296,-122.241,1310.0,8370.0,52.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,2170.0,2500.0,2.0,0.0,0.0,3.0,8.0,1710.0,460.0,47.6742,-122.303,2170.0,4080.0,17.0,0.0,0.0]},"out":{"variable":[675545.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1180.0,14258.0,2.0,0.0,0.0,3.0,7.0,1180.0,0.0,47.7112,-122.238,1860.0,10390.0,27.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1910.0,5040.0,1.5,0.0,0.0,3.0,8.0,1910.0,0.0,47.6312,-122.061,1980.0,4275.0,43.0,0.0,0.0]},"out":{"variable":[563844.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,0.75,900.0,3527.0,1.0,0.0,0.0,3.0,6.0,900.0,0.0,47.5083,-122.336,1220.0,4080.0,76.0,0.0,0.0]},"out":{"variable":[236815.78]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2180.0,8000.0,1.0,0.0,0.0,4.0,9.0,1630.0,550.0,47.317,-122.378,2310.0,8000.0,39.0,0.0,0.0]},"out":{"variable":[444141.97]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,1670.0,3330.0,1.5,0.0,0.0,4.0,7.0,1670.0,0.0,47.6551,-122.36,1370.0,5000.0,89.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3250.0,8970.0,2.0,0.0,0.0,3.0,10.0,3250.0,0.0,47.5862,-122.037,3240.0,8449.0,20.0,0.0,0.0]},"out":{"variable":[886958.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1720.0,5525.0,1.0,0.0,2.0,5.0,7.0,960.0,760.0,47.559,-122.298,1760.0,5525.0,73.0,0.0,0.0]},"out":{"variable":[546632.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1060.0,10228.0,1.0,0.0,0.0,3.0,7.0,1060.0,0.0,47.7481,-122.3,1570.0,10228.0,66.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2640.0,8625.0,2.0,0.0,0.0,3.0,8.0,2640.0,0.0,47.4598,-122.15,2240.0,8700.0,27.0,0.0,0.0]},"out":{"variable":[441465.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1440.0,27505.0,1.0,0.0,0.0,3.0,8.0,1440.0,0.0,47.7553,-122.37,2430.0,16400.0,64.0,0.0,0.0]},"out":{"variable":[359614.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,3120.0,157875.0,2.0,0.0,0.0,4.0,8.0,3120.0,0.0,47.444,-122.187,1580.0,7050.0,38.0,0.0,0.0]},"out":{"variable":[448180.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1730.0,7442.0,2.0,0.0,0.0,3.0,7.0,1730.0,0.0,47.3507,-122.178,1630.0,6458.0,27.0,0.0,0.0]},"out":{"variable":[285253.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1540.0,7200.0,1.0,0.0,0.0,3.0,7.0,1260.0,280.0,47.3424,-122.308,1540.0,8416.0,48.0,0.0,0.0]},"out":{"variable":[275408.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1220.0,8040.0,1.5,0.0,0.0,3.0,7.0,1220.0,0.0,47.7133,-122.308,1360.0,8040.0,50.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1460.0,9759.0,1.0,0.0,0.0,5.0,7.0,1460.0,0.0,47.6644,-122.144,1620.0,8421.0,42.0,0.0,0.0]},"out":{"variable":[498579.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1650.0,9780.0,1.0,0.0,0.0,3.0,7.0,950.0,700.0,47.6549,-122.394,1650.0,5458.0,72.0,0.0,0.0]},"out":{"variable":[558463.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1700.0,7532.0,1.0,0.0,0.0,3.0,7.0,1700.0,0.0,47.355,-122.176,1690.0,7405.0,27.0,0.0,0.0]},"out":{"variable":[284336.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2206.0,82031.0,1.0,0.0,2.0,3.0,6.0,866.0,1340.0,47.6302,-122.069,2590.0,53024.0,31.0,0.0,0.0]},"out":{"variable":[682181.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,750.0,4000.0,1.0,0.0,0.0,4.0,6.0,750.0,0.0,47.5547,-122.272,1120.0,5038.0,89.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1100.0,5400.0,1.5,0.0,0.0,3.0,7.0,1100.0,0.0,47.6604,-122.396,1770.0,4400.0,106.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2340.0,8990.0,2.0,0.0,0.0,3.0,8.0,2340.0,0.0,47.3781,-122.03,2980.0,6718.0,11.0,0.0,0.0]},"out":{"variable":[349102.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2120.0,3220.0,2.0,0.0,0.0,3.0,9.0,2120.0,0.0,47.6662,-122.083,2120.0,3547.0,9.0,0.0,0.0]},"out":{"variable":[713948.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2520.0,53143.0,1.5,0.0,0.0,3.0,7.0,2520.0,0.0,47.743,-121.925,2020.0,56628.0,26.0,0.0,0.0]},"out":{"variable":[530288.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2960.0,8968.0,1.0,0.0,0.0,4.0,8.0,1640.0,1320.0,47.6233,-122.102,1890.0,9077.0,49.0,0.0,0.0]},"out":{"variable":[713485.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1510.0,7200.0,1.5,0.0,0.0,4.0,7.0,1510.0,0.0,47.761,-122.307,1950.0,10656.0,60.0,0.0,0.0]},"out":{"variable":[421306.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2350.0,18800.0,1.0,0.0,2.0,3.0,8.0,2350.0,0.0,47.5904,-122.177,3050.0,14640.0,55.0,0.0,0.0]},"out":{"variable":[718588.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1980.0,6566.0,2.0,0.0,0.0,3.0,8.0,1980.0,0.0,47.3809,-122.097,2590.0,6999.0,11.0,0.0,0.0]},"out":{"variable":[320395.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2170.0,3200.0,1.5,0.0,0.0,5.0,7.0,1280.0,890.0,47.6543,-122.347,1180.0,1224.0,91.0,0.0,0.0]},"out":{"variable":[675545.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,3940.0,11632.0,2.0,0.0,0.0,3.0,10.0,3940.0,0.0,47.438,-122.344,2015.0,11632.0,0.0,0.0,0.0]},"out":{"variable":[655009.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1390.0,2815.0,2.0,0.0,0.0,3.0,8.0,1390.0,0.0,47.566,-122.366,1390.0,3700.0,16.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1400.0,7384.0,1.0,0.0,0.0,3.0,7.0,1150.0,250.0,47.4655,-122.174,1820.0,7992.0,35.0,0.0,0.0]},"out":{"variable":[267013.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2780.0,32880.0,1.0,0.0,0.0,3.0,9.0,2780.0,0.0,47.4798,-121.727,2780.0,40091.0,21.0,0.0,0.0]},"out":{"variable":[533212.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1250.0,1150.0,2.0,0.0,0.0,3.0,8.0,1080.0,170.0,47.5582,-122.363,1250.0,1150.0,6.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2360.0,8290.0,1.0,0.0,0.0,4.0,7.0,1180.0,1180.0,47.6738,-122.281,1880.0,7670.0,65.0,0.0,0.0]},"out":{"variable":[713979.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3070.0,6923.0,2.0,0.0,0.0,3.0,9.0,3070.0,0.0,47.669,-122.172,2190.0,9218.0,5.0,0.0,0.0]},"out":{"variable":[831483.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2370.0,10631.0,2.0,0.0,0.0,3.0,8.0,2370.0,0.0,47.3473,-122.302,2200.0,8297.0,15.0,0.0,0.0]},"out":{"variable":[349102.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1780.0,7800.0,1.0,0.0,0.0,3.0,7.0,1060.0,720.0,47.4932,-122.263,1450.0,7800.0,57.0,0.0,0.0]},"out":{"variable":[300446.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,4240.0,25639.0,2.0,0.0,3.0,3.0,10.0,3550.0,690.0,47.3241,-122.378,3590.0,24967.0,25.0,0.0,0.0]},"out":{"variable":[1156651.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3440.0,9776.0,2.0,0.0,0.0,3.0,10.0,3440.0,0.0,47.5374,-122.216,2400.0,11000.0,9.0,0.0,0.0]},"out":{"variable":[1124493.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,3.25,1400.0,1243.0,3.0,0.0,0.0,3.0,8.0,1400.0,0.0,47.6534,-122.353,1400.0,1335.0,14.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2020.0,7070.0,1.0,0.0,0.0,5.0,7.0,1010.0,1010.0,47.5202,-122.378,1390.0,6000.0,56.0,0.0,0.0]},"out":{"variable":[379752.22]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,2070.0,5386.0,1.0,0.0,0.0,4.0,7.0,1140.0,930.0,47.6896,-122.374,1770.0,5386.0,66.0,0.0,0.0]},"out":{"variable":[628261.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2570.0,7980.0,2.0,0.0,0.0,3.0,9.0,2570.0,0.0,47.6378,-122.065,2760.0,6866.0,16.0,0.0,0.0]},"out":{"variable":[758714.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1290.0,3140.0,2.0,0.0,0.0,3.0,7.0,1290.0,0.0,47.6971,-122.026,1290.0,2628.0,6.0,0.0,0.0]},"out":{"variable":[400561.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,2230.0,12968.0,2.0,0.0,0.0,3.0,9.0,2230.0,0.0,47.6271,-122.197,2260.0,10160.0,25.0,0.0,0.0]},"out":{"variable":[757403.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1110.0,9762.0,1.0,0.0,0.0,4.0,7.0,1110.0,0.0,47.676,-122.15,1900.0,9720.0,51.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1220.0,1086.0,3.0,0.0,0.0,3.0,8.0,1220.0,0.0,47.7049,-122.353,1220.0,1422.0,7.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2160.0,3139.0,1.0,0.0,0.0,3.0,7.0,1080.0,1080.0,47.6662,-122.338,1650.0,3740.0,74.0,0.0,0.0]},"out":{"variable":[673288.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,4700.0,38412.0,2.0,0.0,0.0,3.0,10.0,3420.0,1280.0,47.6445,-122.167,3640.0,35571.0,36.0,0.0,0.0]},"out":{"variable":[1164589.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1880.0,4499.0,2.0,0.0,0.0,3.0,8.0,1880.0,0.0,47.5664,-121.999,2130.0,5114.0,22.0,0.0,0.0]},"out":{"variable":[553463.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2160.0,15817.0,2.0,0.0,0.0,3.0,8.0,2160.0,0.0,47.4166,-122.183,1990.0,15817.0,16.0,0.0,0.0]},"out":{"variable":[404551.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2340.0,16500.0,1.0,0.0,0.0,4.0,8.0,1500.0,840.0,47.5952,-122.051,2210.0,15251.0,42.0,0.0,0.0]},"out":{"variable":[687786.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,960.0,1829.0,2.0,0.0,0.0,3.0,7.0,960.0,0.0,47.6032,-122.308,1470.0,1829.0,10.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1270.0,1062.0,2.0,0.0,0.0,3.0,8.0,1060.0,210.0,47.6568,-122.321,1260.0,1112.0,7.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2560.0,5800.0,2.0,0.0,0.0,3.0,9.0,2560.0,0.0,47.3474,-122.025,3040.0,5800.0,10.0,0.0,0.0]},"out":{"variable":[464060.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1090.0,4000.0,1.5,0.0,0.0,4.0,7.0,1090.0,0.0,47.6846,-122.386,1520.0,4000.0,70.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1610.0,14000.0,1.0,0.0,0.0,4.0,7.0,1050.0,560.0,47.3429,-122.036,1550.0,10080.0,38.0,0.0,0.0]},"out":{"variable":[276709.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1578.0,7340.0,2.0,0.0,0.0,3.0,7.0,1578.0,0.0,47.3771,-122.186,1850.0,7200.0,4.0,0.0,0.0]},"out":{"variable":[284081.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1370.0,22326.0,2.0,0.0,0.0,3.0,7.0,1370.0,0.0,47.4469,-121.775,1580.0,10920.0,21.0,0.0,0.0]},"out":{"variable":[252192.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1780.0,14810.0,1.0,0.0,0.0,4.0,8.0,1180.0,600.0,47.3581,-122.288,1450.0,6728.0,65.0,0.0,0.0]},"out":{"variable":[281823.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1630.0,15600.0,1.0,0.0,0.0,3.0,7.0,1630.0,0.0,47.68,-122.165,1830.0,10850.0,56.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1100.0,17334.0,1.0,0.0,0.0,3.0,7.0,1100.0,0.0,47.3003,-122.27,1530.0,18694.0,36.0,0.0,0.0]},"out":{"variable":[238078.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,950.0,11835.0,1.0,0.0,0.0,3.0,5.0,950.0,0.0,47.7494,-122.237,1690.0,12586.0,82.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,1390.0,1080.0,2.0,0.0,0.0,3.0,7.0,1140.0,250.0,47.5325,-122.282,1450.0,1461.0,9.0,0.0,0.0]},"out":{"variable":[271309.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2150.0,13789.0,1.0,0.0,0.0,4.0,8.0,1610.0,540.0,47.7591,-122.295,2150.0,15480.0,48.0,0.0,0.0]},"out":{"variable":[508926.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,3920.0,13085.0,2.0,1.0,4.0,4.0,11.0,3920.0,0.0,47.5716,-122.204,3450.0,13287.0,18.0,0.0,0.0]},"out":{"variable":[1452224.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2720.0,8000.0,1.0,0.0,0.0,4.0,7.0,1360.0,1360.0,47.5237,-122.391,1790.0,8000.0,60.0,0.0,0.0]},"out":{"variable":[434958.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1200.0,9085.0,1.0,0.0,0.0,4.0,7.0,1200.0,0.0,47.2795,-122.353,1200.0,9085.0,46.0,0.0,0.0]},"out":{"variable":[241330.19]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,1310.0,8667.0,1.5,0.0,0.0,1.0,6.0,1310.0,0.0,47.6059,-122.313,1130.0,4800.0,96.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2400.0,3844.0,1.0,0.0,0.0,5.0,7.0,1200.0,1200.0,47.7027,-122.347,1100.0,3844.0,40.0,0.0,0.0]},"out":{"variable":[712309.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2160.0,15788.0,1.0,0.0,0.0,3.0,8.0,2160.0,0.0,47.6227,-122.207,2260.0,9787.0,63.0,0.0,0.0]},"out":{"variable":[673288.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2280.0,15347.0,1.0,0.0,0.0,5.0,7.0,2280.0,0.0,47.5218,-122.164,2280.0,15347.0,54.0,0.0,0.0]},"out":{"variable":[416617.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.25,3230.0,7800.0,2.0,0.0,3.0,3.0,10.0,3230.0,0.0,47.6348,-122.403,3030.0,6600.0,9.0,0.0,0.0]},"out":{"variable":[1077279.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2210.0,8465.0,1.0,0.0,0.0,3.0,8.0,1490.0,720.0,47.2647,-122.221,2210.0,7917.0,24.0,0.0,0.0]},"out":{"variable":[338138.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2380.0,16236.0,1.0,0.0,0.0,3.0,7.0,1540.0,840.0,47.6126,-122.12,2230.0,8925.0,53.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1080.0,4000.0,1.0,0.0,0.0,3.0,7.0,1080.0,0.0,47.6902,-122.387,1530.0,4240.0,75.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2950.0,10254.0,2.0,0.0,0.0,3.0,9.0,2950.0,0.0,47.4888,-122.14,2800.0,9323.0,8.0,0.0,0.0]},"out":{"variable":[523152.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2100.0,5060.0,2.0,0.0,0.0,3.0,7.0,2100.0,0.0,47.563,-122.298,1520.0,2468.0,8.0,0.0,0.0]},"out":{"variable":[642519.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1540.0,115434.0,1.5,0.0,0.0,4.0,7.0,1540.0,0.0,47.4163,-122.22,2027.0,23522.0,91.0,0.0,0.0]},"out":{"variable":[301714.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,940.0,5000.0,1.0,0.0,0.0,3.0,7.0,880.0,60.0,47.6771,-122.398,1420.0,5000.0,74.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1620.0,1841.0,2.0,0.0,0.0,3.0,8.0,1540.0,80.0,47.5483,-122.004,1530.0,1831.0,10.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3180.0,12528.0,2.0,0.0,1.0,4.0,9.0,2060.0,1120.0,47.7058,-122.379,2850.0,11410.0,36.0,0.0,0.0]},"out":{"variable":[944006.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1810.0,6583.0,1.0,0.0,0.0,3.0,7.0,1500.0,310.0,47.7273,-122.351,860.0,8670.0,47.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,3230.0,5167.0,1.5,0.0,0.0,4.0,8.0,2000.0,1230.0,47.7053,-122.34,1509.0,1626.0,106.0,0.0,0.0]},"out":{"variable":[756699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1540.0,9154.0,1.0,0.0,0.0,3.0,8.0,1540.0,0.0,47.6207,-122.042,1990.0,10273.0,31.0,0.0,0.0]},"out":{"variable":[555231.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,3080.0,6495.0,2.0,0.0,3.0,3.0,11.0,2530.0,550.0,47.6321,-122.393,4120.0,8620.0,18.0,1.0,10.0]},"out":{"variable":[1122811.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1420.0,7420.0,1.5,0.0,0.0,3.0,6.0,1420.0,0.0,47.4949,-122.239,1290.0,6600.0,70.0,0.0,0.0]},"out":{"variable":[256630.31]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1020.0,5410.0,1.0,0.0,0.0,4.0,7.0,880.0,140.0,47.6924,-122.31,1580.0,5376.0,86.0,0.0,0.0]},"out":{"variable":[444933.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2480.0,6112.0,2.0,0.0,0.0,3.0,7.0,2480.0,0.0,47.4387,-122.114,3220.0,6727.0,10.0,0.0,0.0]},"out":{"variable":[400456.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1770.0,7251.0,1.0,0.0,0.0,4.0,8.0,1770.0,0.0,47.4087,-122.17,2560.0,7210.0,24.0,0.0,0.0]},"out":{"variable":[294203.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,820.0,5100.0,1.0,0.0,0.0,4.0,6.0,820.0,0.0,47.5175,-122.205,2270.0,5100.0,60.0,0.0,0.0]},"out":{"variable":[258377.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2420.0,7548.0,1.0,0.0,0.0,4.0,8.0,1370.0,1050.0,47.3112,-122.376,2150.0,8000.0,47.0,0.0,0.0]},"out":{"variable":[350835.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,4.5,3500.0,8504.0,2.0,0.0,0.0,3.0,7.0,3500.0,0.0,47.7349,-122.295,1550.0,8460.0,35.0,0.0,0.0]},"out":{"variable":[637376.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2701.0,5821.0,2.0,0.0,0.0,3.0,7.0,2701.0,0.0,47.2873,-122.177,2566.0,5843.0,1.0,0.0,0.0]},"out":{"variable":[371040.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1620.0,997.0,2.5,0.0,0.0,3.0,8.0,1540.0,80.0,47.54,-122.026,1620.0,1068.0,4.0,0.0,0.0]},"out":{"variable":[544392.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2050.0,5000.0,2.0,0.0,0.0,4.0,8.0,1370.0,680.0,47.6235,-122.298,1720.0,5000.0,27.0,0.0,0.0]},"out":{"variable":[630865.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2400.0,7738.0,1.5,0.0,0.0,3.0,8.0,2400.0,0.0,47.4562,-122.33,2170.0,8452.0,50.0,0.0,0.0]},"out":{"variable":[424253.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,710.0,4618.0,1.0,0.0,1.0,3.0,5.0,710.0,0.0,47.64,-122.394,1810.0,4988.0,90.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1720.0,6000.0,1.0,0.0,2.0,3.0,7.0,1000.0,720.0,47.4999,-122.223,1690.0,6000.0,60.0,0.0,0.0]},"out":{"variable":[332793.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,4200.0,35267.0,2.0,0.0,0.0,3.0,11.0,4200.0,0.0,47.7108,-122.071,3540.0,22234.0,24.0,0.0,0.0]},"out":{"variable":[1181336.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,4160.0,47480.0,2.0,0.0,0.0,3.0,10.0,4160.0,0.0,47.7266,-122.115,3400.0,40428.0,19.0,0.0,0.0]},"out":{"variable":[1082353.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1500.0,7482.0,1.0,0.0,0.0,4.0,7.0,1210.0,290.0,47.4619,-122.187,1480.0,7308.0,46.0,0.0,0.0]},"out":{"variable":[265691.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1720.0,8100.0,2.0,0.0,0.0,3.0,8.0,1720.0,0.0,47.6746,-122.4,2210.0,8100.0,107.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1590.0,11745.0,1.0,0.0,0.0,3.0,7.0,1090.0,500.0,47.3553,-122.28,1540.0,12530.0,36.0,0.0,0.0]},"out":{"variable":[276046.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2860.0,4500.0,2.0,0.0,2.0,3.0,8.0,1980.0,880.0,47.6463,-122.371,2310.0,4500.0,99.0,0.0,0.0]},"out":{"variable":[721518.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2120.0,6710.0,1.0,0.0,0.0,5.0,7.0,1420.0,700.0,47.7461,-122.324,1880.0,6960.0,55.0,0.0,0.0]},"out":{"variable":[494083.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2660.0,4975.0,2.0,0.0,0.0,3.0,8.0,2660.0,0.0,47.5487,-122.272,1840.0,6653.0,0.0,0.0,0.0]},"out":{"variable":[718445.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,980.0,1020.0,3.0,0.0,0.0,3.0,8.0,980.0,0.0,47.6844,-122.387,980.0,1023.0,6.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2040.0,5616.0,2.0,0.0,0.0,3.0,8.0,2040.0,0.0,47.7737,-122.238,2380.0,4737.0,2.0,0.0,0.0]},"out":{"variable":[481460.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1360.0,9603.0,1.0,0.0,0.0,3.0,7.0,1360.0,0.0,47.3959,-122.309,2240.0,10605.0,52.0,0.0,0.0]},"out":{"variable":[257407.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,3450.0,28324.0,1.0,0.0,0.0,5.0,8.0,2350.0,1100.0,47.6991,-122.196,2640.0,14978.0,42.0,0.0,0.0]},"out":{"variable":[782434.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1810.0,4220.0,2.0,0.0,0.0,3.0,8.0,1810.0,0.0,47.7177,-122.034,1350.0,4479.0,10.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,4.5,5770.0,10050.0,1.0,0.0,3.0,5.0,9.0,3160.0,2610.0,47.677,-122.275,2950.0,6700.0,65.0,0.0,0.0]},"out":{"variable":[1689843.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1720.0,6417.0,1.0,0.0,0.0,3.0,7.0,1720.0,0.0,47.7268,-122.311,1430.0,6240.0,61.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1470.0,18581.0,1.5,0.0,0.0,3.0,6.0,1470.0,0.0,47.4336,-122.197,1770.0,18581.0,90.0,0.0,0.0]},"out":{"variable":[275884.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2340.0,10495.0,1.0,0.0,0.0,4.0,8.0,2340.0,0.0,47.5386,-122.226,3120.0,11068.0,47.0,0.0,0.0]},"out":{"variable":[704672.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,2080.0,8112.0,1.0,1.0,4.0,4.0,8.0,1040.0,1040.0,47.7134,-122.277,2030.0,8408.0,75.0,1.0,45.0]},"out":{"variable":[987157.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1360.0,16000.0,1.0,0.0,0.0,3.0,7.0,1360.0,0.0,47.7583,-122.306,1360.0,12939.0,36.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1080.0,6760.0,1.0,0.0,2.0,3.0,6.0,1080.0,0.0,47.7008,-122.386,2080.0,5800.0,91.0,0.0,0.0]},"out":{"variable":[392867.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1750.0,68841.0,1.0,0.0,0.0,3.0,7.0,1750.0,0.0,47.4442,-122.081,1550.0,32799.0,72.0,0.0,0.0]},"out":{"variable":[303002.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,670.0,5750.0,1.0,0.0,0.0,3.0,7.0,670.0,0.0,47.5624,-122.394,1170.0,5750.0,73.0,1.0,69.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,2990.0,9773.0,2.0,0.0,0.0,4.0,8.0,2990.0,0.0,47.6344,-122.174,2230.0,11553.0,42.0,0.0,0.0]},"out":{"variable":[713485.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1360.0,9688.0,1.0,0.0,0.0,4.0,7.0,1360.0,0.0,47.2574,-122.31,1390.0,9685.0,31.0,0.0,0.0]},"out":{"variable":[247009.36]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,2500.0,35802.0,1.5,0.0,0.0,3.0,7.0,2500.0,0.0,47.6488,-122.153,2880.0,40510.0,59.0,0.0,0.0]},"out":{"variable":[713003.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2300.0,41900.0,1.0,0.0,0.0,4.0,8.0,1310.0,990.0,47.477,-122.292,1160.0,8547.0,76.0,0.0,0.0]},"out":{"variable":[430252.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,5403.0,24069.0,2.0,1.0,4.0,4.0,12.0,5403.0,0.0,47.4169,-122.348,3980.0,104374.0,39.0,0.0,0.0]},"out":{"variable":[1946437.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1530.0,4944.0,1.0,0.0,0.0,3.0,7.0,1530.0,0.0,47.6857,-122.341,1500.0,4944.0,64.0,0.0,0.0]},"out":{"variable":[550275.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1120.0,758.0,2.0,0.0,0.0,3.0,7.0,1120.0,0.0,47.5325,-122.072,1150.0,758.0,2.0,0.0,0.0]},"out":{"variable":[247726.42]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2350.0,6958.0,2.0,0.0,0.0,3.0,9.0,2350.0,0.0,47.3321,-122.172,2480.0,6395.0,16.0,0.0,0.0]},"out":{"variable":[461279.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.0,2300.0,7897.0,2.5,0.0,0.0,4.0,8.0,2300.0,0.0,47.7556,-122.356,2030.0,7902.0,59.0,0.0,0.0]},"out":{"variable":[523576.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2130.0,9100.0,1.0,0.0,0.0,3.0,8.0,1290.0,840.0,47.3815,-122.169,1770.0,7700.0,36.0,0.0,0.0]},"out":{"variable":[334257.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1560.0,7000.0,1.0,0.0,0.0,4.0,7.0,1560.0,0.0,47.3355,-122.284,1560.0,7200.0,46.0,0.0,0.0]},"out":{"variable":[276709.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2030.0,8400.0,1.0,0.0,0.0,3.0,7.0,1330.0,700.0,47.6713,-122.152,1920.0,8400.0,47.0,0.0,0.0]},"out":{"variable":[595497.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,660.0,6509.0,1.0,0.0,0.0,4.0,5.0,660.0,0.0,47.4938,-122.171,970.0,5713.0,63.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,3420.0,18129.0,2.0,0.0,0.0,3.0,9.0,2540.0,880.0,47.5333,-122.217,3750.0,16316.0,62.0,1.0,53.0]},"out":{"variable":[1325961.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2460.0,4399.0,2.0,0.0,0.0,3.0,7.0,2460.0,0.0,47.5415,-121.884,2060.0,4399.0,7.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.25,4560.0,13363.0,1.0,0.0,4.0,3.0,11.0,2760.0,1800.0,47.6205,-122.214,4060.0,13362.0,20.0,0.0,0.0]},"out":{"variable":[2005883.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2670.0,189486.0,2.0,0.0,4.0,3.0,8.0,2670.0,0.0,47.2585,-122.061,2190.0,218610.0,42.0,0.0,0.0]},"out":{"variable":[495822.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1350.0,2325.0,3.0,0.0,0.0,3.0,7.0,1350.0,0.0,47.6965,-122.35,1520.0,1652.0,16.0,0.0,0.0]},"out":{"variable":[422481.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3670.0,54450.0,2.0,0.0,0.0,3.0,10.0,3670.0,0.0,47.6211,-122.016,2900.0,49658.0,15.0,0.0,0.0]},"out":{"variable":[921695.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,4200.0,5400.0,2.0,0.0,0.0,3.0,9.0,3140.0,1060.0,47.7077,-122.12,3300.0,5564.0,2.0,0.0,0.0]},"out":{"variable":[1052898.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,1810.0,9240.0,2.0,0.0,0.0,3.0,7.0,1810.0,0.0,47.4362,-122.187,1660.0,9240.0,54.0,0.0,0.0]},"out":{"variable":[303866.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,700.0,5829.0,1.0,0.0,0.0,3.0,6.0,700.0,0.0,47.6958,-122.357,1160.0,6700.0,70.0,0.0,0.0]},"out":{"variable":[432971.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3220.0,38448.0,2.0,0.0,0.0,3.0,10.0,3220.0,0.0,47.6854,-122.053,3090.0,38448.0,21.0,0.0,0.0]},"out":{"variable":[886958.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1520.0,7983.0,1.0,0.0,0.0,5.0,7.0,1520.0,0.0,47.7357,-122.193,1520.0,7783.0,47.0,0.0,0.0]},"out":{"variable":[424966.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1910.0,5000.0,2.0,0.0,0.0,3.0,7.0,1910.0,0.0,47.3608,-122.036,2020.0,5000.0,9.0,0.0,0.0]},"out":{"variable":[296202.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2840.0,216493.0,2.0,0.0,0.0,3.0,9.0,2840.0,0.0,47.702,-121.892,2820.0,175111.0,23.0,0.0,0.0]},"out":{"variable":[765468.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,3430.0,15119.0,2.0,0.0,0.0,3.0,10.0,3430.0,0.0,47.5678,-122.032,3430.0,12045.0,17.0,0.0,0.0]},"out":{"variable":[919031.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1760.0,5390.0,1.0,0.0,0.0,3.0,8.0,1760.0,0.0,47.3482,-122.042,2310.0,5117.0,0.0,0.0,0.0]},"out":{"variable":[291239.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1110.0,1290.0,3.0,0.0,0.0,3.0,8.0,1110.0,0.0,47.6968,-122.34,1360.0,1251.0,8.0,0.0,0.0]},"out":{"variable":[405552.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1350.0,941.0,3.0,0.0,0.0,3.0,9.0,1350.0,0.0,47.6265,-122.364,1640.0,1369.0,8.0,0.0,0.0]},"out":{"variable":[684577.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2980.0,7000.0,2.0,0.0,3.0,3.0,10.0,2140.0,840.0,47.5933,-122.292,2200.0,4800.0,114.0,1.0,114.0]},"out":{"variable":[1156206.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,2260.0,1834.0,2.0,0.0,0.0,3.0,8.0,1660.0,600.0,47.6111,-122.308,2260.0,1834.0,12.0,0.0,0.0]},"out":{"variable":[682284.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,3400.0,7452.0,2.0,0.0,0.0,3.0,10.0,3400.0,0.0,47.6141,-122.136,2650.0,8749.0,15.0,0.0,0.0]},"out":{"variable":[911794.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,4.5,6380.0,88714.0,2.0,0.0,0.0,3.0,12.0,6380.0,0.0,47.5592,-122.015,3040.0,7113.0,8.0,0.0,0.0]},"out":{"variable":[1355747.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.75,3180.0,9889.0,2.0,0.0,0.0,3.0,9.0,2500.0,680.0,47.6853,-122.204,2910.0,8558.0,2.0,0.0,0.0]},"out":{"variable":[946050.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,3130.0,12381.0,2.0,0.0,0.0,3.0,9.0,3130.0,0.0,47.5599,-122.118,3250.0,10049.0,20.0,0.0,0.0]},"out":{"variable":[836480.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1470.0,7694.0,1.0,0.0,0.0,4.0,7.0,1470.0,0.0,47.3539,-122.054,1580.0,7480.0,23.0,0.0,0.0]},"out":{"variable":[259333.97]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.25,2360.0,3873.0,2.0,0.0,0.0,3.0,8.0,1990.0,370.0,47.5635,-122.299,1720.0,3071.0,8.0,0.0,0.0]},"out":{"variable":[713979.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,4.0,2790.0,16117.0,2.0,0.0,0.0,4.0,9.0,2790.0,0.0,47.6033,-122.155,2740.0,25369.0,15.0,0.0,0.0]},"out":{"variable":[765468.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2600.0,4506.0,2.0,0.0,0.0,3.0,9.0,2600.0,0.0,47.5146,-122.188,2470.0,6041.0,9.0,0.0,0.0]},"out":{"variable":[575285.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3270.0,15704.0,2.0,0.0,0.0,3.0,9.0,2110.0,1160.0,47.6256,-122.042,3020.0,8582.0,24.0,0.0,0.0]},"out":{"variable":[846774.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2810.0,6146.0,2.0,0.0,0.0,3.0,9.0,2810.0,0.0,47.4045,-122.208,2810.0,6180.0,16.0,0.0,0.0]},"out":{"variable":[488736.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1480.0,5600.0,1.0,0.0,0.0,4.0,6.0,940.0,540.0,47.5045,-122.27,1350.0,11100.0,67.0,0.0,0.0]},"out":{"variable":[267890.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2320.0,9240.0,1.0,0.0,0.0,3.0,7.0,1160.0,1160.0,47.4909,-122.257,2130.0,7320.0,55.0,1.0,55.0]},"out":{"variable":[404676.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1880.0,12150.0,1.0,0.0,0.0,3.0,7.0,1280.0,600.0,47.3272,-122.363,1980.0,9680.0,38.0,0.0,0.0]},"out":{"variable":[293560.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1785.0,779.0,2.0,0.0,0.0,3.0,7.0,1595.0,190.0,47.5959,-122.198,1780.0,794.0,39.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2590.0,9530.0,1.0,0.0,0.0,4.0,8.0,1640.0,950.0,47.7752,-122.285,2710.0,10970.0,36.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1910.0,8775.0,1.0,0.0,0.0,3.0,7.0,1210.0,700.0,47.7396,-122.247,2210.0,8778.0,59.0,0.0,0.0]},"out":{"variable":[438821.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,1900.0,7843.0,2.0,0.0,0.0,5.0,7.0,1900.0,0.0,47.6273,-122.123,1900.0,7350.0,49.0,0.0,0.0]},"out":{"variable":[563844.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2440.0,5001.0,2.0,0.0,0.0,3.0,8.0,2440.0,0.0,47.5108,-122.193,2260.0,5001.0,9.0,0.0,0.0]},"out":{"variable":[444931.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1670.0,4005.0,1.5,0.0,0.0,4.0,7.0,1170.0,500.0,47.6878,-122.38,1240.0,4005.0,75.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2810.0,6481.0,2.0,0.0,0.0,3.0,9.0,2810.0,0.0,47.333,-122.172,2660.0,6958.0,17.0,0.0,0.0]},"out":{"variable":[475271.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,2.5,2590.0,10890.0,1.0,0.0,0.0,4.0,7.0,1340.0,1250.0,47.4126,-122.165,2474.0,10454.0,44.0,0.0,0.0]},"out":{"variable":[383253.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2200.0,6967.0,2.0,0.0,0.0,3.0,8.0,2200.0,0.0,47.7355,-122.202,1970.0,7439.0,29.0,0.0,0.0]},"out":{"variable":[519346.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1520.0,1304.0,2.0,0.0,0.0,3.0,8.0,1180.0,340.0,47.5446,-122.385,1270.0,1718.0,8.0,0.0,0.0]},"out":{"variable":[530271.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1580.0,9600.0,1.0,0.0,0.0,5.0,7.0,1050.0,530.0,47.4091,-122.313,1710.0,9600.0,49.0,0.0,0.0]},"out":{"variable":[281058.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1160.0,5000.0,1.0,0.0,0.0,4.0,8.0,1160.0,0.0,47.6865,-122.399,1750.0,5000.0,77.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2770.0,6116.0,1.0,0.0,0.0,3.0,7.0,1490.0,1280.0,47.4847,-122.291,1920.0,6486.0,35.0,0.0,0.0]},"out":{"variable":[429876.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1260.0,7897.0,1.0,0.0,0.0,3.0,7.0,1260.0,0.0,47.1946,-122.003,1560.0,8285.0,35.0,0.0,0.0]},"out":{"variable":[246088.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1700.0,8481.0,2.0,0.0,0.0,3.0,7.0,1700.0,0.0,47.2623,-122.305,1830.0,6600.0,21.0,0.0,0.0]},"out":{"variable":[290323.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1890.0,6962.0,2.0,0.0,0.0,3.0,8.0,1890.0,0.0,47.3328,-122.187,2170.0,6803.0,17.0,0.0,0.0]},"out":{"variable":[293560.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2070.0,8685.0,2.0,0.0,0.0,3.0,7.0,2070.0,0.0,47.4697,-122.267,2170.0,9715.0,9.0,0.0,0.0]},"out":{"variable":[380009.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1010.0,6000.0,1.0,0.0,0.0,4.0,6.0,1010.0,0.0,47.771,-122.353,1610.0,7313.0,70.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1540.0,5920.0,1.5,0.0,0.0,5.0,7.0,1540.0,0.0,47.7148,-122.301,1630.0,6216.0,79.0,0.0,0.0]},"out":{"variable":[433900.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1553.0,1991.0,3.0,0.0,0.0,3.0,8.0,1553.0,0.0,47.7049,-122.34,1509.0,2431.0,0.0,0.0,0.0]},"out":{"variable":[449229.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1820.0,5500.0,1.5,0.0,0.0,3.0,6.0,1820.0,0.0,47.5185,-122.363,1140.0,5500.0,68.0,0.0,0.0]},"out":{"variable":[322015.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1780.0,10196.0,1.0,0.0,0.0,4.0,7.0,1270.0,510.0,47.3375,-122.291,1320.0,7875.0,48.0,0.0,0.0]},"out":{"variable":[281823.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1760.0,4000.0,2.0,0.0,0.0,3.0,8.0,1760.0,0.0,47.6401,-122.32,1760.0,4000.0,92.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1628.0,286355.0,1.0,0.0,0.0,3.0,7.0,1628.0,0.0,47.2558,-122.122,1490.0,216344.0,19.0,0.0,0.0]},"out":{"variable":[274207.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1300.0,1331.0,3.0,0.0,0.0,3.0,8.0,1300.0,0.0,47.6607,-122.352,1450.0,5270.0,8.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2180.0,7700.0,1.0,0.0,0.0,3.0,8.0,1480.0,700.0,47.7594,-122.361,2180.0,7604.0,53.0,0.0,0.0]},"out":{"variable":[516278.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1500.0,1312.0,3.0,0.0,0.0,3.0,8.0,1500.0,0.0,47.6534,-122.346,1500.0,1282.0,7.0,0.0,0.0]},"out":{"variable":[536497.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.25,1450.0,1468.0,2.0,0.0,0.0,3.0,8.0,1100.0,350.0,47.5664,-122.37,1450.0,1478.0,5.0,0.0,0.0]},"out":{"variable":[451058.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1400.0,4800.0,1.0,0.0,0.0,3.0,7.0,1200.0,200.0,47.6865,-122.379,1440.0,3840.0,93.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2009.0,5000.0,2.0,0.0,0.0,3.0,8.0,2009.0,0.0,47.2577,-122.198,2009.0,5182.0,0.0,0.0,0.0]},"out":{"variable":[320863.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,4.25,4860.0,9453.0,1.5,0.0,1.0,5.0,10.0,3100.0,1760.0,47.6196,-122.286,3150.0,8557.0,109.0,0.0,0.0]},"out":{"variable":[1910823.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1780.0,5720.0,1.0,0.0,0.0,5.0,7.0,980.0,800.0,47.6794,-122.351,1620.0,5050.0,89.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2180.0,9178.0,1.0,0.0,0.0,3.0,7.0,1140.0,1040.0,47.4364,-122.28,2140.0,9261.0,51.0,0.0,0.0]},"out":{"variable":[382005.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,2980.0,9838.0,1.0,0.0,0.0,3.0,7.0,1710.0,1270.0,47.3807,-122.222,2240.0,9838.0,47.0,0.0,0.0]},"out":{"variable":[379076.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1520.0,12282.0,1.0,0.0,0.0,3.0,8.0,1220.0,300.0,47.7516,-122.299,1860.0,13500.0,36.0,0.0,0.0]},"out":{"variable":[424966.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2630.0,5701.0,2.0,0.0,0.0,3.0,7.0,2630.0,0.0,47.375,-122.16,2770.0,5939.0,4.0,0.0,0.0]},"out":{"variable":[368504.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2270.0,11500.0,1.0,0.0,0.0,3.0,8.0,1540.0,730.0,47.7089,-122.241,2020.0,10918.0,47.0,0.0,0.0]},"out":{"variable":[625989.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2380.0,8204.0,1.0,0.0,0.0,3.0,8.0,1540.0,840.0,47.7,-122.287,2270.0,8204.0,58.0,0.0,0.0]},"out":{"variable":[712309.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1500.0,7420.0,1.0,0.0,0.0,3.0,7.0,1000.0,500.0,47.7236,-122.174,1840.0,7272.0,42.0,0.0,0.0]},"out":{"variable":[419677.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1620.0,12825.0,1.0,0.0,0.0,3.0,8.0,1340.0,280.0,47.3321,-122.323,2076.0,11200.0,53.0,0.0,0.0]},"out":{"variable":[284081.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1580.0,5000.0,1.0,0.0,0.0,3.0,8.0,1290.0,290.0,47.687,-122.386,1570.0,4500.0,75.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1590.0,8911.0,1.0,0.0,0.0,3.0,7.0,1590.0,0.0,47.7394,-122.252,1590.0,9625.0,58.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2660.0,10637.0,1.5,0.0,0.0,5.0,7.0,1670.0,990.0,47.6945,-122.292,1570.0,6825.0,92.0,0.0,0.0]},"out":{"variable":[716776.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1780.0,16000.0,1.0,0.0,0.0,2.0,7.0,1240.0,540.0,47.419,-122.322,1860.0,9775.0,54.0,0.0,0.0]},"out":{"variable":[308049.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2600.0,12860.0,1.0,0.0,0.0,3.0,7.0,1350.0,1250.0,47.695,-121.918,2260.0,12954.0,49.0,0.0,0.0]},"out":{"variable":[703282.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1460.0,2610.0,2.0,0.0,0.0,3.0,8.0,1460.0,0.0,47.6864,-122.345,1320.0,3000.0,27.0,0.0,0.0]},"out":{"variable":[498579.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2790.0,5450.0,2.0,0.0,0.0,3.0,10.0,1930.0,860.0,47.6453,-122.303,2320.0,5450.0,89.0,1.0,75.0]},"out":{"variable":[1097757.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2370.0,9619.0,1.0,0.0,0.0,4.0,8.0,1650.0,720.0,47.6366,-122.099,1960.0,9712.0,41.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2340.0,8248.0,2.0,0.0,0.0,3.0,8.0,2340.0,0.0,47.6314,-122.03,2140.0,9963.0,25.0,0.0,0.0]},"out":{"variable":[687786.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,3280.0,79279.0,1.0,0.0,0.0,3.0,10.0,3280.0,0.0,47.3207,-122.293,1860.0,24008.0,13.0,0.0,0.0]},"out":{"variable":[634865.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3260.0,5974.0,2.0,0.0,1.0,3.0,9.0,2820.0,440.0,47.6772,-122.267,2260.0,6780.0,8.0,0.0,0.0]},"out":{"variable":[947561.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2180.0,4431.0,1.5,0.0,0.0,3.0,8.0,2020.0,160.0,47.636,-122.302,1890.0,4400.0,103.0,0.0,0.0]},"out":{"variable":[675545.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.0,2110.0,7794.0,1.0,0.0,0.0,3.0,6.0,2110.0,0.0,47.4005,-122.293,1330.0,10044.0,33.0,0.0,0.0]},"out":{"variable":[349668.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1960.0,1585.0,2.0,0.0,0.0,3.0,7.0,1750.0,210.0,47.5414,-122.288,1760.0,1958.0,11.0,0.0,0.0]},"out":{"variable":[559453.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,3190.0,52953.0,2.0,0.0,0.0,4.0,10.0,3190.0,0.0,47.5933,-122.075,3190.0,51400.0,35.0,0.0,0.0]},"out":{"variable":[886958.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1740.0,18000.0,1.0,0.0,0.0,3.0,7.0,1230.0,510.0,47.7397,-122.242,1740.0,11250.0,25.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,2060.0,15050.0,1.5,0.0,0.0,4.0,7.0,2060.0,0.0,47.3321,-122.373,1900.0,15674.0,76.0,0.0,0.0]},"out":{"variable":[355736.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2590.0,7720.0,2.0,0.0,0.0,3.0,9.0,2590.0,0.0,47.659,-122.146,2600.0,9490.0,26.0,0.0,0.0]},"out":{"variable":[758714.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.0,1900.0,6000.0,1.5,0.0,0.0,4.0,6.0,1900.0,0.0,47.6831,-122.186,2110.0,8400.0,95.0,0.0,0.0]},"out":{"variable":[563844.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2590.0,35640.0,1.0,0.0,0.0,3.0,9.0,2590.0,0.0,47.5516,-122.03,2590.0,31200.0,28.0,0.0,0.0]},"out":{"variable":[758714.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1820.0,78408.0,1.0,0.0,0.0,3.0,6.0,1220.0,600.0,47.3364,-122.128,1340.0,78408.0,65.0,0.0,0.0]},"out":{"variable":[281823.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,2330.0,10143.0,1.0,0.0,2.0,4.0,7.0,1220.0,1110.0,47.4899,-122.359,2560.0,9750.0,61.0,0.0,0.0]},"out":{"variable":[422508.78]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,3520.0,4933.0,1.5,0.0,0.0,4.0,8.0,2270.0,1250.0,47.5655,-122.315,1710.0,5400.0,86.0,0.0,0.0]},"out":{"variable":[784103.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1400.0,1581.0,1.5,0.0,0.0,5.0,8.0,1400.0,0.0,47.6221,-122.314,1860.0,3861.0,105.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1940.0,6386.0,1.0,0.0,0.0,3.0,7.0,1140.0,800.0,47.5533,-122.285,1340.0,6165.0,60.0,0.0,0.0]},"out":{"variable":[558381.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3620.0,42580.0,2.0,0.0,0.0,3.0,10.0,3620.0,0.0,47.7204,-122.115,2950.0,33167.0,30.0,0.0,0.0]},"out":{"variable":[921695.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,4.0,4620.0,130208.0,2.0,0.0,0.0,3.0,10.0,4620.0,0.0,47.5885,-121.939,4620.0,131007.0,1.0,0.0,0.0]},"out":{"variable":[1164589.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1560.0,35026.0,1.0,0.0,0.0,3.0,7.0,1290.0,270.0,47.3023,-122.069,1660.0,35160.0,30.0,0.0,0.0]},"out":{"variable":[278759.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2770.0,63118.0,2.0,0.0,0.0,3.0,9.0,2770.0,0.0,47.6622,-121.961,2770.0,44224.0,17.0,0.0,0.0]},"out":{"variable":[765468.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1660.0,10763.0,2.0,0.0,0.0,3.0,7.0,1660.0,0.0,47.3812,-122.029,2010.0,7983.0,20.0,0.0,0.0]},"out":{"variable":[284845.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1070.0,8130.0,1.0,0.0,0.0,3.0,7.0,1070.0,0.0,47.697,-122.37,1360.0,7653.0,73.0,0.0,0.0]},"out":{"variable":[403520.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2420.0,4750.0,2.0,0.0,0.0,3.0,8.0,2420.0,0.0,47.3663,-122.122,2690.0,4750.0,12.0,0.0,0.0]},"out":{"variable":[350835.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,560.0,7560.0,1.0,0.0,0.0,3.0,6.0,560.0,0.0,47.5271,-122.375,990.0,7560.0,70.0,0.0,0.0]},"out":{"variable":[253679.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1651.0,18200.0,1.0,0.0,0.0,3.0,6.0,1651.0,0.0,47.4621,-122.461,1510.0,89595.0,68.0,0.0,0.0]},"out":{"variable":[316231.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1000.0,16376.0,1.0,0.0,0.0,3.0,7.0,1000.0,0.0,47.4825,-122.108,1420.0,16192.0,55.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,3340.0,10422.0,2.0,0.0,0.0,3.0,10.0,3340.0,0.0,47.6515,-122.197,1770.0,9490.0,18.0,0.0,0.0]},"out":{"variable":[1103101.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,3760.0,10207.0,2.0,0.0,0.0,3.0,10.0,3150.0,610.0,47.5605,-122.225,3550.0,12118.0,46.0,0.0,0.0]},"out":{"variable":[1489624.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2020.0,3600.0,2.0,0.0,0.0,3.0,8.0,2020.0,0.0,47.6678,-122.165,2070.0,3699.0,16.0,0.0,0.0]},"out":{"variable":[583765.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1540.0,5120.0,1.0,0.0,0.0,5.0,6.0,770.0,770.0,47.5359,-122.372,1080.0,5120.0,71.0,0.0,0.0]},"out":{"variable":[538436.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2330.0,7642.0,1.0,0.0,0.0,3.0,8.0,1800.0,530.0,47.2946,-122.37,2320.0,7933.0,24.0,0.0,0.0]},"out":{"variable":[348323.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.5,2700.0,11675.0,1.5,0.0,2.0,4.0,6.0,1950.0,750.0,47.7172,-122.349,2160.0,8114.0,66.0,0.0,0.0]},"out":{"variable":[559923.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,700.0,8100.0,1.0,0.0,0.0,3.0,6.0,700.0,0.0,47.7492,-122.311,1230.0,8100.0,65.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1890.0,4500.0,1.5,0.0,0.0,3.0,7.0,1490.0,400.0,47.6684,-122.356,1640.0,4010.0,108.0,1.0,86.0]},"out":{"variable":[562676.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1061.0,2884.0,2.0,0.0,0.0,3.0,7.0,1061.0,0.0,47.346,-122.218,1481.0,2887.0,2.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2060.0,5649.0,1.0,0.0,0.0,5.0,8.0,1360.0,700.0,47.6496,-122.407,2060.0,5626.0,73.0,0.0,0.0]},"out":{"variable":[630865.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1390.0,10530.0,1.0,0.0,0.0,3.0,7.0,1390.0,0.0,47.7025,-122.196,1750.0,10530.0,54.0,0.0,0.0]},"out":{"variable":[376762.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1730.0,3600.0,2.0,0.0,0.0,3.0,8.0,1730.0,0.0,47.5014,-122.34,2030.0,3600.0,0.0,0.0,0.0]},"out":{"variable":[317132.63]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1550.0,7713.0,1.0,0.0,0.0,3.0,7.0,1550.0,0.0,47.7005,-122.358,1340.0,6350.0,84.0,1.0,49.0]},"out":{"variable":[465299.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1840.0,10125.0,1.0,0.0,0.0,4.0,8.0,1220.0,620.0,47.5607,-122.217,2320.0,10160.0,55.0,0.0,0.0]},"out":{"variable":[546632.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,630.0,6000.0,1.0,0.0,0.0,3.0,6.0,630.0,0.0,47.4973,-122.221,1470.0,6840.0,71.0,1.0,62.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1620.0,8125.0,2.0,0.0,0.0,4.0,7.0,1620.0,0.0,47.6255,-122.059,1480.0,8120.0,32.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1760.0,12874.0,1.0,0.0,0.0,4.0,7.0,1230.0,530.0,47.5906,-122.167,1950.0,10240.0,47.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1230.0,11601.0,1.0,0.0,0.0,4.0,7.0,910.0,320.0,47.1955,-121.991,1820.0,8465.0,23.0,0.0,0.0]},"out":{"variable":[253408.19]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1460.0,7800.0,1.0,0.0,0.0,2.0,7.0,1040.0,420.0,47.3035,-122.382,1310.0,7865.0,36.0,0.0,0.0]},"out":{"variable":[300480.28]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1494.0,19271.0,2.0,1.0,4.0,3.0,7.0,1494.0,0.0,47.4728,-122.497,1494.0,43583.0,71.0,1.0,54.0]},"out":{"variable":[359947.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,3340.0,5677.0,2.0,0.0,0.0,3.0,9.0,3340.0,0.0,47.709,-122.118,3240.0,5643.0,4.0,0.0,0.0]},"out":{"variable":[857574.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2930.0,5973.0,2.0,0.0,0.0,3.0,10.0,2930.0,0.0,47.3846,-122.186,3038.0,7095.0,7.0,0.0,0.0]},"out":{"variable":[594678.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1310.0,18135.0,1.0,0.0,0.0,3.0,7.0,1310.0,0.0,47.6065,-122.113,2150.0,18135.0,67.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1260.0,5300.0,1.0,0.0,0.0,4.0,7.0,840.0,420.0,47.6809,-122.348,1280.0,3000.0,64.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1000.0,10560.0,1.0,0.0,0.0,3.0,7.0,1000.0,0.0,47.3217,-122.317,1190.0,9375.0,60.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1790.0,6800.0,1.0,0.0,0.0,4.0,7.0,1240.0,550.0,47.728,-122.339,1470.0,6800.0,51.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.5,1830.0,1988.0,2.0,0.0,0.0,3.0,9.0,1530.0,300.0,47.5779,-122.409,1800.0,2467.0,3.0,0.0,0.0]},"out":{"variable":[725184.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2240.0,8664.0,1.0,0.0,0.0,5.0,8.0,1470.0,770.0,47.6621,-122.189,2210.0,8860.0,39.0,0.0,0.0]},"out":{"variable":[682284.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1320.0,10800.0,1.0,0.0,0.0,4.0,8.0,1320.0,0.0,47.7145,-122.367,2120.0,12040.0,67.0,0.0,0.0]},"out":{"variable":[341649.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1610.0,8500.0,1.5,0.0,0.0,3.0,7.0,1610.0,0.0,47.3717,-122.297,1070.0,8750.0,56.0,0.0,0.0]},"out":{"variable":[274207.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1390.0,13200.0,2.0,0.0,0.0,3.0,7.0,1390.0,0.0,47.4429,-121.771,1430.0,10725.0,35.0,0.0,0.0]},"out":{"variable":[252539.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1430.0,3455.0,1.0,0.0,0.0,3.0,7.0,980.0,450.0,47.6873,-122.336,1450.0,4599.0,67.0,0.0,0.0]},"out":{"variable":[453195.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2350.0,7210.0,1.5,0.0,0.0,4.0,7.0,2350.0,0.0,47.7407,-122.183,1930.0,7519.0,42.0,0.0,0.0]},"out":{"variable":[529302.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1750.0,6397.0,2.0,0.0,0.0,3.0,7.0,1750.0,0.0,47.3082,-122.358,1940.0,6502.0,27.0,0.0,0.0]},"out":{"variable":[291239.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1690.0,4500.0,1.5,0.0,1.0,4.0,8.0,1690.0,0.0,47.5841,-122.383,2140.0,7200.0,86.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1260.0,8614.0,1.0,0.0,0.0,4.0,7.0,1260.0,0.0,47.3586,-122.056,1600.0,8614.0,29.0,0.0,0.0]},"out":{"variable":[246525.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1480.0,8381.0,1.0,0.0,0.0,4.0,7.0,1480.0,0.0,47.7078,-122.288,1710.0,8050.0,46.0,0.0,0.0]},"out":{"variable":[421153.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.5,3660.0,4903.0,2.0,0.0,0.0,3.0,9.0,2760.0,900.0,47.7184,-122.156,3630.0,4992.0,0.0,0.0,0.0]},"out":{"variable":[873848.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,2180.0,6000.0,1.5,0.0,0.0,3.0,8.0,2060.0,120.0,47.5958,-122.306,1370.0,4500.0,88.0,0.0,0.0]},"out":{"variable":[675545.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1670.0,6460.0,1.0,0.0,0.0,3.0,8.0,1670.0,0.0,47.7123,-122.027,2170.0,6254.0,10.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,970.0,7503.0,1.0,0.0,0.0,4.0,6.0,970.0,0.0,47.4688,-122.163,1230.0,9504.0,48.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1780.0,6840.0,2.0,0.0,0.0,4.0,6.0,1780.0,0.0,47.727,-122.3,1410.0,7200.0,67.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1720.0,4050.0,1.0,0.0,0.0,5.0,7.0,860.0,860.0,47.6782,-122.314,1720.0,4410.0,108.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1680.0,8100.0,1.0,0.0,2.0,3.0,8.0,1680.0,0.0,47.7212,-122.364,1880.0,7750.0,65.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2714.0,17936.0,2.0,0.0,0.0,3.0,9.0,2714.0,0.0,47.3185,-122.275,2590.0,18386.0,10.0,0.0,0.0]},"out":{"variable":[487028.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1700.0,1481.0,3.0,0.0,0.0,3.0,8.0,1700.0,0.0,47.6598,-122.349,1560.0,1350.0,12.0,0.0,0.0]},"out":{"variable":[557391.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,1870.0,6000.0,1.5,0.0,0.0,3.0,7.0,1870.0,0.0,47.7155,-122.315,1520.0,7169.0,58.0,0.0,0.0]},"out":{"variable":[442856.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2030.0,5754.0,2.0,0.0,0.0,3.0,8.0,2030.0,0.0,47.3542,-122.137,2030.0,5784.0,14.0,0.0,0.0]},"out":{"variable":[327625.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2420.0,10603.0,1.0,0.0,0.0,5.0,7.0,1210.0,1210.0,47.7397,-122.259,1750.0,10800.0,56.0,0.0,0.0]},"out":{"variable":[530288.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1340.0,4320.0,1.0,0.0,0.0,3.0,5.0,920.0,420.0,47.299,-122.228,980.0,6480.0,102.0,1.0,81.0]},"out":{"variable":[244380.27]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2230.0,3939.0,2.0,0.0,0.0,3.0,8.0,2230.0,0.0,47.73,-122.335,2230.0,4200.0,1.0,0.0,0.0]},"out":{"variable":[519346.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,1860.0,12197.0,1.0,0.0,0.0,3.0,7.0,1860.0,0.0,47.729,-122.235,1510.0,11761.0,50.0,0.0,0.0]},"out":{"variable":[438514.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,1120.0,881.0,3.0,0.0,0.0,3.0,8.0,1120.0,0.0,47.6914,-122.343,1120.0,1087.0,15.0,0.0,0.0]},"out":{"variable":[446768.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2340.0,5940.0,1.0,0.0,0.0,3.0,8.0,1290.0,1050.0,47.6789,-122.281,1930.0,5940.0,61.0,0.0,0.0]},"out":{"variable":[689450.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1970.0,35100.0,2.0,0.0,0.0,4.0,9.0,1970.0,0.0,47.4635,-121.991,2340.0,35100.0,37.0,0.0,0.0]},"out":{"variable":[484757.22]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.5,2620.0,8050.0,1.0,0.0,0.0,3.0,8.0,1520.0,1100.0,47.6919,-122.115,2030.0,7676.0,39.0,0.0,0.0]},"out":{"variable":[706407.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1960.0,7230.0,2.0,0.0,0.0,3.0,8.0,1960.0,0.0,47.2855,-122.36,1850.0,7208.0,12.0,0.0,0.0]},"out":{"variable":[317765.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1190.0,1022.0,3.0,0.0,0.0,3.0,8.0,1190.0,0.0,47.6972,-122.349,1210.0,1171.0,17.0,0.0,0.0]},"out":{"variable":[400561.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2130.0,11900.0,2.0,0.0,0.0,3.0,9.0,2130.0,0.0,47.6408,-122.058,2590.0,11900.0,38.0,0.0,0.0]},"out":{"variable":[730767.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2420.0,8400.0,1.0,0.0,0.0,5.0,7.0,1620.0,800.0,47.5017,-122.165,1660.0,8400.0,50.0,0.0,0.0]},"out":{"variable":[411000.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2230.0,8560.0,2.0,0.0,0.0,3.0,8.0,2230.0,0.0,47.4877,-122.143,2400.0,7756.0,12.0,0.0,0.0]},"out":{"variable":[429339.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,1690.0,1765.0,2.0,0.0,0.0,3.0,8.0,1370.0,320.0,47.6536,-122.34,1690.0,1694.0,8.0,0.0,0.0]},"out":{"variable":[558463.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,4060.0,8547.0,2.0,0.0,0.0,3.0,9.0,2790.0,1270.0,47.3694,-122.056,2810.0,8313.0,7.0,0.0,0.0]},"out":{"variable":[634262.44]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,1620.0,8400.0,1.0,0.0,0.0,3.0,7.0,1180.0,440.0,47.6574,-122.128,2120.0,8424.0,46.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2130.0,8499.0,1.0,0.0,0.0,4.0,7.0,1600.0,530.0,47.3657,-122.21,1890.0,11368.0,39.0,0.0,0.0]},"out":{"variable":[334257.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2100.0,4440.0,2.0,0.0,4.0,3.0,7.0,2100.0,0.0,47.5865,-122.397,2100.0,6000.0,70.0,0.0,0.0]},"out":{"variable":[672052.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.0,1460.0,11726.0,1.5,0.0,0.0,3.0,6.0,1290.0,170.0,47.5039,-122.361,1460.0,10450.0,78.0,0.0,0.0]},"out":{"variable":[266253.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1210.0,8400.0,1.0,0.0,0.0,3.0,8.0,780.0,430.0,47.6503,-122.393,1860.0,6000.0,14.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,910.0,6490.0,1.0,0.0,0.0,3.0,7.0,910.0,0.0,47.6892,-122.306,1040.0,6490.0,72.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2790.0,5423.0,2.0,0.0,0.0,3.0,9.0,2790.0,0.0,47.6085,-122.017,2450.0,6453.0,15.0,0.0,0.0]},"out":{"variable":[765468.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1810.0,1585.0,3.0,0.0,0.0,3.0,7.0,1810.0,0.0,47.6957,-122.376,1560.0,1586.0,1.0,0.0,0.0]},"out":{"variable":[502022.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,3.5,1970.0,5079.0,2.0,0.0,0.0,3.0,8.0,1680.0,290.0,47.5816,-122.296,1940.0,6000.0,7.0,0.0,0.0]},"out":{"variable":[572709.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2641.0,8615.0,2.0,0.0,0.0,3.0,7.0,2641.0,0.0,47.4038,-122.213,2641.0,8091.0,16.0,0.0,0.0]},"out":{"variable":[384215.03]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1150.0,3000.0,1.0,0.0,0.0,5.0,6.0,1150.0,0.0,47.6867,-122.345,1460.0,3200.0,108.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,4470.0,60373.0,2.0,0.0,0.0,3.0,11.0,4470.0,0.0,47.7289,-122.127,3210.0,40450.0,26.0,0.0,0.0]},"out":{"variable":[1208638.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1720.0,8750.0,1.0,0.0,0.0,3.0,7.0,860.0,860.0,47.726,-122.21,1790.0,8750.0,43.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2830.0,6000.0,1.0,0.0,3.0,3.0,9.0,1730.0,1100.0,47.5751,-122.378,2040.0,5300.0,60.0,0.0,0.0]},"out":{"variable":[981676.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1070.0,1236.0,2.0,0.0,0.0,3.0,8.0,1000.0,70.0,47.5619,-122.382,1170.0,1888.0,10.0,0.0,0.0]},"out":{"variable":[435628.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.5,1090.0,1183.0,3.0,0.0,0.0,3.0,8.0,1090.0,0.0,47.6974,-122.349,1110.0,1384.0,6.0,0.0,0.0]},"out":{"variable":[400561.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,3270.0,6027.0,2.0,0.0,0.0,3.0,10.0,3270.0,0.0,47.6346,-122.063,3270.0,6546.0,13.0,0.0,0.0]},"out":{"variable":[889377.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,2410.0,8284.0,1.0,0.0,0.0,5.0,7.0,1210.0,1200.0,47.7202,-122.22,2050.0,7940.0,45.0,0.0,0.0]},"out":{"variable":[532234.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2490.0,12929.0,2.0,0.0,0.0,3.0,9.0,2490.0,0.0,47.6161,-122.021,2440.0,12929.0,31.0,0.0,0.0]},"out":{"variable":[758714.2]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2050.0,4080.0,2.0,0.0,0.0,3.0,8.0,2050.0,0.0,47.6698,-122.325,1890.0,4080.0,23.0,0.0,0.0]},"out":{"variable":[630865.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2540.0,5237.0,2.0,0.0,0.0,3.0,8.0,2540.0,0.0,47.5492,-122.276,1800.0,4097.0,3.0,0.0,0.0]},"out":{"variable":[713979.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1850.0,8667.0,1.0,0.0,0.0,4.0,7.0,880.0,970.0,47.7025,-122.198,1450.0,10530.0,32.0,0.0,0.0]},"out":{"variable":[467484.22]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2960.0,8330.0,1.0,0.0,3.0,4.0,10.0,2260.0,700.0,47.7035,-122.385,2960.0,8840.0,62.0,0.0,0.0]},"out":{"variable":[1178314.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,1670.0,13125.0,1.0,0.0,0.0,5.0,8.0,1670.0,0.0,47.6315,-122.101,2360.0,12500.0,42.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2240.0,5500.0,2.0,0.0,0.0,3.0,8.0,2240.0,0.0,47.496,-122.169,700.0,5500.0,1.0,0.0,0.0]},"out":{"variable":[426066.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1850.0,7151.0,2.0,0.0,0.0,3.0,7.0,1850.0,0.0,47.2843,-122.352,1710.0,6827.0,26.0,0.0,0.0]},"out":{"variable":[285870.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1330.0,9548.0,1.0,0.0,0.0,5.0,7.0,1330.0,0.0,47.3675,-122.11,1420.0,9548.0,47.0,0.0,0.0]},"out":{"variable":[244380.27]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,870.0,3121.0,1.0,0.0,0.0,4.0,7.0,870.0,0.0,47.6659,-122.369,1570.0,1777.0,91.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1430.0,9600.0,1.0,0.0,0.0,4.0,7.0,1430.0,0.0,47.4737,-122.15,1590.0,10240.0,48.0,0.0,0.0]},"out":{"variable":[260603.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,5180.0,19850.0,2.0,0.0,3.0,3.0,12.0,3540.0,1640.0,47.562,-122.162,3160.0,9750.0,9.0,0.0,0.0]},"out":{"variable":[1295531.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2200.0,7000.0,1.0,0.0,0.0,4.0,7.0,1280.0,920.0,47.4574,-122.169,1670.0,7000.0,37.0,0.0,0.0]},"out":{"variable":[381737.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2430.0,7559.0,1.0,0.0,0.0,4.0,8.0,1580.0,850.0,47.7206,-122.11,1980.0,8750.0,34.0,0.0,0.0]},"out":{"variable":[538316.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,1.75,2340.0,9148.0,2.0,0.0,0.0,3.0,7.0,2340.0,0.0,47.4232,-122.324,1390.0,10019.0,57.0,0.0,0.0]},"out":{"variable":[385982.13]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.0,1870.0,4751.0,1.0,0.0,0.0,3.0,8.0,1870.0,0.0,47.7082,-122.015,2170.0,5580.0,8.0,0.0,0.0]},"out":{"variable":[451035.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2020.0,11935.0,1.0,0.0,0.0,4.0,9.0,2020.0,0.0,47.632,-122.092,2410.0,12350.0,38.0,0.0,0.0]},"out":{"variable":[716173.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1130.0,7920.0,1.0,0.0,0.0,3.0,7.0,1130.0,0.0,47.4852,-122.125,1390.0,8580.0,54.0,0.0,0.0]},"out":{"variable":[239033.16]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.5,2190.0,13660.0,1.0,0.0,3.0,3.0,8.0,2190.0,0.0,47.7658,-122.37,2520.0,20500.0,62.0,0.0,0.0]},"out":{"variable":[522415.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2800.0,5900.0,1.0,0.0,0.0,3.0,8.0,1660.0,1140.0,47.6809,-122.286,2580.0,5900.0,51.0,0.0,0.0]},"out":{"variable":[718445.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,650.0,5400.0,1.0,0.0,0.0,3.0,6.0,650.0,0.0,47.6185,-122.295,1310.0,4906.0,64.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,1120.0,6653.0,1.0,0.0,0.0,4.0,7.0,1120.0,0.0,47.7321,-122.334,1580.0,7355.0,78.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1340.0,10276.0,1.0,0.0,0.0,4.0,7.0,1340.0,0.0,47.7207,-122.222,2950.0,7987.0,53.0,0.0,0.0]},"out":{"variable":[342604.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1580.0,8206.0,1.0,0.0,0.0,3.0,7.0,1100.0,480.0,47.3676,-122.312,1600.0,8196.0,52.0,0.0,0.0]},"out":{"variable":[277145.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,2.5,3180.0,9375.0,1.0,0.0,0.0,4.0,8.0,1590.0,1590.0,47.5707,-122.129,2670.0,9625.0,47.0,0.0,0.0]},"out":{"variable":[725875.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2030.0,4997.0,2.0,0.0,0.0,3.0,8.0,2030.0,0.0,47.393,-122.184,2095.0,5500.0,10.0,0.0,0.0]},"out":{"variable":[332104.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1100.0,5132.0,1.0,0.0,0.0,3.0,6.0,840.0,260.0,47.7011,-122.336,1280.0,5132.0,66.0,0.0,0.0]},"out":{"variable":[392867.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,970.0,2970.0,1.0,0.0,0.0,3.0,7.0,970.0,0.0,47.6233,-122.319,1670.0,3000.0,104.0,0.0,0.0]},"out":{"variable":[449699.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1190.0,11400.0,1.0,0.0,0.0,3.0,7.0,1190.0,0.0,47.5012,-122.265,1410.0,11400.0,63.0,0.0,0.0]},"out":{"variable":[242591.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,1920.0,8910.0,1.0,0.0,0.0,4.0,8.0,1200.0,720.0,47.5897,-122.156,2250.0,8800.0,45.0,0.0,0.0]},"out":{"variable":[563844.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2250.0,13515.0,1.0,0.0,0.0,4.0,8.0,2150.0,100.0,47.3789,-122.229,2150.0,12508.0,74.0,0.0,0.0]},"out":{"variable":[348616.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1150.0,4800.0,1.5,0.0,0.0,4.0,6.0,1150.0,0.0,47.3101,-122.212,1310.0,9510.0,76.0,0.0,0.0]},"out":{"variable":[240834.92]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,2.25,1660.0,2128.0,2.0,0.0,0.0,4.0,8.0,1660.0,0.0,47.7528,-122.252,1640.0,2128.0,41.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.75,3770.0,4000.0,2.5,0.0,0.0,5.0,9.0,2890.0,880.0,47.6157,-122.287,2800.0,5000.0,98.0,0.0,0.0]},"out":{"variable":[1182821.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1070.0,3000.0,1.0,0.0,0.0,4.0,7.0,870.0,200.0,47.6828,-122.353,1890.0,3300.0,89.0,0.0,0.0]},"out":{"variable":[450867.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,3860.0,12786.0,2.0,0.0,0.0,4.0,10.0,3860.0,0.0,47.549,-122.141,2820.0,14636.0,30.0,0.0,0.0]},"out":{"variable":[946325.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2160.0,5298.0,2.5,0.0,0.0,4.0,9.0,2160.0,0.0,47.6106,-122.31,1720.0,2283.0,112.0,0.0,0.0]},"out":{"variable":[904378.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2120.0,9297.0,2.0,0.0,0.0,4.0,8.0,2120.0,0.0,47.5561,-122.154,2620.0,10352.0,33.0,0.0,0.0]},"out":{"variable":[657905.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,780.0,6250.0,1.0,0.0,0.0,3.0,6.0,780.0,0.0,47.5099,-122.33,1280.0,7100.0,73.0,0.0,0.0]},"out":{"variable":[236815.78]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.0,2160.0,4800.0,2.0,0.0,0.0,4.0,7.0,1290.0,870.0,47.4777,-122.212,1570.0,4800.0,86.0,0.0,0.0]},"out":{"variable":[384558.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,620.0,8261.0,1.0,0.0,0.0,3.0,5.0,620.0,0.0,47.5138,-122.364,1180.0,8244.0,75.0,0.0,0.0]},"out":{"variable":[236815.78]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[1.0,1.0,390.0,2000.0,1.0,0.0,0.0,4.0,6.0,390.0,0.0,47.6938,-122.347,1340.0,5100.0,95.0,0.0,0.0]},"out":{"variable":[442168.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1600.0,3200.0,1.5,0.0,0.0,3.0,7.0,1600.0,0.0,47.653,-122.331,1860.0,3420.0,105.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,980.0,5110.0,1.0,0.0,0.0,4.0,7.0,780.0,200.0,47.7002,-122.314,1430.0,5110.0,75.0,0.0,0.0]},"out":{"variable":[393833.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2100.0,31550.0,1.0,0.0,0.0,3.0,8.0,2100.0,0.0,47.6907,-121.917,1860.0,18452.0,4.0,0.0,0.0]},"out":{"variable":[641162.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,1460.0,1353.0,2.0,0.0,0.0,3.0,8.0,1050.0,410.0,47.5774,-122.412,1690.0,3776.0,2.0,0.0,0.0]},"out":{"variable":[499651.47]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1360.0,18123.0,1.0,0.0,0.0,3.0,8.0,1360.0,0.0,47.4716,-121.756,1570.0,16817.0,31.0,0.0,0.0]},"out":{"variable":[252192.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2110.0,7350.0,1.0,0.0,0.0,3.0,8.0,1530.0,580.0,47.3088,-122.341,2640.0,7777.0,34.0,0.0,0.0]},"out":{"variable":[333878.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1700.0,5750.0,1.5,0.0,2.0,5.0,7.0,1450.0,250.0,47.5643,-122.38,1700.0,5750.0,89.0,0.0,0.0]},"out":{"variable":[546632.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1820.0,3899.0,2.0,0.0,0.0,3.0,7.0,1820.0,0.0,47.735,-121.985,1820.0,3899.0,16.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1560.0,4350.0,2.0,0.0,0.0,3.0,7.0,1560.0,0.0,47.5025,-122.186,1560.0,4350.0,11.0,0.0,0.0]},"out":{"variable":[298900.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.25,2510.0,6339.0,1.5,0.0,2.0,5.0,8.0,1810.0,700.0,47.6496,-122.391,1820.0,5741.0,82.0,0.0,0.0]},"out":{"variable":[717051.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1640.0,5200.0,1.0,0.0,0.0,4.0,7.0,1040.0,600.0,47.6426,-122.403,1780.0,5040.0,77.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1580.0,7424.0,1.0,0.0,0.0,3.0,7.0,1010.0,570.0,47.4607,-122.171,1710.0,7772.0,52.0,0.0,0.0]},"out":{"variable":[296495.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.0,1190.0,7500.0,1.0,0.0,0.0,5.0,7.0,1190.0,0.0,47.3248,-122.142,1200.0,9750.0,46.0,0.0,0.0]},"out":{"variable":[241330.19]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2160.0,7000.0,2.0,0.0,0.0,4.0,9.0,2160.0,0.0,47.5659,-122.013,2300.0,7440.0,25.0,0.0,0.0]},"out":{"variable":[723867.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.5,2220.0,8994.0,1.0,0.0,0.0,4.0,8.0,1110.0,1110.0,47.5473,-122.172,2220.0,8994.0,52.0,0.0,0.0]},"out":{"variable":[680620.75]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[6.0,4.0,5310.0,12741.0,2.0,0.0,2.0,3.0,10.0,3600.0,1710.0,47.5696,-122.213,4190.0,12632.0,48.0,0.0,0.0]},"out":{"variable":[2016006.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.0,1330.0,2400.0,1.5,0.0,0.0,4.0,6.0,1330.0,0.0,47.65,-122.34,1330.0,4400.0,114.0,0.0,0.0]},"out":{"variable":[448627.72]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.0,3750.0,11025.0,2.0,0.0,0.0,3.0,10.0,3750.0,0.0,47.6367,-122.059,2930.0,12835.0,38.0,0.0,0.0]},"out":{"variable":[950678.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2460.0,6454.0,2.0,0.0,0.0,3.0,7.0,2460.0,0.0,47.5381,-121.89,2320.0,4578.0,9.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,1600.0,2231.0,2.0,0.0,0.0,3.0,7.0,1600.0,0.0,47.3314,-122.29,1600.0,2962.0,11.0,0.0,0.0]},"out":{"variable":[277145.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2370.0,5353.0,2.0,0.0,0.0,3.0,8.0,2370.0,0.0,47.7333,-121.975,2130.0,6850.0,5.0,0.0,0.0]},"out":{"variable":[536371.25]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.75,1740.0,4736.0,1.5,0.0,2.0,4.0,7.0,1040.0,700.0,47.5994,-122.287,2020.0,4215.0,107.0,0.0,0.0]},"out":{"variable":[559631.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1540.0,1044.0,3.0,0.0,0.0,3.0,8.0,1540.0,0.0,47.6765,-122.32,1580.0,3090.0,0.0,0.0,0.0]},"out":{"variable":[552992.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.0,3540.0,9970.0,2.0,0.0,3.0,3.0,9.0,3540.0,0.0,47.7108,-122.277,2280.0,7195.0,44.0,0.0,0.0]},"out":{"variable":[1085835.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,2.75,3230.0,13572.0,1.0,0.0,2.0,3.0,8.0,1880.0,1350.0,47.4393,-122.347,2910.0,15292.0,50.0,0.0,0.0]},"out":{"variable":[473287.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,960.0,4920.0,1.0,0.0,0.0,3.0,6.0,960.0,0.0,47.6946,-122.362,1010.0,5040.0,72.0,0.0,0.0]},"out":{"variable":[441284.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2800.0,49149.0,1.0,0.0,0.0,4.0,7.0,1400.0,1400.0,47.4649,-122.034,2560.0,61419.0,36.0,0.0,0.0]},"out":{"variable":[439212.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.25,2560.0,12100.0,1.0,0.0,0.0,4.0,8.0,1760.0,800.0,47.631,-122.108,2240.0,12100.0,38.0,0.0,0.0]},"out":{"variable":[701940.7]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2040.0,9225.0,1.0,0.0,0.0,5.0,8.0,1610.0,430.0,47.636,-122.097,1730.0,9225.0,46.0,0.0,0.0]},"out":{"variable":[627853.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2010.0,7000.0,2.0,0.0,0.0,5.0,8.0,2010.0,0.0,47.6607,-122.396,1420.0,4400.0,113.0,0.0,0.0]},"out":{"variable":[583765.94]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.75,2890.0,12130.0,2.0,0.0,3.0,4.0,10.0,2830.0,60.0,47.6505,-122.203,2415.0,11538.0,27.0,0.0,0.0]},"out":{"variable":[987149.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1170.0,7142.0,1.0,0.0,0.0,3.0,7.0,1170.0,0.0,47.7497,-122.313,1170.0,7615.0,63.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1980.0,5909.0,2.0,0.0,0.0,3.0,8.0,1980.0,0.0,47.3913,-122.185,2550.0,5487.0,11.0,0.0,0.0]},"out":{"variable":[324875.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1890.0,93218.0,1.0,0.0,0.0,4.0,7.0,1890.0,0.0,47.2568,-122.07,1690.0,172062.0,50.0,0.0,0.0]},"out":{"variable":[291799.88]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1430.0,3000.0,1.5,0.0,0.0,3.0,7.0,1300.0,130.0,47.6415,-122.303,1750.0,4000.0,85.0,0.0,0.0]},"out":{"variable":[455435.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,2230.0,5650.0,2.0,0.0,0.0,3.0,7.0,2230.0,0.0,47.5073,-122.168,1590.0,7241.0,3.0,0.0,0.0]},"out":{"variable":[401263.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,1380.0,4390.0,1.0,0.0,0.0,4.0,8.0,880.0,500.0,47.6947,-122.323,1390.0,5234.0,83.0,0.0,0.0]},"out":{"variable":[441284.06]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[5.0,3.0,2230.0,6551.0,1.0,0.0,0.0,3.0,7.0,1330.0,900.0,47.487,-122.32,2230.0,9476.0,1.0,0.0,0.0]},"out":{"variable":[399760.34]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2010.0,2287.0,2.0,0.0,0.0,3.0,8.0,1390.0,620.0,47.5517,-121.998,1690.0,1662.0,0.0,0.0,0.0]},"out":{"variable":[578362.9]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.75,2500.0,4950.0,2.0,0.0,0.0,3.0,8.0,2500.0,0.0,47.6964,-122.017,2500.0,4950.0,4.0,0.0,0.0]},"out":{"variable":[700271.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1600.0,9579.0,1.0,0.0,0.0,3.0,8.0,1180.0,420.0,47.7662,-122.159,1750.0,9829.0,38.0,0.0,0.0]},"out":{"variable":[437177.84]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[2.0,1.0,870.0,8487.0,1.0,0.0,0.0,4.0,6.0,870.0,0.0,47.4955,-122.239,1350.0,6850.0,71.0,0.0,0.0]},"out":{"variable":[236238.66]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,2.5,1690.0,7260.0,1.0,0.0,0.0,3.0,7.0,1080.0,610.0,47.3001,-122.368,1690.0,7700.0,36.0,0.0,0.0]},"out":{"variable":[284336.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2140.0,8925.0,2.0,0.0,0.0,3.0,8.0,2140.0,0.0,47.6314,-122.027,2310.0,8956.0,23.0,0.0,0.0]},"out":{"variable":[669645.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,1300.0,10030.0,1.0,0.0,0.0,4.0,7.0,1300.0,0.0,47.7359,-122.192,1520.0,7713.0,48.0,0.0,0.0]},"out":{"variable":[340764.53]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.5,2900.0,23550.0,1.0,0.0,0.0,3.0,10.0,1490.0,1410.0,47.5708,-122.153,2900.0,19604.0,27.0,0.0,0.0]},"out":{"variable":[827411.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,1.75,2700.0,7875.0,1.5,0.0,0.0,4.0,8.0,2700.0,0.0,47.454,-122.144,2220.0,7875.0,46.0,0.0,0.0]},"out":{"variable":[441960.38]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[4.0,3.25,2910.0,1880.0,2.0,0.0,3.0,5.0,9.0,1830.0,1080.0,47.616,-122.282,3100.0,8200.0,100.0,0.0,0.0]},"out":{"variable":[1060847.5]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,1.75,2910.0,37461.0,1.0,0.0,0.0,4.0,7.0,1530.0,1380.0,47.7015,-122.164,2520.0,18295.0,47.0,0.0,0.0]},"out":{"variable":[706823.56]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618847421,"in":{"tensor":[3.0,2.0,2005.0,7000.0,1.0,0.0,0.0,3.0,7.0,1605.0,400.0,47.6039,-122.298,1750.0,4500.0,34.0,0.0,0.0]},"out":{"variable":[581003.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[9142719,2985868],"dropped":[],"partition":"houseprice-edge-01"}}][{"time":1708618913409,"in":{"tensor":[4.0,3.0,3710.0,20000.0,2.0,0.0,2.0,5.0,10.0,2760.0,950.0,47.6696014404,-122.2610015869,3970.0,20000.0,79.0,0.0,0.0]},"out":{"variable":[1514079.4]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[4.0,3.75,4410.0,8112.0,3.0,0.0,4.0,3.0,11.0,3570.0,840.0,47.5887985229,-122.391998291,2770.0,5750.0,12.0,0.0,0.0]},"out":{"variable":[1967344.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[4.0,3.0,4750.0,21701.0,1.5,0.0,0.0,5.0,11.0,4750.0,0.0,47.645401001,-122.2180023193,3120.0,18551.0,38.0,0.0,0.0]},"out":{"variable":[2002393.6]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[4.0,3.5,4285.0,9567.0,2.0,0.0,1.0,5.0,10.0,3485.0,800.0,47.6433982849,-122.408996582,2960.0,6902.0,68.0,0.0,0.0]},"out":{"variable":[1886959.3]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[4.0,4.5,5770.0,10050.0,1.0,0.0,3.0,5.0,9.0,3160.0,2610.0,47.6769981384,-122.2750015259,2950.0,6700.0,65.0,0.0,0.0]},"out":{"variable":[1689843.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[3.0,2.5,5403.0,24069.0,2.0,1.0,4.0,4.0,12.0,5403.0,0.0,47.4169006348,-122.3479995728,3980.0,104374.0,39.0,0.0,0.0]},"out":{"variable":[1946437.8]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[3.0,3.25,4560.0,13363.0,1.0,0.0,4.0,3.0,11.0,2760.0,1800.0,47.6204986572,-122.2139968872,4060.0,13362.0,20.0,0.0,0.0]},"out":{"variable":[2005883.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[5.0,4.25,4860.0,9453.0,1.5,0.0,1.0,5.0,10.0,3100.0,1760.0,47.6195983887,-122.2860031128,3150.0,8557.0,109.0,0.0,0.0]},"out":{"variable":[1910824.0]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}},{"time":1708618913409,"in":{"tensor":[6.0,4.0,5310.0,12741.0,2.0,0.0,2.0,3.0,10.0,3600.0,1710.0,47.5695991516,-122.2129974365,4190.0,12632.0,48.0,0.0,0.0]},"out":{"variable":[2016006.1]},"anomaly":{"count":0},"metadata":{"last_model":"{\"model_name\":\"house-price-estimator\",\"model_sha\":\"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6\"}","pipeline_version":"","elapsed":[145118,498057],"dropped":[],"partition":"houseprice-edge-01"}}]

Run Anywhere Model Insights via the Wallaroo SDK

Assays generated through the Wallaroo SDK can be previewed, configured, and uploaded to the Wallaroo Ops instance. The following is a condensed version of this process. For full details see the Model Drift Detection with Model Insights guide.

Model drift detection with assays using the Wallaroo SDK follows this general process.

  • Define the Baseline: From either historical inference data for a specific model in a pipeline, or from a pre-determine array of data, a baseline is formed.
  • Assay Preview: Once the baseline is formed, we preview the assay and configure the different options until we have the the best method of detecting environment or model drift.
    • For this tutorial, we focus on limiting the locations included in the assay analyses.
  • Create Assay: With the previews and configuration complete, we upload the assay. The assay will perform an analysis on a regular scheduled based on the configuration.
  • Get Assay Results: Retrieve the analyses and use them to detect model drift and possible sources.
  • Pause/Resume Assay: Pause or restart an assay as needed.

Define the Baseline

Assay baselines are defined with the wallaroo.client.build_assay method. Through this process we define the baseline from either a range of dates or pre-generated values.

wallaroo.client.build_assay take the following parameters:

ParameterTypeDescription
assay_nameString (Required) - requiredThe name of the assay. Assay names must be unique across the Wallaroo instance.
pipelinewallaroo.pipeline.Pipeline (Required)The pipeline the assay is monitoring.
model_nameString (Required)The name of the model to monitor.
iopathString (Required)The input/output data for the model being tracked in the format input/output field index. Only one value is tracked for any assay. For example, to track the output of the model’s field house_value at index 0, the iopath is 'output house_value 0.
baseline_startdatetime.datetime (Optional)The start time for the inferences to use as the baseline. Must be included with baseline_end. Cannot be included with baseline_data.
baseline_enddatetime.datetime (Optional)The end time of the baseline window. the baseline. Windows start immediately after the baseline window and are run at regular intervals continuously until the assay is deactivated or deleted. Must be included with baseline_start. Cannot be included with baseline_data..
baseline_datanumpy.array (Optional)The baseline data in numpy array format. Cannot be included with either baseline_start or baseline_data.

Baselines are created in one of two ways:

  • Date Range: The baseline_start and baseline_end retrieves the inference requests and results for the pipeline from the start and end period. This data is summarized and used to create the baseline.
  • Numpy Values: The baseline_data sets the baseline from a provided numpy array.

Define the Baseline Example

This example shows the assay defined from the date ranges from the inferences performed earlier.

The following parameters are used:

ParameterValue
assay_name"assays from date baseline" and "assays from numpy"
pipelinemainpipeline: A pipeline with a ML model that predicts house prices. The output field for this model is variable.
model_name"houseprice-predictor" - the model name set during model upload.
iopathThese assays monitor the model’s output field variable at index 0. From this, the iopath setting is "output variable 0".
baseline_startThe start date for inference requests and results to gather for the baseline.
baseline_endThe end date for for inference requests and results to gather for the baseline.

For each of our assays, we will set the time period of inference data to compare against the baseline data.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the width, interval, and time period 
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

Baseline DataFrame

The method wallaroo.assay_config.AssayBuilder.baseline_dataframe returns a DataFrame of the assay baseline generated from the provided parameters. This includes:

  • metadata: The inference metadata with the model information, inference time, and other related factors.
  • in data: Each input field assigned with the label in.{input field name}.
  • out data: Each output field assigned with the label out.{output field name}

Note that for assays generated from numpy values, there is only the out data based on the supplied baseline data.

In the following example, the baseline DataFrame is retrieved.

display(assay_builder_from_dates.baseline_dataframe())
timemetadatainput_tensor_0input_tensor_1input_tensor_2input_tensor_3input_tensor_4input_tensor_5input_tensor_6input_tensor_7...input_tensor_9input_tensor_10input_tensor_11input_tensor_12input_tensor_13input_tensor_14input_tensor_15input_tensor_16input_tensor_17output_variable_0
01708618266893{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [75799, 482567], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}4.03.003710.020000.02.00.02.05.0...2760.0950.047.669600-122.2610003970.020000.079.00.00.01.514079e+06
11708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}2.01.752770.019700.02.00.00.03.0...1780.0990.047.758099-122.3649982360.09700.031.00.00.05.363712e+05
21708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}2.01.001290.03140.02.00.00.03.0...1290.00.047.697102-122.0260011290.02628.06.00.00.04.005612e+05
31708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}3.01.751540.09154.01.00.00.03.0...1540.00.047.620701-122.0420001990.010273.031.00.00.05.552319e+05
41708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}4.03.255180.019850.02.00.03.03.0...3540.01640.047.562000-122.1620033160.09750.09.00.00.01.295532e+06
..................................................................
4961708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}3.02.752600.012860.01.00.00.03.0...1350.01250.047.695000-121.9179992260.012954.049.00.00.07.032827e+05
4971708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}3.02.502370.04200.02.00.00.03.0...2370.00.047.369900-122.0189972370.04370.01.00.00.03.491028e+05
4981708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}4.01.001750.068841.01.00.00.03.0...1750.00.047.444199-122.0810011550.032799.072.00.00.03.030022e+05
4991708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}2.01.001080.04000.01.00.00.03.0...1080.00.047.690201-122.3870011530.04240.075.00.00.04.486278e+05
5001708618327651{'last_model': '{"model_name":"house-price-estimator","model_sha":"e22a0831aafd9917f3cc87a15ed267797f80e2afa12ad7d8810ca58f173b8cc6"}', 'pipeline_version': '', 'elapsed': [4267763, 4778330], 'dropped': [], 'partition': 'engine-666cd7bdf9-4fsbj'}4.02.001780.019843.01.00.00.03.0...1780.00.047.441399-122.1539992210.013500.052.00.00.03.130960e+05

501 rows × 21 columns

Baseline Stats

The method wallaroo.assay.AssayAnalysis.baseline_stats() returns a pandas.core.frame.DataFrame of the baseline stats.

The baseline stats for each assay are displayed in the examples below.

assay_results_from_dates[0].baseline_stats()
Baseline
count501
min236238.671875
max1514079.375
mean513088.885697
median444408.0
std240525.528326
startNone
endNone

Baseline Bins

The method wallaroo.assay.AssayAnalysis.baseline_bins a simple dataframe to with the edge/bin data for a baseline.

assay_results_from_dates[0].baseline_bins()
b_edgesb_edge_namesb_aggregated_valuesb_aggregation
02.362387e+05left_outlier0.000000Density
13.115368e+05q_200.199601Density
24.213066e+05q_400.199601Density
34.801514e+05q_600.203593Density
47.155301e+05q_800.199601Density
51.514079e+06q_1000.197605Density
6infright_outlier0.000000Density

Baseline Histogram Chart

The method wallaroo.assay_config.AssayBuilder.baseline_histogram returns a histogram chart of the assay baseline generated from the provided parameters.

assay_builder_from_dates.baseline_histogram()

Baseline KDE Chart

The method wallaroo.assay_config.AssayBuilder.baseline_kde returns a Kernel Density Estimation (KDE) chart of the assay baseline generated from the provided parameters.

assay_builder_from_dates.baseline_kde()

Baseline ECDF Chart

The method wallaroo.assay_config.AssayBuilder.baseline_ecdf returns a Empirical Cumulative Distribution Function (CDF) chart of the assay baseline generated from the provided parameters.

assay_builder_from_dates.baseline_ecdf()

Assay Preview

Now that the baseline is defined, we look at different configuration options and view how the assay baseline and results changes. Once we determine what gives us the best method of determining model drift, we can create the assay.

Analysis List Chart Scores

Analysis List scores show the assay scores for each assay result interval in one chart. Values that are outside of the alert threshold are colored red, while scores within the alert threshold are green.

Assay chart scores are displayed with the method wallaroo.assay.AssayAnalysisList.chart_scores(title: Optional[str] = None), with ability to display an optional title with the chart.

The following example shows retrieving the assay results and displaying the chart scores. From our example, we have two windows - the first should be green, and the second is red showing that values were outside the alert threshold.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the width, interval, and time period 
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates.chart_scores()

Analysis Chart

The method wallaroo.assay.AssayAnalysis.chart() displays a comparison between the baseline and an interval of inference data.

This is compared to the Chart Scores, which is a list of all of the inference data split into intervals, while the Analysis Chart shows the breakdown of one set of inference data against the baseline.

Score from the Analysis List Chart Scores and each element from the Analysis List DataFrame generates

The following fields are included.

FieldTypeDescription
baseline meanFloatThe mean of the baseline values.
window meanFloatThe mean of the window values.
baseline medianFloatThe median of the baseline values.
window medianFloatThe median of the window values.
bin_modeStringThe binning mode used for the assay.
aggregationStringThe aggregation mode used for the assay.
metricStringThe metric mode used for the assay.
weightedBoolWhether the bins were manually weighted.
scoreFloatThe score from the assay window.
scoresList(Float)The score from each assay window bin.
indexInteger/NoneThe window index. Interactive assay runs are None.
# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the width, interval, and time period 
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates[0].chart()
baseline mean = 513088.88569735526
window mean = 523401.741328125
baseline median = 444408.0
window median = 448627.8125
bin_mode = Quantile
aggregation = Density
metric = PSI
weighted = False
score = 0.036723431597836184
scores = [0.0, 0.0054465677587239095, 0.00351406964764097, 0.0011239501647170409, 0.021833837078132627, 0.004805006948621639, 0.0]
index = None

Analysis List DataFrame

wallaroo.assay.AssayAnalysisList.to_dataframe() returns a DataFrame showing the assay results for each window aka individual analysis. This DataFrame contains the following fields:

FieldTypeDescription
assay_idInteger/NoneThe assay id. Only provided from uploaded and executed assays.
nameString/NoneThe name of the assay. Only provided from uploaded and executed assays.
iopathString/NoneThe iopath of the assay. Only provided from uploaded and executed assays.
scoreFloatThe assay score.
startDateTimeThe DateTime start of the assay window.
minFloatThe minimum value in the assay window.
maxFloatThe maximum value in the assay window.
meanFloatThe mean value in the assay window.
medianFloatThe median value in the assay window.
stdFloatThe standard deviation value in the assay window.
warning_thresholdFloat/NoneThe warning threshold of the assay window.
alert_thresholdFloat/NoneThe alert threshold of the assay window.
statusStringThe assay window status. Values are:
  • OK: The score is within accepted thresholds.
  • Warning: The score has triggered the warning_threshold if exists, but not the alert_threshold.
  • Alert: The score has triggered the the alert_threshold.

For this example, the assay analysis list DataFrame is listed.

From this tutorial, we should have 2 windows of dta to look at, each one minute apart. The first window should show status: OK, with the second window with the very large house prices will show status: alert

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="assays from date baseline", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the width, interval, and time period 
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates.to_dataframe()
assay_idnameiopathscorestartminmaxmeanmedianstdwarning_thresholdalert_thresholdstatus
0None0.0367232024-02-22T16:13:07.781924+00:002.362387e+051489624.2505.234017e+054.486278e+05230914.012105None0.25Ok
1None0.0828772024-02-22T16:15:07.781924+00:002.362387e+052016006.1255.473354e+054.815304e+05260871.745557None0.25Ok
2None0.0690162024-02-22T16:20:07.781924+00:002.362387e+052016006.0005.394895e+054.510469e+05264051.044244None0.25Ok
3None8.8685322024-02-22T16:21:07.781924+00:001.514079e+062016006.1251.882197e+061.946438e+06160686.049379None0.25Alert

Configure Assays

Before creating the assay, configure the assay and continue to preview it until the best method for detecting drift is set.

Location Filter

This tutorial focuses on the assay configuration method wallaroo.assay_config.WindowBuilder.add_location_filter which takes the following parameters.

ParameterTypeDescription
locationsList(String)The list of model deployment locations for the assay.

By default, the locations parameter includes all locations as part of the pipeline. This is seen in the default where no location filter is set, and of the inference data is shown.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the width, interval, and time period
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates.chart_scores()
assay_results_from_dates.to_dataframe()
assay_idnameiopathscorestartminmaxmeanmedianstdwarning_thresholdalert_thresholdstatus
0None0.0367232024-02-22T16:13:07.781924+00:002.362387e+051489624.2505.234017e+054.486278e+05230914.012105None0.25Ok
1None0.0828772024-02-22T16:15:07.781924+00:002.362387e+052016006.1255.473354e+054.815304e+05260871.745557None0.25Ok
2None0.0690162024-02-22T16:20:07.781924+00:002.362387e+052016006.0005.394895e+054.510469e+05264051.044244None0.25Ok
3None8.8685322024-02-22T16:21:07.781924+00:001.514079e+062016006.1251.882197e+061.946438e+06160686.049379None0.25Alert

Now we will set the location to the ops center only pipeline and display the results.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the location to the ops center
assay_builder_from_dates.window_builder().add_location_filter([ops_location])

# set the width, interval, and time period
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates.chart_scores()
assay_results_from_dates.to_dataframe()
assay_idnameiopathscorestartminmaxmeanmedianstdwarning_thresholdalert_thresholdstatus
0None0.0367232024-02-22T16:13:07.781924+00:00236238.6718751489624.250523401.741328448627.812500230914.012105None0.25Ok
1None0.0828772024-02-22T16:15:07.781924+00:00236238.6718752016006.125547335.355203481530.359375260871.745557None0.25Ok

Now we specify only our edge deployment location.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the location to the the edge location
assay_builder_from_dates.window_builder().add_location_filter([edge_name])

# set the width, interval, and time period
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates.chart_scores()
assay_results_from_dates.to_dataframe()
assay_idnameiopathscorestartminmaxmeanmedianstdwarning_thresholdalert_thresholdstatus
0None0.0690162024-02-22T16:20:07.781924+00:002.362387e+052016006.0005.394895e+054.510469e+05264051.044244None0.25Ok
1None8.8685322024-02-22T16:21:07.781924+00:001.514079e+062016006.1251.882197e+061.946438e+06160686.049379None0.25Alert

Now we specify both the Wallaroo Ops deployed pipeline and the edge pipeline.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the location to both the edge location and ops pipeline
assay_builder_from_dates.window_builder().add_location_filter([ops_location, edge_name])

# set the width, interval, and time period
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)
assay_config_from_dates = assay_builder_from_dates.build()
assay_results_from_dates = assay_config_from_dates.interactive_run()

assay_results_from_dates.chart_scores()
assay_results_from_dates.to_dataframe()
assay_idnameiopathscorestartminmaxmeanmedianstdwarning_thresholdalert_thresholdstatus
0None0.0367232024-02-22T16:13:07.781924+00:002.362387e+051489624.2505.234017e+054.486278e+05230914.012105None0.25Ok
1None0.0828772024-02-22T16:15:07.781924+00:002.362387e+052016006.1255.473354e+054.815304e+05260871.745557None0.25Ok
2None0.0690162024-02-22T16:20:07.781924+00:002.362387e+052016006.0005.394895e+054.510469e+05264051.044244None0.25Ok
3None8.8685322024-02-22T16:21:07.781924+00:001.514079e+062016006.1251.882197e+061.946438e+06160686.049379None0.25Alert

Create Assay

With the assay previewed and configuration options determined, we officially create it by uploading it to the Wallaroo instance.

Once it is uploaded, the assay runs an analysis based on the window width, interval, and the other settings configured.

Assays are uploaded with the wallaroo.assay_config.upload() method. This uploads the assay into the Wallaroo database with the configurations applied and returns the assay id. Note that assay names must be unique across the Wallaroo instance; attempting to upload an assay with the same name as an existing one will return an error.

wallaroo.assay_config.upload() returns the assay id for the assay.

Typically we would just call wallaroo.assay_config.upload() after configuring the assay. For the example below, we will perform the complete configuration in one window to show all of the configuration steps at once before creating the assay, and narrow the locations to only the Wallaroo Ops deployed pipeline and the single edge.

# Build the assay, based on the start and end of our baseline time, 
# and tracking the output variable index 0
assay_builder_from_dates = wl.build_assay(assay_name="run anywhere from dates", 
                                          pipeline=mainpipeline, 
                                          model_name="house-price-estimator", 
                                          iopath="output variable 0",
                                          baseline_start=assay_baseline_start, 
                                          baseline_end=assay_baseline_end)

# set the location to both the edge location and ops pipeline
assay_builder_from_dates.window_builder().add_location_filter([ops_location, edge_name])

# set the width, interval, and time period
assay_builder_from_dates.add_run_until(datetime.datetime.now())
assay_builder_from_dates.window_builder().add_width(minutes=1).add_interval(minutes=1).add_start(assay_window_start)

assay_id = assay_builder_from_dates.upload()

# wait 65 seconds for the first analysis run performed
time.sleep(65)

The assay is now visible through the Wallaroo UI by selecting the workspace, then the pipeline, then Insights. The following is an example of another assay in the Wallaroo Dashboard.

Get Assay Results

Once an assay is created the assay runs an analysis based on the window width, interval, and the other settings configured.

Assay results are retrieved with the wallaroo.client.get_assay_results method, which takes the following parameters:

ParameterTypeDescription
assay_idInteger (Required)The numerical id of the assay.
startDatetime.Datetime (Required)The start date and time of historical data from the pipeline to start analyses from.
endDatetime.Datetime (Required)The end date and time of historical data from the pipeline to limit analyses to.
  • IMPORTANT NOTE: This process requires that additional historical data is generated from the time the assay is created to when the results are available. To add additional inference data, use the Assay Test Data section above.
assay_results = wl.get_assay_results(assay_id=assay_id,
                     start=assay_window_start,
                     end=datetime.datetime.now())

assay_results.chart_scores()
assay_results[0].chart()
baseline mean = 513088.88569735526
window mean = 523401.741328125
baseline median = 444408.0
window median = 448627.8125
bin_mode = Quantile
aggregation = Density
metric = PSI
weighted = False
score = 0.03672343
scores = [0.0, 0.0054465677587239095, 0.00351406964764097, 0.0011239501647170409, 0.021833837078132627, 0.004805006948621639, 0.0]
index = None

Undeploy Main Pipeline

With the examples and tutorial complete, we will undeploy the main pipeline and return the resources back to the Wallaroo instance.

mainpipeline.undeploy()
nameassay-demo-tutorial
created2024-02-22 16:10:47.470433+00:00
last_updated2024-02-22 16:16:30.051729+00:00
deployedFalse
archNone
accelNone
tags
versionsd7c8dbf6-dd09-4420-af0b-aecee2765b9a, dffc6643-7621-4f75-bd5b-0e9844ee17da, 59f472d8-a7ec-4a79-bd3a-f568254b6d62
stepshouse-price-estimator
publishedFalse