Metadata-Version: 2.1
Name: gym-tool-use
Version: 1.0.0
Summary: Gym tool use environments.
Home-page: https://github.com/fomorians/gym_tool_use
Author: Fomoro AI
Author-email: team@fomoro.com
License: Apache 2.0
Download-URL: https://github.com/fomorians/gym_tool_use/archive/v1.0.0.tar.gz
Description: # Gym Tool Use
        
        [`gym`](http://gym.openai.com/docs/) tool use environments.
        
        <hr/>
        
        ```sh
        $ pip install gym-tool-use
        ```
        
        # Usage
        
        ```python
        import gym_tool_use  # import to register gym envs
        env = gym.make("TrapTube-v0")
        observation = env.reset()
        action = env.action_space.sample()
        observation_next, reward, done, info = env.step(action)
        image = env.render(mode="rgb_array")  # also supports mode="human"
        ```
        
        # Environments
        
        The following environments are registered:
        
        - `"TrapTube-v0"` (base task)
        - `"PerceptualTrapTube-v0"`
        - `"StructuralTrapTube-v0"`
        - `"SymbolicTrapTube-v0"`
        - `"PerceptualSymbolicTrapTube-v0"`
        - `"StructuralSymbolicTrapTube-v0"`
        - `"PerceptualStructuralTrapTube-v0"`
        - `"PerceptualStructuralSymbolicTrapTube-v0"`
        
        # Baselines
        
        Baseline implementations here: https://github.com/fomorians/tool-use
        
        # Development
        
        Development is started with `pipenv`.
        
        ```sh
        $ pipenv install
        $ pipenv shell
        ```
        
Keywords: gym,pycolab,reinforcement-learning,tool-use
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Description-Content-Type: text/markdown
