Skip to content
Snippets Groups Projects
Commit 20e2a687 authored by Moritz Huebner's avatar Moritz Huebner Committed by Gregory Ashton
Browse files

Added try except clause for building the lookup table

parent b5d12402
No related branches found
No related tags found
No related merge requests found
...@@ -590,7 +590,12 @@ class GravitationalWaveTransient(likelihood.Likelihood): ...@@ -590,7 +590,12 @@ class GravitationalWaveTransient(likelihood.Likelihood):
def load_lookup_table(self, filename): def load_lookup_table(self, filename):
if os.path.exists(filename): if os.path.exists(filename):
loaded_file = dict(np.load(filename)) try:
loaded_file = dict(np.load(filename))
except AttributeError as e:
logger.warning(e)
self._create_lookup_table()
return None
match, failure = self._test_cached_lookup_table(loaded_file) match, failure = self._test_cached_lookup_table(loaded_file)
if match: if match:
logger.info('Loaded distance marginalisation lookup table from ' logger.info('Loaded distance marginalisation lookup table from '
...@@ -599,13 +604,10 @@ class GravitationalWaveTransient(likelihood.Likelihood): ...@@ -599,13 +604,10 @@ class GravitationalWaveTransient(likelihood.Likelihood):
else: else:
logger.info('Loaded distance marginalisation lookup table does ' logger.info('Loaded distance marginalisation lookup table does '
'not match for {}.'.format(failure)) 'not match for {}.'.format(failure))
return None
elif isinstance(filename, str): elif isinstance(filename, str):
logger.info('Distance marginalisation file {} does not ' logger.info('Distance marginalisation file {} does not '
'exist'.format(filename)) 'exist'.format(filename))
return None return None
else:
return None
def cache_lookup_table(self): def cache_lookup_table(self):
np.savez(self.cached_lookup_table_filename, np.savez(self.cached_lookup_table_filename,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment