Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dciborow/az-ml-realtime-score
https://github.com/dciborow/az-ml-realtime-score
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dciborow/az-ml-realtime-score
- Owner: dciborow
- License: mit
- Created: 2020-02-12T22:50:02.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-12T22:50:04.000Z (almost 5 years ago)
- Last Synced: 2024-10-18T07:17:01.671Z (4 months ago)
- Language: Jupyter Notebook
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
TODO: Insert Build Badge Here
### Authors: <>
### Acknowledgements: <># AI Architecture Template
## Overview
TODO: Insert Overview Here## Design
TODO: Insert Design Here## Prerequisites
1. Linux (Ubuntu).
1. [Anaconda Python](https://www.anaconda.com/download)
1. [Docker](https://docs.docker.com/v17.12/install/linux/docker-ee/ubuntu) installed.
1. [Azure account](https://azure.microsoft.com).---
**NOTE**
You will need to be able to run docker commands without sudo to run this tutorial. Use the following commands to do this.```bash
sudo usermod -aG docker $USER
newgrp docker
```
---The tutorial was developed on an [Azure Ubuntu
DSVM](https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/dsvm-ubuntu-intro),
which addresses the first three prerequisites.## Setup
To set up your environment to run these notebooks, please follow these steps. They setup the notebooks to use Azure seamlessly.
1. Create a _Linux_ _Ubuntu_ VM.
1. Copy `sample_workspace_conf.yml` to a new file, `workspace_conf.yml`, and fill in each field. This will keep secrets out of the source code, and this file will be ignored by git.
1. Log in to your VM. We recommend that you use a graphical client
such as
[X2Go](https://docs.microsoft.com/en-us/azure/machine-learning/data-science-virtual-machine/dsvm-ubuntu-intro#x2go)
to access your VM. The remaining steps are to be done on the VM.
1. Open a terminal emulator.
1. Clone, fork, or download the zip file for this repository:
```
git clone https://github.com/Microsoft/ai-architecture-template.git
```
1. Enter the local repository:
```
cd ai-architecture-template
```
1. Create the Python ai-architecture-template virtual environment using the environment.yml:
```
conda env create -f environment.yml
```
1. Activate the virtual environment:
```
source activate ai-architecture-template
```
The remaining steps should be done in this virtual environment.
1. Login to Azure:
```
az login
```
You can verify that you are logged in to your subscription by executing
the command:
```
az account show -o table
```
1. If you have more than one Azure subscription, select it:
```
az account set --subscription
```
1. Start the Jupyter notebook server:
```
jupyter notebook# 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, visit https://cla.microsoft.com.When 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 repositories 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.# Related projects
[Microsoft AI Github](https://github.com/microsoft/ai) Find other Best Practice projects, and Azure AI Designed patterns in our central repository.