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 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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
|
"""Mutation classes, that mutate the elements in the supplied
atoms objects."""
import numpy as np
from ase.data import atomic_numbers
from ase.ga.offspring_creator import OffspringCreator
def chunks(l, n):
"""split a list into smaller chunks"""
return [l[i:i + n] for i in range(0, len(l), n)]
class ElementMutation(OffspringCreator):
"""The base class for all operators where the elements
of the atoms objects are mutated"""
def __init__(self, element_pool, max_diff_elements,
min_percentage_elements, verbose, num_muts=1, rng=np.random):
OffspringCreator.__init__(self, verbose, num_muts=num_muts, rng=rng)
if not isinstance(element_pool[0], (list, np.ndarray)):
self.element_pools = [element_pool]
else:
self.element_pools = element_pool
if max_diff_elements is None:
self.max_diff_elements = [1e6 for _ in self.element_pools]
elif isinstance(max_diff_elements, int):
self.max_diff_elements = [max_diff_elements]
else:
self.max_diff_elements = max_diff_elements
assert len(self.max_diff_elements) == len(self.element_pools)
if min_percentage_elements is None:
self.min_percentage_elements = [0 for _ in self.element_pools]
elif isinstance(min_percentage_elements, (int, float)):
self.min_percentage_elements = [min_percentage_elements]
else:
self.min_percentage_elements = min_percentage_elements
assert len(self.min_percentage_elements) == len(self.element_pools)
self.min_inputs = 1
def get_new_individual(self, parents):
raise NotImplementedError
def get_mutation_index_list_and_choices(self, atoms):
"""Returns a list of the indices that are going to
be mutated and a list of possible elements to mutate
to. The lists obey the criteria set in the initialization.
"""
itbm_ok = False
while not itbm_ok:
itbm = self.rng.choice(range(len(atoms))) # index to be mutated
itbm_ok = True
for i, e in enumerate(self.element_pools):
if atoms[itbm].symbol in e:
elems = e[:]
elems_in, indices_in = zip(*[(a.symbol, a.index)
for a in atoms
if a.symbol in elems])
max_diff_elem = self.max_diff_elements[i]
min_percent_elem = self.min_percentage_elements[i]
if min_percent_elem == 0:
min_percent_elem = 1. / len(elems_in)
break
else:
itbm_ok = False
# Check that itbm obeys min/max criteria
diff_elems_in = len(set(elems_in))
if diff_elems_in == max_diff_elem:
# No more different elements allowed -> one element mutation
ltbm = [] # list to be mutated
for i in range(len(atoms)):
if atoms[i].symbol == atoms[itbm].symbol:
ltbm.append(i)
else:
# Fewer or too many different elements already
if self.verbose:
print(int(min_percent_elem * len(elems_in)),
min_percent_elem, len(elems_in))
all_chunks = chunks(indices_in,
int(min_percent_elem * len(elems_in)))
itbm_num_of_elems = 0
for a in atoms:
if a.index == itbm:
break
if a.symbol in elems:
itbm_num_of_elems += 1
ltbm = all_chunks[itbm_num_of_elems //
(int(min_percent_elem * len(elems_in))) - 1]
elems.remove(atoms[itbm].symbol)
return ltbm, elems
class RandomElementMutation(ElementMutation):
"""Mutation that exchanges an element with a randomly chosen element from
the supplied pool of elements
If the individual consists of different groups of elements the element
pool can be supplied as a list of lists
Parameters:
element_pool: List of elements in the phase space. The elements can be
grouped if the individual consist of different types of elements.
The list should then be a list of lists e.g. [[list1], [list2]]
max_diff_elements: The maximum number of different elements in the
individual. Default is infinite. If the elements are grouped
max_diff_elements should be supplied as a list with each input
corresponding to the elements specified in the same input in
element_pool.
min_percentage_elements: The minimum percentage of any element in the
individual. Default is any number is allowed. If the elements are
grouped min_percentage_elements should be supplied as a list with
each input corresponding to the elements specified in the same input
in element_pool.
rng: Random number generator
By default numpy.random.
Example: element_pool=[[A,B,C,D],[x,y,z]], max_diff_elements=[3,2],
min_percentage_elements=[.25, .5]
An individual could be "D,B,B,C,x,x,x,x,z,z,z,z"
"""
def __init__(self, element_pool, max_diff_elements=None,
min_percentage_elements=None, verbose=False,
num_muts=1, rng=np.random):
ElementMutation.__init__(self, element_pool, max_diff_elements,
min_percentage_elements, verbose,
num_muts=num_muts, rng=rng)
self.descriptor = 'RandomElementMutation'
def get_new_individual(self, parents):
f = parents[0]
indi = self.initialize_individual(f)
indi.info['data']['parents'] = [f.info['confid']]
ltbm, choices = self.get_mutation_index_list_and_choices(f)
new_element = self.rng.choice(choices)
for a in f:
if a.index in ltbm:
a.symbol = new_element
indi.append(a)
return (self.finalize_individual(indi),
self.descriptor + ': Parent {0}'.format(f.info['confid']))
def mendeleiev_table():
r"""
Returns the mendeleiev table as a python list of lists.
Each cell contains either None or a pair (symbol, atomic number),
or a list of pairs for the cells \* and \**.
"""
import re
elems = 'HHeLiBeBCNOFNeNaMgAlSiPSClArKCaScTiVCrMnFeCoNiCuZnGaGeAsSeBrKrRb'
elems += 'SrYZrNbMoTcRuRhPdAgCdInSnSbTeIXeCsBaLaCePrNdPmSmEuGdTbDyHoErTm'
elems += 'YbLuHfTaWReOsIrPtAuHgTlPbBiPoAtRnFrRaAcThPaUNpPuAmCmBkCfEsFmMd'
elems += 'NoLrRfDbSgBhHsMtDsRgUubUutUuqUupUuhUusUuo'
L = [(e, i + 1)
for (i, e) in enumerate(re.compile('[A-Z][a-z]*').findall(elems))]
for i, j in ((88, 103), (56, 71)):
L[i] = L[i:j]
L[i + 1:] = L[j:]
for i, j in ((12, 10), (4, 10), (1, 16)):
L[i:i] = [None] * j
return [L[18 * i:18 * (i + 1)] for i in range(7)]
def get_row_column(element):
"""Returns the row and column of the element in the periodic table.
Note that Lanthanides and Actinides are defined to be group (column)
3 elements"""
t = mendeleiev_table()
en = (element, atomic_numbers[element])
for i in range(len(t)):
for j in range(len(t[i])):
if en == t[i][j]:
return i, j
elif isinstance(t[i][j], list):
# Lanthanide or Actinide
if en in t[i][j]:
return i, 3
def get_periodic_table_distance(e1, e2):
rc1 = np.array(get_row_column(e1))
rc2 = np.array(get_row_column(e2))
return sum(np.abs(rc1 - rc2))
class MoveDownMutation(ElementMutation):
"""
Mutation that exchanges an element with an element one step
(or more steps if fewer is forbidden) down the same
column in the periodic table.
This mutation is introduced and used in:
P. B. Jensen et al., Phys. Chem. Chem. Phys., 16, 36, 19732-19740 (2014)
The idea behind is that elements close to each other in the
periodic table is chemically similar, and therefore exhibit
similar properties. An individual in the population is
typically close to fittest possible, exchanging an element
with a similar element will normally result in a slight
increase (or decrease) in fitness.
Parameters:
element_pool: List of elements in the phase space. The elements can be
grouped if the individual consist of different types of elements.
The list should then be a list of lists e.g. [[list1], [list2]]
max_diff_elements: The maximum number of different elements in the
individual. Default is infinite. If the elements are grouped
max_diff_elements should be supplied as a list with each input
corresponding to the elements specified in the same input in
element_pool.
min_percentage_elements: The minimum percentage of any element in the
individual. Default is any number is allowed. If the elements are
grouped min_percentage_elements should be supplied as a list with
each input corresponding to the elements specified in the same input
in element_pool.
rng: Random number generator
By default numpy.random.
Example: element_pool=[[A,B,C,D],[x,y,z]], max_diff_elements=[3,2],
min_percentage_elements=[.25, .5]
An individual could be "D,B,B,C,x,x,x,x,z,z,z,z"
"""
def __init__(self, element_pool, max_diff_elements=None,
min_percentage_elements=None, verbose=False,
num_muts=1, rng=np.random):
ElementMutation.__init__(self, element_pool, max_diff_elements,
min_percentage_elements, verbose,
num_muts=num_muts, rng=rng)
self.descriptor = 'MoveDownMutation'
def get_new_individual(self, parents):
f = parents[0]
indi = self.initialize_individual(f)
indi.info['data']['parents'] = [f.info['confid']]
ltbm, choices = self.get_mutation_index_list_and_choices(f)
# periodic table row, periodic table column
ptrow, ptcol = get_row_column(f[ltbm[0]].symbol)
popped = []
m = 0
for j in range(len(choices)):
e = choices[j - m]
row, column = get_row_column(e)
if row <= ptrow or column != ptcol:
# Throw away if above (lower numbered row)
# or in a different column in the periodic table
popped.append(choices.pop(j - m))
m += 1
used_descriptor = self.descriptor
if len(choices) == 0:
msg = '{0},{2} cannot be mutated by {1}, '
msg = msg.format(f.info['confid'],
self.descriptor,
f[ltbm[0]].symbol)
msg += 'doing random mutation instead'
if self.verbose:
print(msg)
used_descriptor = 'RandomElementMutation_from_{0}'
used_descriptor = used_descriptor.format(self.descriptor)
self.rng.shuffle(popped)
choices = popped
else:
# Sorting the element that lie below and in the same column
# in the periodic table so that the one closest below is first
choices.sort(key=lambda x: get_row_column(x)[0])
new_element = choices[0]
for a in f:
if a.index in ltbm:
a.symbol = new_element
indi.append(a)
return (self.finalize_individual(indi),
used_descriptor + ': Parent {0}'.format(f.info['confid']))
class MoveUpMutation(ElementMutation):
"""
Mutation that exchanges an element with an element one step
(or more steps if fewer is forbidden) up the same
column in the periodic table.
This mutation is introduced and used in:
P. B. Jensen et al., Phys. Chem. Chem. Phys., 16, 36, 19732-19740 (2014)
See MoveDownMutation for the idea behind
Parameters:
element_pool: List of elements in the phase space. The elements can be
grouped if the individual consist of different types of elements.
The list should then be a list of lists e.g. [[list1], [list2]]
max_diff_elements: The maximum number of different elements in the
individual. Default is infinite. If the elements are grouped
max_diff_elements should be supplied as a list with each input
corresponding to the elements specified in the same input in
element_pool.
min_percentage_elements: The minimum percentage of any element in the
individual. Default is any number is allowed. If the elements are
grouped min_percentage_elements should be supplied as a list with
each input corresponding to the elements specified in the same input
in element_pool.
rng: Random number generator
By default numpy.random.
Example: element_pool=[[A,B,C,D],[x,y,z]], max_diff_elements=[3,2],
min_percentage_elements=[.25, .5]
An individual could be "D,B,B,C,x,x,x,x,z,z,z,z"
"""
def __init__(self, element_pool, max_diff_elements=None,
min_percentage_elements=None, verbose=False, num_muts=1,
rng=np.random):
ElementMutation.__init__(self, element_pool, max_diff_elements,
min_percentage_elements, verbose,
num_muts=num_muts, rng=rng)
self.descriptor = 'MoveUpMutation'
def get_new_individual(self, parents):
f = parents[0]
indi = self.initialize_individual(f)
indi.info['data']['parents'] = [f.info['confid']]
ltbm, choices = self.get_mutation_index_list_and_choices(f)
# periodic table row, periodic table column
ptrow, ptcol = get_row_column(f[ltbm[0]].symbol)
popped = []
m = 0
for j in range(len(choices)):
e = choices[j - m]
row, column = get_row_column(e)
if row >= ptrow or column != ptcol:
# Throw away if below (higher numbered row)
# or in a different column in the periodic table
popped.append(choices.pop(j - m))
m += 1
used_descriptor = self.descriptor
if len(choices) == 0:
msg = '{0},{2} cannot be mutated by {1}, '
msg = msg.format(f.info['confid'],
self.descriptor,
f[ltbm[0]].symbol)
msg += 'doing random mutation instead'
if self.verbose:
print(msg)
used_descriptor = 'RandomElementMutation_from_{0}'
used_descriptor = used_descriptor.format(self.descriptor)
self.rng.shuffle(popped)
choices = popped
else:
# Sorting the element that lie above and in the same column
# in the periodic table so that the one closest above is first
choices.sort(key=lambda x: get_row_column(x)[0], reverse=True)
new_element = choices[0]
for a in f:
if a.index in ltbm:
a.symbol = new_element
indi.append(a)
return (self.finalize_individual(indi),
used_descriptor + ': Parent {0}'.format(f.info['confid']))
class MoveRightMutation(ElementMutation):
"""
Mutation that exchanges an element with an element one step
(or more steps if fewer is forbidden) to the right in the
same row in the periodic table.
This mutation is introduced and used in:
P. B. Jensen et al., Phys. Chem. Chem. Phys., 16, 36, 19732-19740 (2014)
See MoveDownMutation for the idea behind
Parameters:
element_pool: List of elements in the phase space. The elements can be
grouped if the individual consist of different types of elements.
The list should then be a list of lists e.g. [[list1], [list2]]
max_diff_elements: The maximum number of different elements in the
individual. Default is infinite. If the elements are grouped
max_diff_elements should be supplied as a list with each input
corresponding to the elements specified in the same input in
element_pool.
min_percentage_elements: The minimum percentage of any element in the
individual. Default is any number is allowed. If the elements are
grouped min_percentage_elements should be supplied as a list with
each input corresponding to the elements specified in the same input
in element_pool.
rng: Random number generator
By default numpy.random.
Example: element_pool=[[A,B,C,D],[x,y,z]], max_diff_elements=[3,2],
min_percentage_elements=[.25, .5]
An individual could be "D,B,B,C,x,x,x,x,z,z,z,z"
"""
def __init__(self, element_pool, max_diff_elements=None,
min_percentage_elements=None, verbose=False, num_muts=1,
rng=np.random):
ElementMutation.__init__(self, element_pool, max_diff_elements,
min_percentage_elements, verbose,
num_muts=num_muts, rng=rng)
self.descriptor = 'MoveRightMutation'
def get_new_individual(self, parents):
f = parents[0]
indi = self.initialize_individual(f)
indi.info['data']['parents'] = [f.info['confid']]
ltbm, choices = self.get_mutation_index_list_and_choices(f)
# periodic table row, periodic table column
ptrow, ptcol = get_row_column(f[ltbm[0]].symbol)
popped = []
m = 0
for j in range(len(choices)):
e = choices[j - m]
row, column = get_row_column(e)
if row != ptrow or column <= ptcol:
# Throw away if to the left (a lower numbered column)
# or in a different row in the periodic table
popped.append(choices.pop(j - m))
m += 1
used_descriptor = self.descriptor
if len(choices) == 0:
msg = '{0},{2} cannot be mutated by {1}, '
msg = msg.format(f.info['confid'],
self.descriptor,
f[ltbm[0]].symbol)
msg += 'doing random mutation instead'
if self.verbose:
print(msg)
used_descriptor = 'RandomElementMutation_from_{0}'
used_descriptor = used_descriptor.format(self.descriptor)
self.rng.shuffle(popped)
choices = popped
else:
# Sorting so the element closest to the right is first
choices.sort(key=lambda x: get_row_column(x)[1])
new_element = choices[0]
for a in f:
if a.index in ltbm:
a.symbol = new_element
indi.append(a)
return (self.finalize_individual(indi),
used_descriptor + ': Parent {0}'.format(f.info['confid']))
class MoveLeftMutation(ElementMutation):
"""
Mutation that exchanges an element with an element one step
(or more steps if fewer is forbidden) to the left in the
same row in the periodic table.
This mutation is introduced and used in:
P. B. Jensen et al., Phys. Chem. Chem. Phys., 16, 36, 19732-19740 (2014)
See MoveDownMutation for the idea behind
Parameters:
element_pool: List of elements in the phase space. The elements can be
grouped if the individual consist of different types of elements.
The list should then be a list of lists e.g. [[list1], [list2]]
max_diff_elements: The maximum number of different elements in the
individual. Default is infinite. If the elements are grouped
max_diff_elements should be supplied as a list with each input
corresponding to the elements specified in the same input in
element_pool.
min_percentage_elements: The minimum percentage of any element in the
individual. Default is any number is allowed. If the elements are
grouped min_percentage_elements should be supplied as a list with
each input corresponding to the elements specified in the same input
in element_pool.
rng: Random number generator
By default numpy.random.
Example: element_pool=[[A,B,C,D],[x,y,z]], max_diff_elements=[3,2],
min_percentage_elements=[.25, .5]
An individual could be "D,B,B,C,x,x,x,x,z,z,z,z"
"""
def __init__(self, element_pool, max_diff_elements=None,
min_percentage_elements=None, verbose=False, num_muts=1,
rng=np.random):
ElementMutation.__init__(self, element_pool, max_diff_elements,
min_percentage_elements, verbose,
num_muts=num_muts, rng=rng)
self.descriptor = 'MoveLeftMutation'
def get_new_individual(self, parents):
f = parents[0]
indi = self.initialize_individual(f)
indi.info['data']['parents'] = [f.info['confid']]
ltbm, choices = self.get_mutation_index_list_and_choices(f)
# periodic table row, periodic table column
ptrow, ptcol = get_row_column(f[ltbm[0]].symbol)
popped = []
m = 0
for j in range(len(choices)):
e = choices[j - m]
row, column = get_row_column(e)
if row != ptrow or column >= ptcol:
# Throw away if to the right (a higher numbered column)
# or in a different row in the periodic table
popped.append(choices.pop(j - m))
m += 1
used_descriptor = self.descriptor
if len(choices) == 0:
msg = '{0},{2} cannot be mutated by {1}, '
msg = msg.format(f.info['confid'],
self.descriptor,
f[ltbm[0]].symbol)
msg += 'doing random mutation instead'
if self.verbose:
print(msg)
used_descriptor = 'RandomElementMutation_from_{0}'
used_descriptor = used_descriptor.format(self.descriptor)
self.rng.shuffle(popped)
choices = popped
else:
# Sorting so the element closest to the left is first
choices.sort(key=lambda x: get_row_column(x)[1], reverse=True)
new_element = choices[0]
for a in f:
if a.index in ltbm:
a.symbol = new_element
indi.append(a)
return (self.finalize_individual(indi),
used_descriptor + ':Parent {0}'.format(f.info['confid']))
class FullElementMutation(OffspringCreator):
"""Mutation that exchanges an all elements of a certain type with another
randomly chosen element from the supplied pool of elements. Any constraints
on the mutation are inhereted from the original candidate.
Parameters:
element_pool: List of elements in the phase space. The elements can be
grouped if the individual consist of different types of elements.
The list should then be a list of lists e.g. [[list1], [list2]]
rng: Random number generator
By default numpy.random.
"""
def __init__(self, element_pool, verbose=False, num_muts=1, rng=np.random):
OffspringCreator.__init__(self, verbose, num_muts=num_muts, rng=rng)
self.descriptor = 'FullElementMutation'
if not isinstance(element_pool[0], (list, np.ndarray)):
self.element_pools = [element_pool]
else:
self.element_pools = element_pool
def get_new_individual(self, parents):
f = parents[0]
indi = self.initialize_individual(f)
indi.info['data']['parents'] = [f.info['confid']]
# Randomly choose an element to mutate in the current individual.
old_element = self.rng.choice([a.symbol for a in f])
# Find the list containing the chosen element. By choosing a new
# element from the same list, the percentages are not altered.
for i in range(len(self.element_pools)):
if old_element in self.element_pools[i]:
lm = i
not_val = True
while not_val:
new_element = self.rng.choice(self.element_pools[lm])
not_val = new_element == old_element
for a in f:
if a.symbol == old_element:
a.symbol = new_element
indi.append(a)
return (self.finalize_individual(indi),
self.descriptor + ': Parent {0}'.format(f.info['confid']))
|