Skip to content

Commit

Permalink
add gcp readme
Browse files Browse the repository at this point in the history
  • Loading branch information
samsja committed Feb 5, 2025
1 parent 4ba40fc commit 78af7d0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,13 @@ VERIFIER_REGISTRY = {
```

Every task from your dataset with `"task_type": "length_adherance"` will now be verified with the implemented length verifier when running `src/genesys/verify.py`.


## Pushing data to gcp bucket

For pushing the data to s3/gcp bucket, you have to download a service account key file with the permission to push to your bucket, encode it to base64 and set the encoded file as `GCP_CREDENTIALS_BASE64`. Then you can specify your bucket via the `--gcp_bucket` flag

```
export GCP_CREDENTIALS_BASE64=$(base64 -w 0 /path/to/your/service-account-key.json)
uv run python src/genesys/generate.py @ configs/debug.toml --gcp_bucket checkpoints_pi/test_data
```

0 comments on commit 78af7d0

Please sign in to comment.