-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
23 lines (17 loc) · 859 Bytes
/
.env.example
File metadata and controls
23 lines (17 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Environment configuration example
# Docker volume mount path:
# By default we mount the local Hugging Face cache directory with that of the Docker's (see Dockerfiles)
# Multiple directories can be mounted into the container: different mount should be separated by ","
# e.g. VOLUME_MOUNT="<host_path1>:<container_path1>,<host_path2>:<container_path2>"
VOLUME_MOUNT=/home/.cache/huggingface:/workspace/huggingface
# Docker container name
CONTAINER_NAME=amdiffusionbenchmark
# Docker image name
IMAGE_NAME=amdiffusionbenchmark
# Huggingface token
HF_TOKEN=
# Number of GPUs per node. Used in Multi-node training.
NUM_GPUS_PER_NODE=8
# Currently, the (default) video dataset has some videos with lesser number of frames.
# This parameter controls whether to pad the videos (last-frame-padding) to a requested number of frames.
PAD_VIDEOS_TO_NUM_FRAMES=1