Skip to content

Commit 29b9a75

Browse files
Merge pull request #263 from gridai/sup-485-artifacts-hit-a-403-forbidden-error-2
Sup 485 artifacts hit a 403 forbidden error 2
2 parents 3d641c8 + d16785b commit 29b9a75

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/features/runs/2_Analyzing Runs/3_artifacts.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ title: Accessing Artifacts
33
sidebar_label: Accessing Artifacts
44
---
55

6+
:::note
7+
Please avoid using special characters in your artifact names. Grid may not be able to sync artifacts to long-term storage if the name contains percent signs, ampersands, or other special characters. The safest characters to use in your artifact names are alphanumerics, the hyphen, the underscore, and the period.
8+
:::
9+
610
# Artifacts
711
Artifacts are the output produced by the training process.
812

docs/getting-started/typical-workflow-cli-user.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,12 @@ You need to do this step **only once**
182182
# make the ssh key (if you don't have one)
183183
ssh-keygen -b 2048 -t rsa -f ~/.ssh/grid_ssh_creds -q -N ""
184184

185+
# add the key to the ssh-agent (to avoid having to explicitly state key on each connection)
186+
# to start the agent, run the following
187+
eval $(ssh-agent)
188+
# then add the key
189+
ssh-add ~/.ssh/grid_ssh_creds
190+
185191
# add the keys to grid
186192
grid ssh-keys add key_1 ~/.ssh/grid_ssh_creds.pub
187193
```
@@ -230,7 +236,7 @@ Once the session is ready, you have three options to interact with it:
230236
- ssh from your local
231237
- ssh + VSCode
232238

233-
Let's login to the Session via SSH.
239+
Let's login to the Session via SSH.
234240

235241
```yaml
236242
grid session ssh resnet-debugging

0 commit comments

Comments
 (0)