Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/microsoft/nlu.devops
Tools supporting continuous integration and deployment for NLU services.
https://github.com/microsoft/nlu.devops
amazon-lex cd ci ci-cd continuous-deployment continuous-integration dotnet dotnet-cli lex luis nlu
Last synced: about 1 month ago
JSON representation
Tools supporting continuous integration and deployment for NLU services.
- Host: GitHub
- URL: https://github.com/microsoft/nlu.devops
- Owner: microsoft
- License: mit
- Created: 2018-11-28T02:19:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T04:31:55.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T10:40:49.074Z (about 1 month ago)
- Topics: amazon-lex, cd, ci, ci-cd, continuous-deployment, continuous-integration, dotnet, dotnet-cli, lex, luis, nlu
- Language: C#
- Size: 1.02 MB
- Stars: 36
- Watchers: 11
- Forks: 24
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# NLU.DevOps · [![Build Status](https://dev.azure.com/NLUDevOps/NLU.DevOps/_apis/build/status/Microsoft.NLU.DevOps)](https://dev.azure.com/NLUDevOps/NLU.DevOps/_build/latest?definitionId=1) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md#pull-requests)
Continuous integration and deployment of NLU models.
- [Getting Started](#getting-started)
- [Contributing](#contributing)## Getting Started
### Getting Started with the NLU.DevOps Azure DevOps extension
We have published an Azure DevOps extension that wraps the steps below into three pipeline tasks for training, testing and deleting your NLU model. To get started, install the [NLU.DevOps extension](https://marketplace.visualstudio.com/items?itemName=NLUDevOps.nlu-devops) to your Azure DevOps organization.
See the Azure DevOps extension [overview](extensions/overview.md) for more details.
Detailed information for each Azure Pipelines task can be found in the `docs` folder:
- [NLUTrain](docs/NLUTrainTask.md)
- [NLUTest](docs/NLUTestTask.md)
- [NLUClean](docs/NLUCleanTask.md)### Getting Started with the NLU.DevOps CLI
To install the NLU.DevOps CLI tool, run:
```bash
dotnet tool install -g dotnet-nlu
```This will install the CLI tool to your default .NET Core tools path. See the [documentation](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-tool-install) on the `dotnet tool install` command for more information on how to customize the installation directory or package source.
The CLI tool by default supports training and testing NLU models against [LUIS](https://www.luis.ai) and [Lex](https://aws.amazon.com/lex/).
Detailed information on the CLI tool sub-commands and arguments can be found in the `docs` folder:
- [Training an NLU model](docs/Train.md)
- [Testing an NLU model](docs/Test.md)
- [Tearing down an NLU model](docs/Clean.md)
- [Analyzing NLU model results](docs/Analyze.md)
- [Generic utterances model](docs/GenericUtterances.md)
- [Extending the generic utterance model](docs/UtteranceExtensions.md)
- [LUIS model configuration](docs/LuisModelConfiguration.md)
- [LUIS endpoint configuration](docs/LuisEndpointConfiguration.md)
- [Lex bot configuration](docs/LexModelConfiguration.md)
- [Lex endpoint configuration](docs/LexEndpointConfiguration.md)
- [Dialogflow endpoint configuration](docs/DialogflowEndpointConfiguration.md)
- [Configuring LUIS CI/CD with Azure Pipelines](docs/AzurePipelines.md)
- [Extending the CLI to new NLU providers](docs/CliExtensions.md)## Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visitWhen you submit a pull request, a CLA-bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.For more information on reporting potential security vulnerabilities, see the [Security](SECURITY.md) overview.