We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 089dd9c commit 3382b39Copy full SHA for 3382b39
Encoder_Eval/dockerfile
@@ -0,0 +1,19 @@
1
+FROM pytorch/pytorch:2.7.0-cuda11.8-cudnn9-runtime
2
+
3
+# Set up environment variables (optional, but often recommended)
4
+ENV DEBIAN_FRONTEND=noninteractive
5
6
+# Install Python packages
7
+RUN pip install --no-cache-dir --extra-index-url https://pypi.nvidia.com --upgrade nvidia-dali-cuda110 \
8
+ && pip install --no-cache-dir decord==0.6.0 \
9
+ && pip install --no-cache-dir timm \
10
+ && pip install --no-cache-dir transformers==4.52.4
11
12
+# (Optional) Set working directory
13
+WORKDIR /workspace
14
15
+# (Optional) Copy your code into the container
16
+# COPY . /workspace
17
18
+# (Optional) Set entrypoint or CMD
19
+# CMD ["python", "your_script.py"]
0 commit comments