@tensorflow-models/coco-ssd
Version:
Object detection model (coco-ssd) in TensorFlow.js
49 lines (42 loc) • 806 B
YAML
steps:
# Install common dependencies.
- name: 'node:16'
id: 'yarn-common'
entrypoint: 'yarn'
args: ['install']
# Install tfjs dependencies.
- name: 'node:16'
dir: 'coco-ssd'
entrypoint: 'yarn'
id: 'yarn'
args: ['install']
waitFor: ['yarn-common']
# Lint.
- name: 'node:16'
dir: 'coco-ssd'
entrypoint: 'yarn'
id: 'lint'
args: ['lint']
waitFor: ['yarn']
# Build.
- name: 'node:16'
dir: 'coco-ssd'
entrypoint: 'yarn'
id: 'build'
args: ['build']
waitFor: ['yarn']
# Run tests.
- name: 'node:16'
dir: 'coco-ssd'
entrypoint: 'yarn'
id: 'test'
args: ['test']
waitFor: ['yarn']
# General configuration
timeout: 1800s
logsBucket: 'gs://tfjs-build-logs'
substitutions:
_NIGHTLY: ''
options:
logStreamingOption: 'STREAM_ON'
substitution_option: 'ALLOW_LOOSE'