![Two sides of a blue cube with the text "Machine" and "Learning" on one face, and "Pod" and "Management" on the other face. The background is comprised of alternating zeroes and ones in green on black.][1]
[MLCube][2] is a new open source container based infrastructure specification introduced to enable reproducibility in Python based machine learning workflows. It can utilize tools such as [Podman][3], [Singularity][4] and [Docker][5]. Execution on remote platforms is also supported. One of the chairs of the MLCommons Best Practices working group that is developing MLCube is [Diane Feddema][6] from Red Hat. This introductory article explains how to run the [hello world MLCube example][7] using Podman on Fedora Linux.
[Yazan Monshed][8] has written a very helpful introduction to [Podman on Fedora][9] which gives more details on some of the steps used here.
First install the necessary dependencies.
```
sudo dnf -y update
sudo dnf -y install podman git virtualenv \
policycoreutils-python-utils
```
Then, following the documentation, setup a virtual environment and get the example code. To ensure reproducibility, use a specific commit as the project is being actively improved.
Choose docker.io/mlcommons/hello_world:0.0.1 to obtain the container.
If you are not on a computer with x86_64 architecture, you will need to build the container. Change the file $HOME/mlcube.yaml so that the line
```
build_strategy: pull
```
becomes
```
build_strategy: auto
```
and then build the container using
```
mlcube configure --mlcube=. --platform=docker
```
To run the tests, you may need to set SELinux permissions in the directories appropriately. You can check that SELinux is enabled by typing
```
sudo sestatus
```
which should give you output similar to
```
SELinux status: enabled
...
```
[Josphat Mutai][10], [Christopher Smart][11] and [Daniel Walsh][12] explain that you need to be careful in setting appropriate SELinux policies for files used by containers. Here, you will allow the container to read and write to the _workspace_ directory.
```
sudo semanage fcontext -a -t container_file_t "$PWD/workspace(/.*)?"
mlcube run --mlcube=. --task=hello --platform=docker
mlcube run --mlcube=. --task=bye --platform=docker
```
Finally, check that the output
```
cat workspace/chats/chat_with_alice.txt
```
has text similar to
```
Hi, Alice! Nice to meet you.
Bye, Alice! It was great talking to you.
```
You can create your own MLCube as described [here][13]. Contributions to the [MLCube examples repository][14] are welcome. [Udica][15] is a new project that promises more fine grained SELinux policy controls for containers that are easy for system administrators to apply. Active development of these projects is ongoing. Testing and providing feedback on them would help make secure data management on systems with SELinux easier and more effective.