зеркало из https://github.com/microsoft/hi-ml.git
18 строки
478 B
YAML
18 строки
478 B
YAML
description: Hello World on Singularity
|
|
|
|
environment:
|
|
image: azureml/openmpi3.1.2-cuda10.2-cudnn7-ubuntu18.04:latest
|
|
conda_yaml_file: $CONFIG_DIR/hi-ml/environment.yml
|
|
|
|
code:
|
|
# local directory of the code. this will be uploaded to the server.
|
|
# $CONFIG_DIR is expanded to the directory of this config file
|
|
local_dir: $CONFIG_DIR
|
|
|
|
# list of jobs to run
|
|
jobs:
|
|
- name: HelloWorld
|
|
sku: G1
|
|
command:
|
|
- python hi-ml/src/health_ml/runner.py --model=health_ml.HelloWorld
|