Skip to content

Commit 70399cd

Browse files
authored
Merge branch 'main' into ajkv/library-fix
2 parents ab47436 + 9f1c0bd commit 70399cd

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

training.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide explains how to set up the environment and train the HSTU/DLRM models
66

77
If 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
1010
Ensure you have **Python 3.11+** installed.
1111
```bash
1212
python3 --version
@@ -41,7 +41,7 @@ python dlrm_experiment_test.py
4141

4242
If 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. Build the Image
44+
### 1. Create a Dockerfile
4545
Create a file named `Dockerfile` in the root of the repository:
4646

4747
```dockerfile
@@ -54,6 +54,9 @@ WORKDIR /app
5454
# This tells Python to look in /app for the 'recml' package
5555
ENV PYTHONPATH="${PYTHONPATH}:/app"
5656

57+
# This tells Python to look in /app for the 'recml' package
58+
ENV PYTHONPATH="${PYTHONPATH}:/app"
59+
5760
# Install system tools if needed (e.g., git)
5861
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
5962

0 commit comments

Comments
 (0)