npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@datafire/amazonaws_lookoutvision

v5.0.0

Published

DataFire integration for Amazon Lookout for Vision

Downloads

4

Readme

@datafire/amazonaws_lookoutvision

Client library for Amazon Lookout for Vision

Installation and Usage

npm install --save @datafire/amazonaws_lookoutvision
let amazonaws_lookoutvision = require('@datafire/amazonaws_lookoutvision').create({
  accessKeyId: "",
  secretAccessKey: "",
  region: ""
});

.then(data => {
  console.log(data);
});

Description

Actions

ListProjects

amazonaws_lookoutvision.ListProjects({}, context)

Input

  • input object
    • nextToken string
    • maxResults integer
    • MaxResults string
    • NextToken string

Output

CreateProject

amazonaws_lookoutvision.CreateProject({
  "ProjectName": ""
}, context)

Input

  • input object
    • ProjectName required string: S nsme for the project.

Output

DeleteProject

amazonaws_lookoutvision.DeleteProject({
  "projectName": ""
}, context)

Input

  • input object
    • projectName required string

Output

DescribeProject

amazonaws_lookoutvision.DescribeProject({
  "projectName": ""
}, context)

Input

  • input object
    • projectName required string

Output

CreateDataset

amazonaws_lookoutvision.CreateDataset({
  "projectName": "",
  "DatasetType": ""
}, context)

Input

  • input object
    • projectName required string
    • DatasetSource object: Information about the location of a manifest file that Amazon Lookout for Vision uses to to create a dataset.
      • GroundTruthManifest
        • S3Object
          • Bucket required
          • Key required
          • VersionId
    • DatasetType required string: The type of the dataset. Specify train for a training dataset. Specify test for a test dataset.

Output

Output schema unknown

DeleteDataset

amazonaws_lookoutvision.DeleteDataset({
  "projectName": "",
  "datasetType": ""
}, context)

Input

  • input object
    • projectName required string
    • datasetType required string

Output

Output schema unknown

DescribeDataset

amazonaws_lookoutvision.DescribeDataset({
  "projectName": "",
  "datasetType": ""
}, context)

Input

  • input object
    • projectName required string
    • datasetType required string

Output

ListDatasetEntries

amazonaws_lookoutvision.ListDatasetEntries({
  "projectName": "",
  "datasetType": ""
}, context)

Input

  • input object
    • projectName required string
    • datasetType required string
    • labeled boolean
    • anomalyClass string
    • createdBefore string
    • createdAfter string
    • nextToken string
    • maxResults integer
    • sourceRefContains string
    • MaxResults string
    • NextToken string

Output

UpdateDatasetEntries

amazonaws_lookoutvision.UpdateDatasetEntries({
  "projectName": "",
  "datasetType": "",
  "Changes": ""
}, context)

Input

  • input object
    • projectName required string
    • datasetType required string
    • Changes required string: The entries to add to the dataset.

Output

Output schema unknown

ListModels

amazonaws_lookoutvision.ListModels({
  "projectName": ""
}, context)

Input

  • input object
    • projectName required string
    • nextToken string
    • maxResults integer
    • MaxResults string
    • NextToken string

Output

CreateModel

amazonaws_lookoutvision.CreateModel({
  "projectName": "",
  "OutputConfig": {}
}, context)

Input

  • input object
    • projectName required string
    • Description object: Describes an Amazon Lookout for Vision model.
      • CreationTimestamp
      • Description
      • EvaluationEndTimestamp
      • EvaluationManifest
        • Bucket required
        • Key required
      • EvaluationResult
        • Bucket required
        • Key required
      • KmsKeyId
      • ModelArn
      • ModelVersion
      • OutputConfig
        • S3Location required
          • Bucket required
          • Prefix
      • Performance
        • F1Score
        • Precision
        • Recall
      • Status
      • StatusMessage
    • KmsKeyId string: The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for encypting the model. If this parameter is not specified, the model is encrypted by a key that AWS owns and manages.
    • OutputConfig required object: The S3 location where Amazon Lookout for Vision saves model training files.
      • S3Location
        • Bucket required
        • Prefix

Output

Output schema unknown

DeleteModel

amazonaws_lookoutvision.DeleteModel({
  "projectName": "",
  "modelVersion": ""
}, context)

Input

  • input object
    • projectName required string
    • modelVersion required string

Output

Output schema unknown

DescribeModel

amazonaws_lookoutvision.DescribeModel({
  "projectName": "",
  "modelVersion": ""
}, context)

Input

  • input object
    • projectName required string
    • modelVersion required string

Output

DetectAnomalies

amazonaws_lookoutvision.DetectAnomalies({
  "projectName": "",
  "modelVersion": "",
  "content-type": "",
  "Body": ""
}, context)

Input

  • input object
    • projectName required string
    • modelVersion required string
    • content-type required string
    • Body required string: The unencrypted image bytes that you want to analyze.

Output

StartModel

amazonaws_lookoutvision.StartModel({
  "projectName": "",
  "modelVersion": "",
  "MinInferenceUnits": 0
}, context)

