You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# README for app-mlperf-automotive-mlcommons-python
2
+
This README is automatically generated. Add custom content in [info.md](info.md). Please follow the [script execution document](https://docs.mlcommons.org/mlcflow/targets/script/execution-flow/) to understand more about the MLC script execution.
3
+
4
+
`mlcflow` stores all local data under `$HOME/MLC` by default. So, if there is space constraint on the home directory and you have more space on say `/mnt/$USER`, you can do
5
+
```
6
+
mkdir /mnt/$USER/MLC
7
+
ln -s /mnt/$USER/MLC $HOME/MLC
8
+
```
9
+
You can also use the `ENV` variable `MLC_REPOS` to control this location but this will need a set after every system reboot.
10
+
11
+
## Setup
12
+
13
+
If you are not on a Python development environment please refer to the [official docs](https://docs.mlcommons.org/mlcflow/install/) for the installation.
14
+
15
+
```bash
16
+
python3 -m venv mlcflow
17
+
. mlcflow/bin/activate
18
+
pip install mlcflow
19
+
```
20
+
21
+
- Using a virtual environment is recommended (per `pip` best practices), but you may skip it or use `--break-system-packages` if needed.
|`--input`| Input to the script passed using the env key `MLC_INPUT`|| `` |
79
+
|`--output`| Output from the script passed using the env key `MLC_OUTPUT`|| `` |
80
+
|`--outdirname`| The directory to store the script output ||`cache directory ($HOME/MLC/repos/local/cache/<>) if the script is cacheable or else the current directory`|
81
+
|`--outbasename`| The output file/folder name || `` |
82
+
|`--name`||| `` |
83
+
|`--extra_cache_tags`| Extra cache tags to be added to the cached entry when the script results are saved || `` |
84
+
|`--skip_compile`| Skip compilation ||`False`|
85
+
|`--skip_run`| Skip run ||`False`|
86
+
|`--accept_license`| Accept the required license requirement to run the script ||`False`|
87
+
|`--skip_system_deps`| Skip installing any system dependencies ||`False`|
88
+
|`--git_ssh`| Use SSH for git repos ||`False`|
89
+
|`--gh_token`| Github Token || `` |
90
+
|`--hf_token`| Huggingface Token || `` |
91
+
|`--verify_ssl`| Verify SSL ||`False`|
92
+
## Variations
93
+
94
+
### Batch-size
95
+
96
+
-`batch_size.#`_(# can be substituted dynamically)_
0 commit comments