Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guillaumegenthial/q-transfer

CS238 Final Project - Transfer of Q values between tasks
https://github.com/guillaumegenthial/q-transfer

Last synced: about 24 hours ago
JSON representation

CS238 Final Project - Transfer of Q values between tasks

Awesome Lists containing this project

README

        

# Multi-task Q transfer

Fork of gym repo, with mountain_car.py modified in `gym/gym/envs/classic_control`

## Installation
For simplicity, gym repo is cloned in the repo. To install project,

```
git clone https://github.com/GuillaumeGenthial/Q-transfer.git
cd Q-transfer/gym
python setup.py develop
cd ..
```

## Global approximation methods

Files are under the `global_approximation` repository.
To run experience with a specified config file

```
python main.py path_to_config_file
```

## Deep Q networks

Files are under the `deep` repository.
To run experience with a specified config file,

```
python main_deep.py path_to_config_file
```