lerobot/tests/test_envs.py

70 lines
2.2 KiB
Python
Raw Normal View History

2024-05-15 18:13:09 +08:00
#!/usr/bin/env python
# Copyright 2024 The HuggingFace Inc. team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import importlib
2024-04-18 20:47:42 +08:00
import gymnasium as gym
import pytest
import torch
2024-04-05 21:35:20 +08:00
from gymnasium.utils.env_checker import check_env
2024-04-18 20:47:42 +08:00
import lerobot
2024-02-20 22:22:16 +08:00
from lerobot.common.envs.factory import make_env
from lerobot.common.envs.utils import preprocess_observation
2024-04-18 20:47:42 +08:00
from lerobot.common.utils.utils import init_hydra_config
from .utils import DEFAULT_CONFIG_PATH, DEVICE, require_env
2024-04-18 20:47:42 +08:00
OBS_TYPES = ["state", "pixels", "pixels_agent_pos"]
2024-04-18 20:47:42 +08:00
@pytest.mark.parametrize("obs_type", OBS_TYPES)
@pytest.mark.parametrize("env_name, env_task", lerobot.env_task_pairs)
@require_env
def test_env(env_name, env_task, obs_type):
if env_name == "aloha" and obs_type == "state":
pytest.skip("`state` observations not available for aloha")
package_name = f"gym_{env_name}"
importlib.import_module(package_name)
2024-04-18 20:47:42 +08:00
env = gym.make(f"{package_name}/{env_task}", obs_type=obs_type)
2024-04-09 17:58:59 +08:00
check_env(env.unwrapped, skip_render_check=True)
2024-04-09 16:41:20 +08:00
env.close()
2024-02-20 22:22:16 +08:00
2024-04-18 20:47:42 +08:00
@pytest.mark.parametrize("env_name", lerobot.available_envs)
@require_env
def test_factory(env_name):
2024-03-28 02:33:48 +08:00
cfg = init_hydra_config(
DEFAULT_CONFIG_PATH,
overrides=[f"env={env_name}", f"device={DEVICE}"],
)
2024-05-04 00:33:16 +08:00
env = make_env(cfg, n_envs=1)
obs, _ = env.reset()
obs = preprocess_observation(obs)
# test image keys are float32 in range [0,1]
for key in obs:
if "image" not in key:
continue
img = obs[key]
assert img.dtype == torch.float32
# TODO(rcadene): we assume for now that image normalization takes place in the model
assert img.max() <= 1.0
assert img.min() >= 0.0
2024-04-09 16:41:20 +08:00
env.close()