MultiCheckpoint.py 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. """Basic Checkpoint class implementation
  2. """
  3. # main imports
  4. import os
  5. import logging
  6. import numpy as np
  7. # module imports
  8. from .Callback import Callback
  9. from ..utils.color import macop_text, macop_line
  10. class MultiCheckpoint(Callback):
  11. """
  12. BasicCheckpoint is used for loading previous computations and start again after loading checkpoint
  13. Attributes:
  14. algo: {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.bestSolution
  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. solutionData = ""
  29. solutionSize = len(solution.data)
  30. for index, val in enumerate(solution.data):
  31. solutionData += str(val)
  32. if index < solutionSize - 1:
  33. solutionData += ' '
  34. line = str(currentEvaluation) + ';' + solutionData + ';' + 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.parent is not None:
  56. self.algo.parent.numberOfEvaluations = globalEvaluation
  57. else:
  58. self.algo.numberOfEvaluations = globalEvaluation
  59. # get best solution data information
  60. solutionData = list(map(int, data[1].split(' ')))
  61. self.algo.bestSolution.data = np.array(solutionData)
  62. self.algo.bestSolution.score = float(data[2])
  63. print(
  64. macop_text('Restart algorithm from evaluation {}.'.format(
  65. self.algo.numberOfEvaluations)))
  66. else:
  67. print(
  68. macop_text(
  69. 'No backup found... Start running algorithm from evaluation 0.'
  70. ))
  71. logging.info(
  72. "Can't load backup... Backup filepath not valid in Checkpoint")
  73. print(macop_line())