2024-04-17 22:42:55 +08:00
|
|
|
import torch
|
2024-02-25 18:50:23 +08:00
|
|
|
|
2024-03-28 02:33:48 +08:00
|
|
|
# Pass this as the first argument to init_hydra_config.
|
|
|
|
DEFAULT_CONFIG_PATH = "lerobot/configs/default.yaml"
|
2024-02-25 18:50:23 +08:00
|
|
|
|
2024-04-17 22:42:55 +08:00
|
|
|
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
|