-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Removing all references to "git clone" and starting to use mlcommons-box and runner packages from PyPi. - Updating docker runner documentation: adding information about `configure` phase being optional now. - Updating MNIST/Hello World examples and using box_examples repository.
- Loading branch information
1 parent
c7f09f3
commit dbc55ea
Showing
5 changed files
with
86 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,33 @@ | ||
# Getting Started | ||
|
||
This section describes some of the example MLCommon-Box boxes, in particular it covers the following topics: | ||
|
||
- Setting up python environment. | ||
- Running simple MLCommon-Box boxes. | ||
- Detailed description of the internal structure of MLCommons-Box boxes. | ||
|
||
|
||
## Repository of MLCommons-Box examples. | ||
MLCommons hosts a simple GitHub-based repository with example MLCommons-Box boxes. It is located [here](https://github.com/mlperf/box_examples). | ||
|
||
|
||
## Setting-up python environment | ||
In various tutorials we start with setting up Python environment and downloading MLCommons-Box boxes. Here is the step by step guide: | ||
``` | ||
# Clone MLCommons-Box Examples | ||
git clone https://github.com/mlperf/box_examples.git && cd ./box_examples | ||
# Create Python Virtual Environment | ||
virtualenv -p python3 ./env && source ./env/bin/activate | ||
# Install MLCommons-Box Docker runner | ||
pip install mlcommons-box-docker | ||
# Optionally, setup host environment by providing the correct `http_proxy` and `https_proxy` environmental variables. | ||
# export http_proxy=... | ||
# export https_proxy=.. | ||
# Optionally, install other runners | ||
# pip install mlcommons-box-singularity | ||
# pip install mlcommons-box-ssh | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters