Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/guillaumegenthial/q-transfer
- Owner: guillaumegenthial
- Created: 2016-11-27T17:03:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-09T02:37:11.000Z (almost 8 years ago)
- Last Synced: 2024-11-05T15:50:26.392Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 2.28 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```