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. Build the Image
44+ ### 1. Create a Dockerfile
4545Create 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
5555ENV 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)
5861RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
5962
You can’t perform that action at this time.
0 commit comments