• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rlworkgroup / garage
64%

Build:
DEFAULT BRANCH: master
Repo Added 27 Aug 2018 02:54AM UTC
Files 239
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH master
branch: master
CHANGE BRANCH
x
Reset
  • master
  • 2018.10
  • Automated_Benchmarking_normalized
  • GautamDev
  • IndexedSlices_warning
  • add_baseline
  • add_changelog
  • add_cnn
  • add_cnn_progress
  • add_dict_support
  • add_erwr
  • add_init
  • add_param
  • add_tnpg
  • add_vanilla_loss
  • add_wrappers
  • add_wrappers_progress
  • automated-benchmarking
  • backport-415
  • backport-418
  • backport-426
  • backport-434
  • backport-434-446
  • backport-544
  • backport-pr-418
  • backport_622_201810
  • backup_exp_runner
  • bc
  • behavioral_cloning
  • behavioral_cloning_ag
  • benchmark
  • box2d-install
  • box2d_install_linux
  • bugs_ryan
  • bump_gym
  • changelog_2018101
  • check_modules
  • clean_mujoco_conv_import
  • codecov
  • copy_actions
  • dead_code
  • decouple_sampler_from_algo
  • deterministicMLP
  • dm_comtrol-mujoco_1.5
  • dqn
  • dqn_2
  • dqn_benchmark
  • dqn_debug
  • dqn_testing
  • dqn_tf
  • dyn_rand_nested
  • epilson_greedy
  • epsilon_greedy
  • eric-torch
  • example_shebang
  • exp_runner
  • fix-install
  • fix-logging
  • fix-scripts
  • fix_copy_mjkey
  • fix_dm_control
  • fix_docker_ci
  • fix_failed_tests
  • fix_flake8_exclude
  • fix_gcc_osx
  • fix_lasagne_import
  • fix_lbfgs
  • fix_mujoco_import
  • fix_off_policy_sampler
  • fix_pickled_openai
  • fix_pol_ent
  • fix_pol_re
  • fix_pol_std
  • fix_precommit
  • fix_replay_buffer
  • fix_sampler
  • fix_setup_osx
  • fix_sleeping_proc
  • fix_test_quirks
  • fix_travis_tests
  • fix_vpg_ddpg
  • fix_vvpg_v
  • flake8-refactor
  • flaky_tests
  • formater
  • garage_docker
  • garage_experiment
  • garage_model
  • ignore_egg_info
  • ignore_flake8_D107
  • kill_stub
  • latest_reps
  • logger_decouple_tensorboard
  • make_test
  • maml
  • meta_learning
  • mjpro200
  • model_benchmark
  • model_fix_pickle
  • models
  • models_embed
  • models_gautam
  • models_new
  • models_progress
  • models_ryan
  • move_dm_tests
  • move_nb_utils
  • multitask_env
  • new-logger
  • new_dm_control
  • newer-logger
  • no_docker_opengl
  • not_scripts
  • ppo-test
  • pr420
  • pre_commit-flake8
  • product_to_tuple
  • randomized_env_test
  • refactor_imports
  • release-2018.10
  • remove-most-envs
  • remove_gym_dupes
  • remove_horizon
  • remove_layer_ddpg_test
  • remove_layers
  • remove_layers_lstm
  • remove_mjkey_check
  • remove_sawyer
  • remove_theano
  • rename_macos
  • reps
  • revert-430-backport-418
  • setup_py
  • tb_images
  • td3
  • test_bug
  • test_bug_wip
  • test_keras
  • test_keras_local
  • tf112
  • theano-gpu
  • torch
  • torch-rlkit
  • tsan
  • uint8_support
  • uint8_test
  • unused-deps
  • update-contributing
  • update-docs
  • update_gitignore
  • v2018.10
  • v2018.10.0
  • v2018.10.1
  • viskit_flake8

pending completion
4456

push

travis-ci-com

ryanjulian
Remove unused dependencies from setup.py

This PR removes apparently-unused dependencies from setup.py. This
should help keep install times and image sizes down to a minimum.

I determined whether a dependency is imported by grepping the codebase
with each library's root package name. I also removed all command line
-only utilities which are not importable libraries used by garage. If a
user wishes to keep those, they can always install them in their own
environment.

8468 of 13229 relevant lines covered (64.01%)

0.64 hits per line

Relevant lines Covered
Build:
Build:
13229 RELEVANT LINES 8468 COVERED LINES
0.64 HITS PER LINE
Source Files on master
Detailed source file information is not available for this build.

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
4456 master Remove unused dependencies from setup.py This PR removes apparently-unused dependencies from setup.py. This should help keep install times and image sizes down to a minimum. I determined whether a dependency is imported by grepping the codebase ... push 23 Feb 2019 01:28AM UTC ryanjulian travis-ci-com pending completion  
4444 master Model class for TensorFlow (#512) * Garage Model * Base model class * A example of gaussian_mlp_model based on garage model * Unit tests * Fix comments * Added unit test on how gaussian mlp policy with model looks like. * Added more u... push 21 Feb 2019 09:52PM UTC krzentner travis-ci-com pending completion  
4384 master Ensure that all env tests call close() push 15 Feb 2019 05:20AM UTC ryanjulian travis-ci-com pending completion  
4343 master Change style guide to prefer single-quoted strings * Single quotes seem to be more popular in general among the Python community e.g. https://www.kennethreitz.org/essays/if-i-could-amend-pep-8 * There is automated tooling for single quotes, but... push 14 Feb 2019 03:18AM UTC ryanjulian travis-ci-com pending completion  
4327 master Add matplotlib support to TensorBoardLogger (#510) * Add matplotlib support to TensorBoardLogger Note: this is pretty slow * Adding log line * Add test for record_matplotlib push 08 Feb 2019 12:44AM UTC krzentner travis-ci-com pending completion  
4276 master Remove some envs which duplicate openai/gym This PR removes custom environments which are readily available in openai/gym. Some of the gym environments have slightly different action and observation spaces (e.g. categorical vs continuous), but ar... push 06 Feb 2019 01:33AM UTC ryanjulian travis-ci-com pending completion  
4264 master Add tf/REPS (#471) Add Relative Entropy Policy Search to garage/tf. It is the same as garage theano/REPS except for RNN policy support. The RNN support will be added after the RNN primitives in tf have tested. push 05 Feb 2019 11:12PM UTC web-flow travis-ci-com pending completion  
4259 master Fix LbfgsOptimizer namescope (#506) push 05 Feb 2019 09:54PM UTC web-flow travis-ci-com pending completion  
4221 master Update .gitignore push 03 Feb 2019 05:42AM UTC ryanjulian travis-ci-com pending completion  
4218 master Move dependencies to setup.py This PR adds a canonical setup.py file and moves garage dependency lists into that file. environment.yml is now just a container which installs the dependencies according to setup.py * Updates Dockerfiles for new co... push 03 Feb 2019 03:23AM UTC ryanjulian travis-ci-com pending completion  
See All Builds (1528)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc