1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

docs update + removing unused code from parallel_actor

This commit is contained in:
Gal Leibovich
2017-10-19 16:32:13 +03:00
parent f7979b05e4
commit 8c708820a9
4 changed files with 2 additions and 10 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -2,7 +2,7 @@
## Motivation ## Motivation
Enable easy design and training of state-of-the-art reinforcement learning algorithms with multiple environments Train and evaluate reinforcement learning agents by harnessing the power of multi-core CPU processing to achieve state-of-the-art results. Provide a sandbox for easing the development process of new algorithms through a modular design and an elegant set of APIs.
## Solution ## Solution

View File

@@ -1,5 +1,5 @@
site_name: Reinforcement Learning Coach Documentation site_name: Reinforcement Learning Coach Documentation
theme: material theme: readthedocs
site_description: 'Reinforcement Learning Coach Documentation by Intel Nervana.' site_description: 'Reinforcement Learning Coach Documentation by Intel Nervana.'
markdown_extensions: markdown_extensions:
- mdx_math: - mdx_math:

View File

@@ -29,14 +29,6 @@ import shutil
start_time = time.time() start_time = time.time()
# Disables write_meta_graph argument, which freezes entire process and is mostly useless.
class FastSaver(tf.train.Saver):
def save(self, sess, save_path, global_step=None, latest_filename=None,
meta_graph_suffix="meta", write_meta_graph=True):
super(FastSaver, self).save(sess, save_path, global_step, latest_filename,
meta_graph_suffix, False)
if __name__ == "__main__": if __name__ == "__main__":
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument('--ps_hosts', parser.add_argument('--ps_hosts',