Yonet / CognitiveServicesQuickstart

Azure Cognitive Services Quickstart steps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cognitive Services Quickstart

Azure Cognitive Services Quickstart completed steps divided into branches.

Custom Vision

Azure Cognitive Services - Custom Vision Quickstart completed steps divided into branches.

Object Detection - Node.js SDK

Running locally

  1. Create a .env file and add your variables that are defined in '.env.example' file, then run the following commands:

  2. Install dependencies

npm install
  1. Start the sample file
node sample.js

Or by running

npm st

Step-1 branch

git init
npm init
npm install @azure/cognitiveservices-customvision-training
npm install @azure/cognitiveservices-customvision-prediction
export trainingKey={your training key}
export predictionKey={your predictionKey key}
export predictionResourceId={your predictionResourceId key}
const trainingKey = process.env.trainingKey;
const predictionKey = process.env.predictionKey;
const predictionResourceId = process.env.predictionResourceId;

About

Azure Cognitive Services Quickstart steps


Languages

Language:JavaScript 99.0%Language:Shell 1.0%