Skip to content
Snippets Groups Projects
Commit 14f3f828 authored by Chris MacLellan's avatar Chris MacLellan
Browse files

renaming to follow PEP conventions for package name

parent caa80f6a
No related branches found
No related tags found
No related merge requests found
This library contains headless versions of a number of commonly used tutoring system environments for training simulated students.
To create an AI Gym environment for the Fraction Arithmetic tutor use the following commands:
```
import gym
import tutorenvs
env = gym.make('FractionArith-v0')
```
from gym.envs.registration import register
from tutorenvs.fractions import FractionArithEnv
register(
id='FractionArithEnv',
entry_point='TutorEnvs.envs:FractionArithEnv',
id='FractionArith-v0',
entry_point='tutorenvs:FractionArithEnv',
)
import gym
from gym import error, spaces, utils
from gym.utils import seeding
class FractionArithEnv(gym.Env):
metadata = {'render.modes': ['human']}
def __init__(self):
pass
def step(self, action):
pass
def reset(self):
pass
def render(self, mode='human', close=False):
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment