-
Notifications
You must be signed in to change notification settings - Fork 240
/
open_grill.py
30 lines (23 loc) · 990 Bytes
/
open_grill.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from typing import List, Tuple
import numpy as np
from pyrep.objects import Object
from pyrep.objects.joint import Joint
from pyrep.objects.shape import Shape
from rlbench.backend.conditions import JointCondition
from rlbench.backend.task import Task
class OpenGrill(Task):
def init_task(self) -> None:
self.register_success_conditions([
JointCondition(Joint('lid_joint'), np.deg2rad(50))])
def init_episode(self, index: int) -> List[str]:
return ['open the grill',
'grasp tha handle and raise the cover up to open the grill',
'open the bbq',
'open the barbecue']
def variation_count(self) -> int:
return 1
def base_rotation_bounds(self) -> Tuple[Tuple[float, float, float],
Tuple[float, float, float]]:
return (0.0, 0.0, -np.pi / 2), (0.0, 0.0, np.pi / 2)
def boundary_root(self) -> Object:
return Shape('grill_root')