Skip to main content

Evidently AI

warning

WIP / PLACEHOLDER FILE

Set up a workspace to organize your data and projects

A workspace means a remote or local directory where you store the snapshots. Snapshots are a JSON version of the report or a test suite which contains measurements and test results for a specific period. You can log them over time and run an Evidently monitoring dashboard for continuous monitoring. The monitoring UI will read the data from this source. We have designed a solution where your snapshots will be stored in your Azure blob storage, making them easily available and shareable.

Create Evidently AI dashboard

  1. From the AI Platform, go to Advanced AI > Applications.

  2. Click Create Evidently Dashboard.

  3. Enter the following data in the dialog box:

    1. Azure Storage Account
    2. Azure Storage Key
    3. Container Name
    4. Does the storage account have hierarchial namespaces enabled?

    Dialog box Create Evidently AI dialog box

  4. Copy the internal and external URLs for use in your notebook when connecting to your remote server.

    URLs Copy URLs

Connect to your remote server

After generating the snapshots, you need to send them to the remote server where the monitoring UI will also be running. This is important because the UI must have direct access to the same filesystem where the snapshots are stored.

To connect the UI to the remote environment, create a remote workspace like this (replace <INTERNAL_URL> with the appropriate address):

workspace = RemoteWorkspace(f"{<INTERNAL_URL>}")

Go to workspace_ui.ipynb for an example of how this is implemented.