當前位置: 首頁>>代碼示例>>Python>>正文


Python segment_tree.MinSegmentTree方法代碼示例

本文整理匯總了Python中baselines.common.segment_tree.MinSegmentTree方法的典型用法代碼示例。如果您正苦於以下問題:Python segment_tree.MinSegmentTree方法的具體用法?Python segment_tree.MinSegmentTree怎麽用?Python segment_tree.MinSegmentTree使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在baselines.common.segment_tree的用法示例。


在下文中一共展示了segment_tree.MinSegmentTree方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def __init__(self,
                 limit,
                 alpha,
                 transition_small_epsilon=1e-6,
                 demo_epsilon=0.2,
                 nb_rollout_steps=100):
        super(PrioritizedMemory, self).__init__(limit, nb_rollout_steps)
        assert alpha > 0
        self._alpha = alpha
        self._transition_small_epsilon = transition_small_epsilon
        self._demo_epsilon = demo_epsilon
        it_capacity = 1
        while it_capacity < self.maxsize:
            it_capacity *= 2  # Size must be power of 2
        self._it_sum = SumSegmentTree(it_capacity)
        self._it_min = MinSegmentTree(it_capacity)
        self._max_priority = 1.0 
開發者ID:JanMatas,項目名稱:Rainbow_ddpg,代碼行數:19,代碼來源:prioritized_memory.py

示例2: __init__

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def __init__(self, size, alpha, epsilon, timesteps, initial_p, final_p):
        super(DoublePrioritizedReplayBuffer, self).__init__(size)
        assert alpha > 0
        self._alpha = alpha
        self._epsilon = epsilon
        self._beta_schedule = LinearSchedule(timesteps, initial_p=initial_p, final_p=final_p)
        it_capacity = 1
        while it_capacity < size:
            it_capacity *= 2

        self._it_sum = SumSegmentTree(it_capacity)
        self._it_min = MinSegmentTree(it_capacity)
        self._max_priority = 1.0

        self._it_sum2 = SumSegmentTree(it_capacity)
        self._it_min2 = MinSegmentTree(it_capacity)
        self._max_priority2 = 1.0 
開發者ID:fabiopardo,項目名稱:qmap,代碼行數:19,代碼來源:replay_buffers.py

示例3: __init__

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def __init__(self, size, alpha):
        """Create Prioritized Replay buffer.
        Parameters
        ----------
        size: int
            Max number of transitions to store in the buffer. When the buffer
            overflows the old memories are dropped.
        alpha: float
            how much prioritization is used
            (0 - no prioritization, 1 - full prioritization)
        See Also
        --------
        ReplayBuffer.__init__
        """
        super(PrioritizedReplayBuffer, self).__init__(size)
        assert alpha > 0
        self._alpha = alpha

        it_capacity = 1
        while it_capacity < size:
            it_capacity *= 2

        self._it_sum = SumSegmentTree(it_capacity)
        self._it_min = MinSegmentTree(it_capacity)
        self._max_priority = 1.0 
開發者ID:junhyukoh,項目名稱:self-imitation-learning,代碼行數:27,代碼來源:self_imitation.py

示例4: __init__

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def __init__(self, size, alpha):
        """Create Prioritized Replay buffer.

        Parameters
        ----------
        size: int
            Max number of transitions to store in the buffer. When the buffer
            overflows the old memories are dropped.
        alpha: float
            how much prioritization is used
            (0 - no prioritization, 1 - full prioritization)

        See Also
        --------
        ReplayBuffer.__init__
        """
        super(PrioritizedReplayBuffer, self).__init__(size)
        assert alpha > 0
        self._alpha = alpha

        it_capacity = 1
        while it_capacity < size:
            it_capacity *= 2

        self._it_sum = SumSegmentTree(it_capacity)
        self._it_min = MinSegmentTree(it_capacity)
        self._max_priority = 1.0 
開發者ID:Hwhitetooth,項目名稱:lirpg,代碼行數:29,代碼來源:replay_buffer.py

示例5: test_max_interval_tree

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def test_max_interval_tree():
    tree = MinSegmentTree(4)

    tree[0] = 1.0
    tree[2] = 0.5
    tree[3] = 3.0

    assert np.isclose(tree.min(), 0.5)
    assert np.isclose(tree.min(0, 2), 1.0)
    assert np.isclose(tree.min(0, 3), 0.5)
    assert np.isclose(tree.min(0, -1), 0.5)
    assert np.isclose(tree.min(2, 4), 0.5)
    assert np.isclose(tree.min(3, 4), 3.0)

    tree[2] = 0.7

    assert np.isclose(tree.min(), 0.7)
    assert np.isclose(tree.min(0, 2), 1.0)
    assert np.isclose(tree.min(0, 3), 0.7)
    assert np.isclose(tree.min(0, -1), 0.7)
    assert np.isclose(tree.min(2, 4), 0.7)
    assert np.isclose(tree.min(3, 4), 3.0)

    tree[2] = 4.0

    assert np.isclose(tree.min(), 1.0)
    assert np.isclose(tree.min(0, 2), 1.0)
    assert np.isclose(tree.min(0, 3), 1.0)
    assert np.isclose(tree.min(0, -1), 1.0)
    assert np.isclose(tree.min(2, 4), 3.0)
    assert np.isclose(tree.min(2, 3), 4.0)
    assert np.isclose(tree.min(2, -1), 4.0)
    assert np.isclose(tree.min(3, 4), 3.0) 
開發者ID:Hwhitetooth,項目名稱:lirpg,代碼行數:35,代碼來源:test_segment_tree.py

示例6: __init__

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def __init__(self, size, alpha):
        """Create Prioritized Replay buffer.

        Parameters
        ----------
        size: int
            Max number of transitions to store in the buffer. When the buffer
            overflows the old memories are dropped.
        alpha: float
            how much prioritization is used
            (0 - no prioritization, 1 - full prioritization)

        See Also
        --------
        ReplayBuffer.__init__
        """
        super(PrioritizedReplayBuffer, self).__init__(size)
        assert alpha >= 0
        self._alpha = alpha

        it_capacity = 1
        while it_capacity < size:
            it_capacity *= 2

        self._it_sum = SumSegmentTree(it_capacity)
        self._it_min = MinSegmentTree(it_capacity)
        self._max_priority = 1.0 
開發者ID:MaxSobolMark,項目名稱:HardRLWithYoutube,代碼行數:29,代碼來源:replay_buffer.py

示例7: __init__

# 需要導入模塊: from baselines.common import segment_tree [as 別名]
# 或者: from baselines.common.segment_tree import MinSegmentTree [as 別名]
def __init__(self, size, alpha):
        super(PrioritizedReplayBuffer, self).__init__(size)
        assert alpha > 0
        self._alpha = alpha
        it_capacity = 1
        while it_capacity < size:
            it_capacity *= 2
        self._it_sum = SumSegmentTree(it_capacity)
        self._it_min = MinSegmentTree(it_capacity)
        self._max_priority = 1.0 
開發者ID:TianhongDai,項目名稱:self-imitation-learning-pytorch,代碼行數:12,代碼來源:sil_module.py


注:本文中的baselines.common.segment_tree.MinSegmentTree方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。