Source code for rlgraph.components.memories.memory

# Copyright 2018 The RLgraph authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

from rlgraph.components.component import Component, rlgraph_api


[docs]class Memory(Component): """ Abstract memory component. API: insert_records(records) -> Triggers an insertion of records into the memory. get_records(num_records) -> Returns `num_records` records from the memory. """ def __init__(self, capacity=1000, scope="memory", **kwargs): """ Args: capacity (int): Maximum capacity of the memory. """ super(Memory, self).__init__(scope=scope, **kwargs) # Variables (will be populated in create_variables). self.record_space = None self.record_registry = None self.capacity = capacity
[docs] def create_variables(self, input_spaces, action_space=None): # Store our record-space for convenience. self.record_space = input_spaces["records"] # Create the main memory as a flattened OrderedDict from any arbitrarily nested Space. self.record_registry = self.get_variable( name="memory", trainable=False, from_space=self.record_space, flatten=True, add_batch_rank=self.capacity, initializer=0 )
@rlgraph_api(flatten_ops=True) def _graph_fn_insert_records(self, records): """ Inserts one or more complex records. Args: records (FlattenedDataOp): FlattenedDataOp containing record data. Keys must match keys in record space. """ raise NotImplementedError @rlgraph_api def _graph_fn_get_records(self, num_records=1): """ Returns a number of records according to the retrieval strategy implemented by the memory. Args: num_records (int): Number of records to return. Returns: DataOpDict: The retrieved records. """ raise NotImplementedError @rlgraph_api def _graph_fn_get_episodes(self, num_episodes=1): """ Retrieves a given number of episodes. Args: num_episodes (int): Number of episodes to retrieve. Returns: The retrieved episodes. """ pass @rlgraph_api def _graph_fn_clear(self): """ Removes all entries from memory. """ # Optional? pass