classicals.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. """Classical Checkpoints classes implementations
  2. """
  3. # main imports
  4. import os
  5. import logging
  6. import numpy as np
  7. # module imports
  8. from macop.callbacks.base import Callback
  9. from macop.utils.progress import macop_text, macop_line
  10. class BasicCheckpoint(Callback):
  11. """
  12. BasicCheckpoint is used for loading previous computations and start again after loading checkpoint
  13. Attributes:
  14. algo: {:class:`~macop.algorithms.base.Algorithm`} -- main algorithm instance reference
  15. every: {int} -- checkpoint frequency used (based on number of evaluations)
  16. filepath: {str} -- file path where checkpoints will be saved
  17. """
  18. def run(self):
  19. """
  20. Check if necessary to do backup based on `every` variable
  21. """
  22. # get current best solution
  23. solution = self._algo.result
  24. currentEvaluation = self._algo.getGlobalEvaluation()
  25. # backup if necessary
  26. if currentEvaluation % self._every == 0:
  27. logging.info("Checkpoint is done into " + self._filepath)
  28. solution.data = ""
  29. solutionSize = len(solution.data)
  30. for index, val in enumerate(solution.data):
  31. solution.data += str(val)
  32. if index < solutionSize - 1:
  33. solution.data += ' '
  34. line = str(currentEvaluation) + ';' + solution.data + ';' + str(
  35. solution.fitness) + ';\n'
  36. # check if file exists
  37. if not os.path.exists(self._filepath):
  38. with open(self._filepath, 'w') as f:
  39. f.write(line)
  40. else:
  41. with open(self._filepath, 'a') as f:
  42. f.write(line)
  43. def load(self):
  44. """
  45. Load last backup line of solution and set algorithm state (best solution and evaluations) at this backup
  46. """
  47. if os.path.exists(self._filepath):
  48. logging.info('Load best solution from last checkpoint')
  49. with open(self._filepath) as f:
  50. # get last line and read data
  51. lastline = f.readlines()[-1]
  52. data = lastline.split(';')
  53. # get evaluation information
  54. globalEvaluation = int(data[0])
  55. if self._algo.getParent() is not None:
  56. self._algo.getParent().setEvaluation(globalEvaluation)
  57. else:
  58. self._algo.setEvaluation(globalEvaluation)
  59. # get best solution data information
  60. solution.data = list(map(int, data[1].split(' ')))
  61. if self._algo.result is None:
  62. self._algo.result(self._algo.initialiser())
  63. self._algo.result.data = np.array(solution.data)
  64. self._algo.result.fitness = float(data[2])
  65. macop_line(self._algo)
  66. macop_text(self._algo,
  67. f'Checkpoint found from `{self._filepath}` file.')
  68. macop_text(
  69. self._algo,
  70. f'Restart algorithm from evaluation {self._algo.getEvaluation()}.'
  71. )
  72. else:
  73. macop_text(
  74. self._algo,
  75. 'No backup found... Start running algorithm from evaluation 0.'
  76. )
  77. logging.info(
  78. "Can't load backup... Backup filepath not valid in Checkpoint")
  79. macop_line(self._algo)