File size: 1,161 Bytes
b3509ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from swarmai.utils.memory.InternalMemoryBase import InternalMemoryBase
import uuid

class DictInternalMemory(InternalMemoryBase):

    def __init__(self, n_entries):
        """Initialize the internal memory. In the current architecture the memory always consists of a set of soltuions or evaluations.
        Simple key-value store for now.
        """
        super().__init__(n_entries)
        self.data = {}

    def add_entry(self, score, content):
        """Add an entry to the internal memory.
        """
        random_key = str(uuid.uuid4())
        self.data[random_key] = {"score": score, "content": content}

        # keep only the best n entries
        sorted_data = sorted(self.data.items(), key=lambda x: x[1]["score"], reverse=True)
        self.data = dict(sorted_data[:self.n_entries])
    
    def get_top_n(self, n):
        """Get the top n entries from the internal memory.
        """
        sorted_data = sorted(self.data.items(), key=lambda x: x[1]["score"], reverse=True)
        return sorted_data[:n]
    
    def len(self):
        """Get the number of entries in the internal memory.
        """
        return len(self.data)