8.7 KiB
--DRAFT--
Orchestrator CLI Spec
Summary
Orchestrator command is used by Bot Framework developer to add language understanding functionality based on Orchestrator technology to their bots.
The Orchestrator command may also be used in advanced mode (see interactive sub-command) for refined experimentation and fine tuning derived language models.
Requirements
General and Common
Use the following common guidelines for all commands (unless explicitly excluded).
- All commands return:
- Success or Error status
- Error code and message if available
- Upon successful completion:
- Print back affected values (if too long, specify container e.g. filename or use ellipsis ...)
- Server detailed response (e.g. training status)
- All commands must display synopsis with example in help
- All commands must print which flags/arguments are optional, mandatory and default values
- All lengthy operations (> 5 seconds) shall print progress indicator (dots at 5 sec interval)
- All flags assume to be provided value pair (e.g. -o, --out expects -o, --out )
- All flags that are marked
mandatory default to...
are mandatory unless specified in config in which case they default to provided values in config file - Use camelCase for all parameters
Prerequisites
- BF CLI environment (OCliff etc). See Foundation Dev Spec for more.
- Access to downloadable NLR base models
Use Cases
Orchestrator is first shipped as a LUIS alternative for Dispatch Scenario, i.e. for mapping utterances to intents only. Entity recognition is on the roadmap as a future capability.
Primary Workflow
The mainstream bot language recognition development cycle with Orchestrator is assumed to be generally as follows:
- Create Intent-utterances example based .lu definition referred to as a label file using the Language Understanding practices as described in Language Understanding for dispatch (e.g. author .lu file or within the Composer GUI experience).
- Download Natural Language Representation (NLR) base Model (will be referred to as the basemodel).
- Combine the label file .lu from (1) with the base model from (2) to create a snapshot file with a .blu extension.
- Create another test .lu file similar to (1) with utterances that are similar but are not identical to the ones specified in the example based .lu definition in (1).
- Test quality of utterance to intent recognition.
- Examine report to ensure that the recognition quality is satisfactory. For more on report interpretation see TBD.
- If not, adjust the label file in (1) and repeat steps 2-6 until satisfied.
For more information on Machine Learning design practices see References.
Variation: Composer Dialogs
If designing a Composer or Adaptive based multi folder, multi-dialog bot that requires processing across directories and generation of corresponding .dialog files use the build command.
The build command does... TBD
Advanced
The advanced language recognition development cycle assumes some level understand of machine learning concepts and interactive iterations over the language example definition and potentially evaluation of different models.
For the advanced scenario please refer to the following documentation TBD
Design Specifications
Command Line Form
At the root bf orchestrator shall print synopsis, and brief description of each sub-command. Similarly each sub-command --help command shall print additional usage details.
Sub-Command | Options | Comments |
---|---|---|
basemodel | :get :list :compare TBD |
Downloads the default, generally optimal base model, the Natural Language Representation (nlr) as basis for creating the snapshot file. see NLR Models for more on nlr Other models may work better in some scenarios, and there are tradeoffs of performance; speed, memory usage. One may experiment by using different models. It is however recommended to get familiar with advanced usage (TBD see advanced command) To see the list of available models use the list command. |
create | -i, --in=in The path to source label files from where orchestrator example file will be created from. Default to current working directory. -m, --model=model Path to Orchestrator model directory. -o, --out=out Path where generated orchestrator snapshot file will be placed. Default to current working directory. |
Creates Orchestrator snapshot .blu file from .lu/.qna files |
test | -a, --ambiguous=ambiguous Ambiguous threshold, default to 0.2 -i, --in=in Path to a previously created snapshot file -l, --low_confidence=low_confidence Low confidence threshold, default to 0.5 -m, --model=model Directory or hosting Orchestrator config and model files. -o, --out=out Directory where analysis and output files will be placed. -p, --multi_label=multi_label Plural/multi-label prediction threshold, default to 1 -t, --test=test Path to a test file. -u, --unknown=unknown Unknow label threshold, default to 0.3 -t, --prediction=prediction |
Run tests on label, and model files. TBD: How we distinguish evaluate/assess/test, with mode flag or implicit with explanation? e.g.if test file not specified, run in assessment mode. Add See Also: explain, add link to detailed discussion... |
build | -i, --in=in Path to lu file or folder with lu files. -m, --model=model Path to Orchestrator model. -o, --out=out Path where Orchestrator snapshot/dialog file(s) will be placed. Default to current working directory. --dialog Generate multi language or cross train Orchestrator recognizers. --luconfig=luconfig Path to luconfig.json. |
TBD: Explain build command |
interactive | Enter advanced interactive mode | See full reference here TBD |
query | --phrase <phrase> --model <snapshot file> |
Queries a snapshot .blu file for given phrase to find corresponding label. |
*standard global commands such as --help & --force are assumed
Porting Map [If Applicable]
Dispatch CLI is a predecessor to Orchestrator dispatch functionality in concept.
TBD Need to try to map either concepts or commands to older tool
Command Group: Orchestrator
Sub-Command | Options | Old Command | Comments |
---|---|---|---|
Special Considerations
Orchestrator command group is starting as a plugin while in preview and will eventually be promoted to a command group parallel to luis, and qnamaker. It will evolve to include additional NLR base models, and differently from the mentioned LU services it is a local implementation with no service functionality behind. As such it is likely that some advanced tuning capability will be required in order to exploit the full power. In that case, users will be required to possess more advanced knowledge of machine learning and model optimization as well as be more comfortable with the advanced functionality described above.
Issues
<while actual issues should be tracked github/issues initial placeholders may be placed here transiently for convenience.
- Fix TBD and additional references
- ...