mimical 0.0.3__py3-none-any.whl → 0.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mimical/fitting/fitter.py CHANGED
@@ -147,8 +147,8 @@ class mimical(object):
147
147
  raise Exception("Prior labels do not match model parameters.")
148
148
 
149
149
 
150
- if os.path.isfile(dir_path+'/bogout/posteriors' + f'/{self.id}.txt'):
151
- samples = pd.read_csv(dir_path+'/bogout/posteriors' + f'/{self.id}.txt', delimiter=' ').to_numpy()
150
+ if os.path.isfile(dir_path+'/mimical/posteriors' + f'/{self.id}.txt'):
151
+ samples = pd.read_csv(dir_path+'/mimical/posteriors' + f'/{self.id}.txt', delimiter=' ').to_numpy()
152
152
 
153
153
  else:
154
154
  # Run sampler
@@ -163,19 +163,19 @@ class mimical(object):
163
163
 
164
164
  # Plot and save the corner plot
165
165
  corner.corner(points, weights=np.exp(log_w), bins=20, labels=np.array(self.fitter_prior.keys), color='purple', plot_datapoints=False, range=np.repeat(0.999, len(self.fitter_prior.keys)))
166
- plt.savefig(dir_path+'/bogout/plots' + f'/corner_{self.id}.pdf', bbox_inches='tight')
166
+ plt.savefig(dir_path+'/mimical/plots' + f'/corner_{self.id}.pdf', bbox_inches='tight')
167
167
 
168
168
  # Sample an appropriately weighted posterior for representative samples.
169
169
  n_post = 10000
170
170
  indices = np.random.choice(np.arange(points.shape[0]), size = n_post, p=np.exp(log_w))
171
171
  samples = points[indices]
172
172
  samples_df = pd.DataFrame(data=samples, columns=self.fitter_prior.keys)
173
- samples_df.to_csv(dir_path+'/bogout/posteriors' + f'/{self.id}.txt', sep=' ', index=False)
173
+ samples_df.to_csv(dir_path+'/mimical/posteriors' + f'/{self.id}.txt', sep=' ', index=False)
174
174
 
175
175
 
176
176
  # Plot and save the median-parameter fit
177
177
  Plotter().plot_median(self.images, self.wavs, self.convolved_models, samples, list(self.fitter_prior.keys), self.prior_handler)
178
- plt.savefig(dir_path+'/bogout/plots' + f'/{self.id}_best_model.pdf', bbox_inches='tight')
178
+ plt.savefig(dir_path+'/mimical/plots' + f'/{self.id}_best_model.pdf', bbox_inches='tight')
179
179
 
180
180
  # Return the median-parameter model
181
181
  fit_dic = dict(zip((np.array((list(self.fitter_prior.keys)))+"_50").tolist(), np.median(samples, axis=0).tolist()))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mimical
3
- Version: 0.0.3
3
+ Version: 0.0.4
4
4
  Summary: Intesity modelling of multiply-imaged objects
5
5
  Author: Struan Stevenson
6
6
  Author-email: struan.stevenson@ed.ac.uk
@@ -1,12 +1,12 @@
1
1
  mimical/__init__.py,sha256=cBuyDtPwn6KcIkjlT7oct36jigvYDJmbZNmnt1I1QJU,75
2
2
  mimical/fitting/__init__.py,sha256=xcnLoeBDtt4Le5NhD6GhJe2ZRPNSsEySRHFYNuJyNEQ,69
3
- mimical/fitting/fitter.py,sha256=iQHOHJ8cAGG1GBxGy5WRN0gjORNYbqz4_H2fNoerG2Y,7685
3
+ mimical/fitting/fitter.py,sha256=5JOJnPmvISlZ5ZJM5Nz1sYVj-uCCOmONXzbvCCj8ZnY,7690
4
4
  mimical/fitting/prior_handler.py,sha256=yXvxbohS6f94CMRyeIViFc83hRYAj82IZNA5mzhMSRw,4193
5
5
  mimical/plotting/__init__.py,sha256=I1ZpQA48g-YPkqwrDGgTrqaTxDUgR8n0mbBX0MdbZtU,30
6
6
  mimical/plotting/plotting.py,sha256=OWTR-uOT4UpBw0XcKpl_uFSODuEdcfw7nIk3Sf1cOGY,2646
7
7
  mimical/utils/__init__.py,sha256=yolMgYFpvXoHuyV-ijGo26SQ0_niw0gz__iAFgdiQiY,35
8
8
  mimical/utils/filter_set.py,sha256=EITLa2c3FG3n1-v7KatKRwHCRyfZ4TTjsi_WM7Bz64k,6819
9
- mimical-0.0.3.dist-info/METADATA,sha256=z7bdQNhf_b0JJI6Xa6M06O1_jdo24IG_uvTdqVx7fGE,831
10
- mimical-0.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
11
- mimical-0.0.3.dist-info/top_level.txt,sha256=z6HTYpsoNjLUFayXjn8WyjX8C1mIbZw8Arb334cUbwc,8
12
- mimical-0.0.3.dist-info/RECORD,,
9
+ mimical-0.0.4.dist-info/METADATA,sha256=3fUVREfA3Vga9uBlFmRGh1POh_d2okQM8O3fTC2OdzQ,831
10
+ mimical-0.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
11
+ mimical-0.0.4.dist-info/top_level.txt,sha256=z6HTYpsoNjLUFayXjn8WyjX8C1mIbZw8Arb334cUbwc,8
12
+ mimical-0.0.4.dist-info/RECORD,,