From 5ab2fa3b653b80c2657dd1dece897e15f07eb949 Mon Sep 17 00:00:00 2001 From: haoshengzou Date: Tue, 27 Feb 2018 14:46:02 +0800 Subject: [PATCH] minor fixes --- tianshou/data/advantage_estimation.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tianshou/data/advantage_estimation.py b/tianshou/data/advantage_estimation.py index eafc30d..2f7f2ed 100644 --- a/tianshou/data/advantage_estimation.py +++ b/tianshou/data/advantage_estimation.py @@ -73,7 +73,6 @@ class nstep_return: def __call__(self, buffer, index=None): """ - naively compute full return :param buffer: buffer with property index and data. index determines the current content in `buffer`. :param index: (sampled) index to be computed. Defaults to all the data in `buffer`. Not necessarily in order within each episode. @@ -93,7 +92,6 @@ class ddpg_return: def __call__(self, buffer, index=None): """ - naively compute full return :param buffer: buffer with property index and data. index determines the current content in `buffer`. :param index: (sampled) index to be computed. Defaults to all the data in `buffer`. Not necessarily in order within each episode. @@ -113,7 +111,6 @@ class nstep_q_return: def __call__(self, buffer, index=None): """ - naively compute full return :param buffer: buffer with property index and data. index determines the current content in `buffer`. :param index: (sampled) index to be computed. Defaults to all the data in `buffer`. Not necessarily in order within each episode.