зеркало из
1
0
Форкнуть 0
azure-ml-problem-sets/shrike-examples
Amir 949c0e7507
Update README and demo_component_with_parameter.py to suggest using the same component key (#10)
Co-authored-by: amirabdi <amirabdi@microsoft.com>
2022-08-09 09:03:46 -07:00
..
components Thomas/last problems (#5) 2021-07-30 10:15:34 -07:00
contoso Thomas/last problems (#5) 2021-07-30 10:15:34 -07:00
pipelines Update README and demo_component_with_parameter.py to suggest using the same component key (#10) 2022-08-09 09:03:46 -07:00
tests Thomas/last problems (#5) 2021-07-30 10:15:34 -07:00
ReadMe.md Problem sets improvements following first bootcamp (#6) 2021-08-09 14:42:24 -07:00
requirements.txt Shrike problems - first 3 (#3) 2021-07-08 17:04:28 -07:00

ReadMe.md

Getting started with the shrike problems

Prerequisites

  • Provision a public AML workspace (you can find instructions here).
    • Note that you do NOT want a Heron a.k.a. eyes-off a.k.a. compliant workspace. This introductory problem set is fairly general and does not touch on compliance-specific notions, so using a Heron workspace would make things more complicated.
  • Create a dataset of type FileDataset (as opposed to TabularDataset).
    • This can be done following these instructions. You can create a dataset from a local csv on your machine, this iris.csv file for instance (just download it first, from the link above, then upload it to your workspace as you create the dataset).

Setup

  • Clone the current repository and set shrike-examples as your working directory.
  • Set up and activate a new Conda environment: conda create --name shrike-examples-env python=3.7 -y, conda activate shrike-examples-env.
  • Install the shrike dependencies: pip install -r requirements.txt

List of problems

The list of problems is given here in the shrike-problems directory, and guidance for individual problems can be found in the problems subdirectory.

To solve the problems, just follow the Guidance section in each problem description, and modify the appropriate files as indicated. You can look for the # To-Do comment string to locate the parts of the files that need modifying.