File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This guide explains how to set up the environment and train the HSTU/DLRM models
66
77If you are developing on a TPU VM directly, use a virtual environment to avoid conflicts with the system-level Python packages.
88
9- #### 1. Prerequisites
9+ ### 1. Prerequisites
1010Ensure you have ** Python 3.11+** installed.
1111``` bash
1212python3 --version
@@ -41,7 +41,7 @@ python dlrm_experiment_test.py
4141
4242If you prefer not to manage a virtual environment or want to deploy this as a container, you can build a Docker image.
4343
44- ## 1. Create a Dckerfile
44+ ### 1. Create a Dckerfile
4545Create a file named ` Dockerfile ` in the root of the repository:
4646
4747``` dockerfile
@@ -73,15 +73,15 @@ CMD ["python", "recml/examples/dlrm_experiment_test.py"]
7373
7474You can use this dockerfile to run the DLRM model experiment from this repo in your own environment.
7575
76- ## 2. Build the Image
76+ ### 2. Build the Image
7777
7878Run this command from the root of the repository. It reads the ` Dockerfile ` , installs all dependencies, and creates a ready-to-run image.
7979
8080``` bash
8181docker build -t recml-training .
8282```
8383
84- ## 3. Run the Image
84+ ### 3. Run the Image
8585
8686``` bash
8787docker run --rm --privileged \
You can’t perform that action at this time.
0 commit comments