Skip to content

Commit 4331dfa

Browse files
committed
new instrument names; store priors
1 parent fccefad commit 4331dfa

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/kima/pykima/results.py

+9
Original file line numberDiff line numberDiff line change
@@ -1086,6 +1086,11 @@ def parameter_priors(self):
10861086
prior = self.priors[f'individual_offset_prior[{i}]']
10871087
priors[self.indices['inst_offsets']][i] = prior
10881088

1089+
if self.indicator_correlations:
1090+
prior = self.priors['beta_prior']
1091+
priors[self.indices['betas']] = prior
1092+
1093+
10891094
if self.has_gp:
10901095
if self.model == 'GPmodel':
10911096
priors[self.indices['GPpars']] = [
@@ -1161,6 +1166,9 @@ def parameter_priors(self):
11611166
planet_priors.append(self.priors['wprior'])
11621167
priors[self.indices['planets']] = planet_priors
11631168

1169+
if self.studentt:
1170+
priors[self.indices['nu']] = self.priors['nu_prior']
1171+
11641172
try:
11651173
priors[self.indices['vsys']] = self.priors['Cprior']
11661174
except KeyError:
@@ -1612,6 +1620,7 @@ def log_posterior(self, sample, separate=False):
16121620
return logp + logl, logl, logp
16131621
return logp + logl
16141622

1623+
@lru_cache
16151624
def map_sample(self, Np=None, mask=None, printit=True,
16161625
from_posterior=False):
16171626
"""

src/kima/pykima/utils.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -872,8 +872,9 @@ def get_instrument_name(data_file):
872872
r'SOPHIE',
873873
r'HAMILTON',
874874
r'NIRPS',
875-
r'PFS',
876-
r'UCLES'
875+
r'PFS[\d+]',
876+
r'UCLES',
877+
r'MIKE',
877878
])
878879
return re.findall(pattern, bn, re.IGNORECASE)[0]
879880

0 commit comments

Comments
 (0)