Input

  • input object
    • projectName required string
    • modelVersion required string
    • MinInferenceUnits required integer: The minimum number of inference units to use. A single inference unit represents 1 hour of processing and can support up to 5 Transaction Pers Second (TPS). Use a higher number to increase the TPS throughput of your model. You are charged for the number of inference units that you use.

Output

Output schema unknown

StopModel

amazonaws_lookoutvision.StopModel({
  "projectName": "",
  "modelVersion": ""
}, context)

Input

  • input object
    • projectName required string
    • modelVersion required string

Output

Output schema unknown

Definitions

AccessDeniedException

AnomalyClassFilter

  • AnomalyClassFilter string

Boolean

  • Boolean boolean

ClientToken

  • ClientToken string

ConflictException

ContentType

  • ContentType string

CreateDatasetRequest

  • CreateDatasetRequest object
    • DatasetSource
      • GroundTruthManifest
        • S3Object
          • Bucket required
          • Key required
          • VersionId
    • DatasetType required

CreateDatasetResponse

  • CreateDatasetResponse object
    • DatasetMetadata
      • CreationTimestamp
      • DatasetType
      • Status
      • StatusMessage

CreateModelRequest

  • CreateModelRequest object
    • Description
      • CreationTimestamp
      • Description
      • EvaluationEndTimestamp
      • EvaluationManifest
        • Bucket required
        • Key required
      • EvaluationResult
        • Bucket required
        • Key required
      • KmsKeyId
      • ModelArn
      • ModelVersion
      • OutputConfig
        • S3Location required
          • Bucket required
          • Prefix
      • Performance
        • F1Score
        • Precision
        • Recall
      • Status
      • StatusMessage
    • KmsKeyId
    • OutputConfig required
      • S3Location required
        • Bucket required
        • Prefix

CreateModelResponse

  • CreateModelResponse object
    • ModelMetadata
      • CreationTimestamp
      • Description
      • ModelArn
      • ModelVersion
      • Performance
        • F1Score
        • Precision
        • Recall
      • Status
      • StatusMessage

CreateProjectRequest

  • CreateProjectRequest object
    • ProjectName required

CreateProjectResponse

  • CreateProjectResponse object
    • ProjectMetadata
      • CreationTimestamp
      • ProjectArn
      • ProjectName

DatasetChanges

  • DatasetChanges string

DatasetDescription

  • DatasetDescription object: The description for a dataset. For more information, see DescribeDataset.
    • CreationTimestamp
    • DatasetType
    • ImageStats
      • Anomaly
      • Labeled
      • Normal
      • Total
    • LastUpdatedTimestamp
    • ProjectName
    • Status
    • StatusMessage

DatasetEntry

  • DatasetEntry string

DatasetEntryList

DatasetGroundTruthManifest

  • DatasetGroundTruthManifest object: Location information about a manifest file. You can use a manifest file to create a dataset.
    • S3Object
      • Bucket required
      • Key required
      • VersionId

DatasetImageStats

  • DatasetImageStats object: Statistics about the images in a dataset.
    • Anomaly
    • Labeled
    • Normal
    • Total

DatasetMetadata

  • DatasetMetadata object: Sumary information for an Amazon Lookout for Vision dataset.
    • CreationTimestamp
    • DatasetType
    • Status
    • StatusMessage

DatasetMetadataList

DatasetSource

  • DatasetSource object: Information about the location of a manifest file that Amazon Lookout for Vision uses to to create a dataset.
    • GroundTruthManifest
      • S3Object
        • Bucket required
        • Key required
        • VersionId

DatasetStatus

  • DatasetStatus string (values: CREATE_IN_PROGRESS, CREATE_COMPLETE, CREATE_FAILED, UPDATE_IN_PROGRESS, UPDATE_COMPLETE, UPDATE_FAILED_ROLLBACK_IN_PROGRESS, UPDATE_FAILED_ROLLBACK_COMPLETE, DELETE_IN_PROGRESS, DELETE_COMPLETE, DELETE_FAILED)

DatasetStatusMessage

  • DatasetStatusMessage string

DatasetType

  • DatasetType string

DateTime

  • DateTime string

DeleteDatasetRequest

  • DeleteDatasetRequest object

DeleteDatasetResponse

  • DeleteDatasetResponse object

DeleteModelRequest

  • DeleteModelRequest object

DeleteModelResponse

  • DeleteModelResponse object
    • ModelArn

DeleteProjectRequest

  • DeleteProjectRequest object

DeleteProjectResponse

  • DeleteProjectResponse object
    • ProjectArn

DescribeDatasetRequest

  • DescribeDatasetRequest object

DescribeDatasetResponse

  • DescribeDatasetResponse object
    • DatasetDescription
      • CreationTimestamp
      • DatasetType
      • ImageStats
        • Anomaly
        • Labeled
        • Normal
        • Total
      • LastUpdatedTimestamp
      • ProjectName
      • Status
      • StatusMessage

DescribeModelRequest

  • DescribeModelRequest object

