Compare commits

..

1 Commits

Author SHA1 Message Date
Remi Cadene
ab2b6ae0e4 lol 2024-05-08 08:54:24 +00:00
3 changed files with 1 additions and 7 deletions

View File

@@ -139,13 +139,11 @@ Follow these steps to start contributing:
To develop on 🤗 LeRobot, you will at least need to install the `dev` and `test` extras dependencies along with the core library:
```bash
pip install poetry
poetry install --sync --extras "dev test"
```
You can also install the project with all its dependencies (including environments):
```bash
pip install poetry
poetry install --sync --all-extras
```

View File

@@ -84,11 +84,7 @@ class Logger:
if self._wandb and not self._disable_wandb_artifact:
# note wandb artifact does not accept ":" in its name
artifact = self._wandb.Artifact(
self._group.replace(":", "_").replace("/", "__")
+ "-"
+ str(self._seed)
+ "-"
+ str(identifier),
self._group.replace(":", "_") + "-" + str(self._seed) + "-" + str(identifier),
type="model",
)
artifact.add_file(save_dir / SAFETENSORS_SINGLE_FILE)

0
test.txt Normal file
View File