You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/DOCKER.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ This command sets up the container with GPU access and maps the SSH port for ext
39
39
To facilitate integration with external tools, the container supports environment variables for Huggingface and WandB tokens. Pass these at runtime as follows:
40
40
41
41
```bash
42
-
docker run --gpus all -e HUGGING_FACE_HUB_TOKEN='your_token' -e WANDB_TOKEN='your_token' -it -p 22:22 simpletuner
42
+
docker run --gpus all -e HF_TOKEN='your_token' -e WANDB_API_KEY='your_token' -it -p 22:22 simpletuner
43
43
```
44
44
45
45
### 4. Data Volumes
@@ -98,8 +98,8 @@ services:
98
98
- "[path to your datasets]:/datasets"
99
99
- "[path to your configs]:/workspace/SimpleTuner/config"
100
100
environment:
101
-
HUGGING_FACE_HUB_TOKEN: [your hugging face token]
102
-
WANDB_TOKEN: [your wanddb token]
101
+
HF_TOKEN: [your hugging face token]
102
+
WANDB_API_KEY: [your wanddb token]
103
103
command: ["tail", "-f", "/dev/null"]
104
104
deploy:
105
105
resources:
@@ -155,4 +155,4 @@ services:
155
155
### General Advice
156
156
157
157
-**Logs and Output**: Review the container logs and output for any error messages or warnings that can provide more context on the issue.
158
-
-**Documentation and Forums**: Consult the Docker and NVIDIA CUDA documentation for more detailed troubleshooting advice. Community forums and issue trackers related to the specific software or dependencies you are using can also be valuable resources.
158
+
-**Documentation and Forums**: Consult the Docker and NVIDIA CUDA documentation for more detailed troubleshooting advice. Community forums and issue trackers related to the specific software or dependencies you are using can also be valuable resources.
0 commit comments