DescribeModelResponse

  • DescribeModelResponse object
    • ModelDescription
      • CreationTimestamp
      • Description
      • EvaluationEndTimestamp
      • EvaluationManifest
        • Bucket required
        • Key required
      • EvaluationResult
        • Bucket required
        • Key required
      • KmsKeyId
      • ModelArn
      • ModelVersion
      • OutputConfig
        • S3Location required
          • Bucket required
          • Prefix
      • Performance
        • F1Score
        • Precision
        • Recall
      • Status
      • StatusMessage

DescribeProjectRequest

  • DescribeProjectRequest object

DescribeProjectResponse

  • DescribeProjectResponse object
    • ProjectDescription

DetectAnomaliesRequest

  • DetectAnomaliesRequest object
    • Body required

DetectAnomaliesResponse

  • DetectAnomaliesResponse object
    • DetectAnomalyResult
      • Confidence
      • IsAnomalous
      • Source
        • Type

DetectAnomalyResult

  • DetectAnomalyResult object: The prediction results from a call to DetectAnomalies.
    • Confidence
    • IsAnomalous
    • Source
      • Type

Float

  • Float number

ImageSource

  • ImageSource object: The source for an image.
    • Type

ImageSourceType

  • ImageSourceType string

InferenceUnits

  • InferenceUnits integer

InputS3Object

  • InputS3Object object: Amazon S3 Location information for an input manifest file.
    • Bucket required
    • Key required
    • VersionId

Integer

  • Integer integer

InternalServerException

IsLabeled

  • IsLabeled boolean

KmsKeyId

  • KmsKeyId string

ListDatasetEntriesRequest

  • ListDatasetEntriesRequest object

ListDatasetEntriesResponse

  • ListDatasetEntriesResponse object

ListModelsRequest

  • ListModelsRequest object

ListModelsResponse

ListProjectsRequest

  • ListProjectsRequest object

ListProjectsResponse

ModelArn

  • ModelArn string

ModelDescription

  • ModelDescription object: Describes an Amazon Lookout for Vision model.
    • CreationTimestamp
    • Description
    • EvaluationEndTimestamp
    • EvaluationManifest
      • Bucket required
      • Key required
    • EvaluationResult
      • Bucket required
      • Key required
    • KmsKeyId
    • ModelArn
    • ModelVersion
    • OutputConfig
      • S3Location required
        • Bucket required
        • Prefix
    • Performance
      • F1Score
      • Precision
      • Recall
    • Status
    • StatusMessage

ModelDescriptionMessage

  • ModelDescriptionMessage string

ModelHostingStatus

  • ModelHostingStatus string (values: RUNNING, STARTING, STOPPED, FAILED)

ModelMetadata

  • ModelMetadata object: Describes an Amazon Lookout for Vision model.
    • CreationTimestamp
    • Description
    • ModelArn
    • ModelVersion
    • Performance
      • F1Score
      • Precision
      • Recall
    • Status
    • StatusMessage

ModelMetadataList

ModelPerformance

  • ModelPerformance object: Information about the evaluation performance of a trained model.
    • F1Score
    • Precision
    • Recall

ModelStatus

  • ModelStatus string (values: TRAINING, TRAINED, TRAINING_FAILED, STARTING_HOSTING, HOSTED, HOSTING_FAILED, STOPPING_HOSTING, SYSTEM_UPDATING, DELETING)

ModelStatusMessage

  • ModelStatusMessage string

ModelVersion

  • ModelVersion string

OutputConfig

  • OutputConfig object: The S3 location where Amazon Lookout for Vision saves model training files.
    • S3Location required
      • Bucket required
      • Prefix

OutputS3Object

  • OutputS3Object object: The S3 location where Amazon Lookout for Vision saves training output.
    • Bucket required
    • Key required

PageSize

  • PageSize integer

PaginationToken

  • PaginationToken string

ProjectArn

  • ProjectArn string

ProjectDescription

  • ProjectDescription object: Describe an Amazon Lookout for Vision project. For more information, see DescribeProject.

ProjectMetadata

  • ProjectMetadata object: Metadata about an Amazon Lookout for Vision project.
    • CreationTimestamp
    • ProjectArn
    • ProjectName

ProjectMetadataList

ProjectName

  • ProjectName string

QueryString

  • QueryString string

ResourceNotFoundException

S3BucketName

  • S3BucketName string

S3KeyPrefix

  • S3KeyPrefix string

S3Location

  • S3Location object: Information about the location of a manifest file.
    • Bucket required
    • Prefix

S3ObjectKey

  • S3ObjectKey string

S3ObjectVersion

  • S3ObjectVersion string

ServiceQuotaExceededException

StartModelRequest

  • StartModelRequest object
    • MinInferenceUnits required

StartModelResponse

  • StartModelResponse object
    • Status

StopModelRequest

  • StopModelRequest object

StopModelResponse

  • StopModelResponse object
    • Status

Stream

  • Stream string

ThrottlingException

UpdateDatasetEntriesRequest

  • UpdateDatasetEntriesRequest object
    • Changes required

UpdateDatasetEntriesResponse

  • UpdateDatasetEntriesResponse object
    • Status

ValidationException