File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 5
5
name = "boolean-multiplexer"
6
6
max_episode_steps = 1
7
7
8
+ # Length of a multiplexer is calculated
9
+ # using l = k + 2^k
10
+
8
11
register (
9
12
id = '{}-3bit-v0' .format (name ),
10
13
entry_point = 'gym_multiplexer:BooleanMultiplexer' ,
24
27
entry_point = 'gym_multiplexer:BooleanMultiplexer' ,
25
28
max_episode_steps = max_episode_steps ,
26
29
kwargs = {'control_bits' : 3 }
30
+ )
31
+
32
+ register (
33
+ id = '{}-20bit-v0' .format (name ),
34
+ entry_point = 'gym_multiplexer:BooleanMultiplexer' ,
35
+ max_episode_steps = max_episode_steps ,
36
+ kwargs = {'control_bits' : 4 }
37
+ )
38
+
39
+ register (
40
+ id = '{}-37bit-v0' .format (name ),
41
+ entry_point = 'gym_multiplexer:BooleanMultiplexer' ,
42
+ max_episode_steps = max_episode_steps ,
43
+ kwargs = {'control_bits' : 5 }
27
44
)
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
3
setup (name = 'parrotprediction-openai-envs' ,
4
- version = '0.9.2 ' ,
4
+ version = '0.9.3 ' ,
5
5
description = 'Custom environments for OpenAI Gym' ,
6
6
keywords = 'acs lcs machine-learning reinforcement-learning openai' ,
7
7
url = 'https://github.com/ParrotPrediction/openai-envs' ,
You can’t perform that action at this time.
0 commit comments