/customvision-cli

Microsoft Azure cognitive service custom vision cli tool, use to training/test your image files and also can export trained model.

Primary LanguageJavaScript

Description

Azure cognitive custom vision tool set. Used to:

  1. Training your images
  2. Test the training result
  3. Export training module.

How to use

  1. clone the code from repo
  2. install dependencies
npm install
  1. set 'TRAINING_KEY' in .env file or enviroment variable.

Training

  1. Put your image files in 'training' folder, and orgnize with tag as sub-folder name.
  2. run the following code:
npm run training

training

Test

  1. Put your image files need be tested in 'quicktest' folder.
  2. Run the following code:
npm run test

training

Export

Run the code:

npm run export

training