@File : _base_archive.py @Time : 2024/06/07 12:17:34 @Author : Alejandro Marrero @Version : 1.0 @Contact : amarrerd@ull.edu.es @License : (C)Copyright 2024, Alejandro Marrero @Desc : None
Archive
Class Archive Stores a collection of diverse Instances
Source code in digneapy/archives/_base_archive.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
__array__(dtype=Instance, copy=True)
Creates a ndarray with the descriptors
import numpy as np descriptors = [list(range(d, d + 5)) for d in range(10)] archive = Archive(descriptors) np_archive = np.array(archive) assert len(np_archive) == len(archive) assert type(np_archive) == type(np.zeros(1))
Source code in digneapy/archives/_base_archive.py
74 75 76 77 78 79 80 81 82 83 84 |
|
__bool__()
Returns True if len(self) > 1
descriptors = [list(range(d, d + 5)) for d in range(10)] archive = Archive(threshold=0.0, instances=descriptors) empty_archive = Archive(threshold=0.0)
assert archive assert not empty_archive
Source code in digneapy/archives/_base_archive.py
107 108 109 110 111 112 113 114 115 116 117 |
|
__eq__(other)
Compares whether to Archives are equal
import copy variables = [list(range(d, d + 5)) for d in range(10)] instances = [Instance(variables=v, s=1.0) for v in variables] archive = Archive(threshold=0.0, instances=instances) empty_archive = Archive(threshold=0.0)
a1 = copy.copy(archive) assert a1 == archive assert empty_archive != archive
Source code in digneapy/archives/_base_archive.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
|
__init__(threshold, instances=None, dtype=np.float64)
Creates an instance of a Archive (unstructured) for QD algorithms
Parameters: |
|
---|
Source code in digneapy/archives/_base_archive.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
extend(iterable)
Extends the current archive with all the individuals inside iterable that have a sparseness value greater than the archive threshold.
Parameters: |
|
---|
Source code in digneapy/archives/_base_archive.py
133 134 135 136 137 138 139 140 |
|
to_json()
Converts the archive into a JSON object
Returns: |
|
---|
Source code in digneapy/archives/_base_archive.py
156 157 158 159 160 161 162 163 |
|