Skip to content
This repository was archived by the owner on Feb 28, 2023. It is now read-only.

Commit 10fc1ca

Browse files
committed
Initial commit
0 parents  commit 10fc1ca

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=46.4.0", "wheel"]
3+
build-backend = "setuptools.build_meta"

rrc2022/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.1.0"

rrc2022/example.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""Example policy for Real Robot Challenge 2022"""
2+
import numpy as np
3+
4+
5+
class MyPolicy:
6+
def __init__(self, steps=1000):
7+
position_up = np.array([0.5, 1.2, -2.4] * 3)
8+
position_down = np.array([-0.08, 0.84, -1.2] * 3)
9+
trajectory_range = position_up - position_down
10+
# steps = 1000
11+
step_size = trajectory_range / steps
12+
13+
self.trajectory = [position_down + i * step_size for i in range(steps)]
14+
self.i = 0
15+
16+
def get_action(self, observation):
17+
if self.i >= len(self.trajectory):
18+
# reverse trajectory
19+
self.trajectory = self.trajectory[::-1]
20+
self.i = 0
21+
22+
target_position = self.trajectory[self.i]
23+
self.i += 1
24+
25+
# TODO: should be changed to return torques instead of positions
26+
return target_position

setup.cfg

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[metadata]
2+
name = rrc2022
3+
version = attr: rrc2022.__version__
4+
5+
[options]
6+
packages = rrc2022
7+
install_requires =
8+
numpy

trifinger.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[policy]
2+
class = "rrc2022.example.MyPolicy"

0 commit comments

Comments
 (0)