├── .gitignore ├── docs └── imgs │ ├── design.png │ └── window.jpg ├── src └── DistributedReinforcementLearning.jl ├── test └── runtests.jl ├── Project.toml ├── .github └── workflows │ ├── TagBot.yml │ └── CompatHelper.yml ├── .travis.yml ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /Manifest.toml 2 | -------------------------------------------------------------------------------- /docs/imgs/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmyway/DistributedReinforcementLearning.jl/master/docs/imgs/design.png -------------------------------------------------------------------------------- /docs/imgs/window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/findmyway/DistributedReinforcementLearning.jl/master/docs/imgs/window.jpg -------------------------------------------------------------------------------- /src/DistributedReinforcementLearning.jl: -------------------------------------------------------------------------------- 1 | module DistributedReinforcementLearning 2 | 3 | # Write your package code here. 4 | 5 | end 6 | -------------------------------------------------------------------------------- /test/runtests.jl: -------------------------------------------------------------------------------- 1 | using DistributedReinforcementLearning 2 | using Test 3 | 4 | @testset "DistributedReinforcementLearning.jl" begin 5 | # Write your tests here. 6 | end 7 | -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- 1 | name = "DistributedReinforcementLearning" 2 | uuid = "4d01364a-afc1-4828-a15a-b5219e90899b" 3 | authors = ["Jun Tian and contributors"] 4 | version = "0.1.0" 5 | 6 | [compat] 7 | julia = "1" 8 | 9 | [extras] 10 | Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" 11 | 12 | [targets] 13 | test = ["Test"] 14 | -------------------------------------------------------------------------------- /.github/workflows/TagBot.yml: -------------------------------------------------------------------------------- 1 | name: TagBot 2 | on: 3 | schedule: 4 | - cron: 0 0 * * * 5 | workflow_dispatch: 6 | jobs: 7 | TagBot: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: JuliaRegistries/TagBot@v1 11 | with: 12 | token: ${{ secrets.GITHUB_TOKEN }} 13 | ssh: ${{ secrets.DOCUMENTER_KEY }} 14 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # Documentation: http://docs.travis-ci.com/user/languages/julia 2 | language: julia 3 | notifications: 4 | email: false 5 | julia: 6 | - 1.0 7 | - 1.5 8 | - nightly 9 | os: 10 | - linux 11 | - osx 12 | - windows 13 | arch: 14 | - x64 15 | cache: 16 | directories: 17 | - ~/.julia/artifacts 18 | jobs: 19 | fast_finish: true 20 | allow_failures: 21 | - julia: nightly 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 |

If it works, it works everywhere!

4 |
5 | 6 |
7 |

8 | 9 | 10 | 11 |

12 | 13 | ## Design 14 | 15 | ![](./docs/imgs/design.png) -------------------------------------------------------------------------------- /.github/workflows/CompatHelper.yml: -------------------------------------------------------------------------------- 1 | name: CompatHelper 2 | on: 3 | schedule: 4 | - cron: 0 0 * * * 5 | workflow_dispatch: 6 | jobs: 7 | CompatHelper: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Pkg.add("CompatHelper") 11 | run: julia -e 'using Pkg; Pkg.add("CompatHelper")' 12 | - name: CompatHelper.main() 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 15 | COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} 16 | run: julia -e 'using CompatHelper; CompatHelper.main()' 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Jun Tian and contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------