Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrea committed Aug 27, 2018
1 parent f081afd commit 6f0b20d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ matrix:

## uncomment the following lines to override the default test script
#script:
# - julia -e 'Pkg.clone(pwd()); Pkg.build("RLEnvGym"); Pkg.test("RLEnvGym"; coverage=true)'
# - julia -e 'Pkg.clone(pwd()); Pkg.build("ReinforcementLearningEnvironmentGym"); Pkg.test("ReinforcementLearningEnvironmentGym"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("RLEnvGym")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("ReinforcementLearningEnvironmentGym")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("RLEnvGym")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'cd(Pkg.dir("ReinforcementLearningEnvironmentGym")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The RLEnvGym.jl package is licensed under the MIT "Expat" License:
The ReinforcementLearningEnvironmentGym.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2018: Johanni Brea.
>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# RLEnvGym
# ReinforcementLearningEnvironmentGym

[![Build Status](https://travis-ci.com/JuliaReinforcementLearning/RLEnvGym.jl.svg?branch=master)](https://travis-ci.com/JuliaReinforcementLearning/RLEnvGym.jl)
[![Build Status](https://travis-ci.com/JuliaReinforcementLearning/ReinforcementLearningEnvironmentGym.jl.svg?branch=master)](https://travis-ci.com/JuliaReinforcementLearning/ReinforcementLearningEnvironmentGym.jl)

[![Coverage Status](https://coveralls.io/repos/JuliaReinforcementLearning/RLEnvGym.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaReinforcementLearning/RLEnvGym.jl?branch=master)
[![Coverage Status](https://coveralls.io/repos/JuliaReinforcementLearning/ReinforcementLearningEnvironmentGym.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaReinforcementLearning/ReinforcementLearningEnvironmentGym.jl?branch=master)

[![codecov.io](http://codecov.io/github/JuliaReinforcementLearning/RLEnvGym.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaReinforcementLearning/RLEnvGym.jl?branch=master)
[![codecov.io](http://codecov.io/github/JuliaReinforcementLearning/ReinforcementLearningEnvironmentGym.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaReinforcementLearning/ReinforcementLearningEnvironmentGym.jl?branch=master)

Making the [OpenAI gym](https://github.com/openai/gym) environments available to the [Julia Reinforcement Learning](https://github.com/jbrea/ReinforcementLearning.jl) package.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo();
Pkg.clone(pwd(), \"RLEnvGym\"); Pkg.build(\"RLEnvGym\")"
Pkg.clone(pwd(), \"ReinforcementLearningEnvironmentGym\"); Pkg.build(\"ReinforcementLearningEnvironmentGym\")"

test_script:
- C:\projects\julia\bin\julia -e "Pkg.test(\"RLEnvGym\")"
- C:\projects\julia\bin\julia -e "Pkg.test(\"ReinforcementLearningEnvironmentGym\")"
4 changes: 2 additions & 2 deletions examples/cartpole.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Using PyCall is rather slow. Please compare to https://github.com/JuliaReinforcementLearning/RLEnvClassicControl.jl/blob/master/examples/cartpole.jl
using RLEnvGym
# Using PyCall is rather slow. Please compare to https://github.com/JuliaReinforcementLearning/ReinforcementLearningEnvironmentClassicControl.jl/blob/master/examples/cartpole.jl
using ReinforcementLearningEnvironmentGym

env = GymEnv("CartPole-v0")
rlsetup = RLSetup(ActorCriticPolicyGradient(ns = 4, na = 2, α = .02,
Expand Down
2 changes: 1 addition & 1 deletion examples/cartpoleDQN.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using RLEnvGym, Flux
using ReinforcementLearningEnvironmentGym, Flux
# List all envs

listallenvs()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RLEnvGym
module ReinforcementLearningEnvironmentGym
using Reexport
@reexport using ReinforcementLearning
import ReinforcementLearning:interact!, reset!, getstate, plotenv
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using RLEnvGym
using ReinforcementLearningEnvironmentGym
@static if VERSION < v"0.7.0-DEV.2005"
using Base.Test
else
using Test
end

import RLEnvGym: reset!, interact!, getstate
import ReinforcementLearningEnvironmentGym: reset!, interact!, getstate
for x in ["CartPole-v0"]
env = GymEnv(x)
reset!(env)
Expand Down

0 comments on commit 6f0b20d

Please sign in to comment.