Skip to content

Commit f1795e7

Browse files
authored
chore: sanitize config examples/docs (#288)
Remove references to s3 exporter
1 parent b56f8c3 commit f1795e7

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

docs/nemo-evaluator-launcher/configuration/execution/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ execution:
1515
type: local # or slurm, lepton
1616
output_dir: /path/to/results # Common: where to save results (mounted as /results in evaluation container, must be creatable on the given executor)
1717
auto_export: # Common: automatic result export
18-
destinations: ["wandb", "mlflow", "gsheets", "s3"]
18+
destinations: ["wandb", "mlflow", "gsheets"]
1919
configs:
2020
wandb: {}
2121
mlflow: {}
2222
gsheets: {}
23-
s3: {}
2423
# Executor-specific parameters (see individual executor docs):
2524
```
2625

@@ -31,7 +30,6 @@ On the executor level, we can define results export methods. The `auto_export` f
3130
- **W&B**: Weights & Biases experiment tracking
3231
- **MLFlow**: ML experiment management
3332
- **GSheets**: Google Sheets integration
34-
- **S3**: AWS S3 storage
3533

3634
For detailed configuration options, see the {doc}`Exporters Documentation <../../exporters/overview>`.
3735

packages/nemo-evaluator-launcher/examples/local_auto_export_llama_3_1_8b_instruct.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,8 @@ execution:
2929

3030
# Export results to W&B, MLFlow, GSheets and S3 automatically
3131
auto_export:
32-
destinations: ["wandb", "mlflow", "gsheets", "s3"]
32+
destinations: ["wandb", "mlflow", "gsheets"]
3333
configs:
34-
s3:
35-
# default: posts whole run directory to s3
36-
bucket: "nemo-evaluator-launcher-test"
37-
endpoint_url: "https://pdx.s8k.io"
38-
region_name: "us-east-1"
39-
access_key_id: ${oc.env:AWS_ACCESS_KEY_ID}
40-
secret_access_key: ${oc.env:NV_CSS_S3_TOKEN}
41-
4234
wandb:
4335
# Special wandb parameters
4436
entity: "nvidia"

0 commit comments

Comments
 (0)