Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DatasetImageStats

import type { DatasetImageStats } from "https://aws-api.deno.dev/v0.3/services/lookoutvision.ts?docs=full";

Statistics about the images in a dataset.

interface DatasetImageStats {
Anomaly?: number | null;
Labeled?: number | null;
Normal?: number | null;
Total?: number | null;
}

§Properties

§
Anomaly?: number | null
[src]

the total number of images labeled as an anomaly.

§
Labeled?: number | null
[src]

The total number of labeled images.

§
Normal?: number | null
[src]

The total number of images labeled as normal.

§
Total?: number | null
[src]

The total number of images in the dataset.