Merge 502692a958
into 768e36660d
This commit is contained in:
commit
a188964256
|
@ -0,0 +1,3 @@
|
|||
# AWS Credentials - DO NOT commit actual values
|
||||
AWS_ACCESS_KEY_ID=your_access_key_id
|
||||
AWS_SECRET_ACCESS_KEY=your_secret_access_key
|
13
README.md
13
README.md
|
@ -182,7 +182,7 @@ python lerobot/scripts/visualize_dataset.py \
|
|||
|
||||
It will open `rerun.io` and display the camera streams, robot states and actions, like this:
|
||||
|
||||
https://github-production-user-asset-6210df.s3.amazonaws.com/4681518/328035972-fd46b787-b532-47e2-bb6f-fd536a55a7ed.mov?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20240505%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20240505T172924Z&X-Amz-Expires=300&X-Amz-Signature=d680b26c532eeaf80740f08af3320d22ad0b8a4e4da1bcc4f33142c15b509eda&X-Amz-SignedHeaders=host&actor_id=24889239&key_id=0&repo_id=748713144
|
||||
https://github-production-user-asset-6210df.s3.amazonaws.com/4681518/328035972-fd46b787-b532-47e2-bb6f-fd536a55a7ed.mov?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=YOUR_AWS_ACCESS_KEY_ID (use environment variables in production)%2F20240505%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20240505T172924Z&X-Amz-Expires=300&X-Amz-Signature=d680b26c532eeaf80740f08af3320d22ad0b8a4e4da1bcc4f33142c15b509eda&X-Amz-SignedHeaders=host&actor_id=24889239&key_id=0&repo_id=748713144
|
||||
|
||||
|
||||
Our script can also visualize datasets stored on a distant server. See `python lerobot/scripts/visualize_dataset.py --help` for more instructions.
|
||||
|
@ -398,3 +398,14 @@ Additionally, if you are using any of the particular policy architecture, pretra
|
|||
## Star History
|
||||
|
||||
[](https://star-history.com/#huggingface/lerobot&Timeline)
|
||||
|
||||
## Environment Variables
|
||||
|
||||
For AWS credentials and other sensitive information, use environment variables instead of hardcoding:
|
||||
|
||||
```bash
|
||||
export AWS_ACCESS_KEY_ID=your_access_key_id
|
||||
export AWS_SECRET_ACCESS_KEY=your_secret_access_key
|
||||
```
|
||||
|
||||
Or use a .env file (make sure to add it to .gitignore).
|
||||
|
|
Loading…
Reference in New Issue