forked from jiadonglee/aspgap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
501 lines (391 loc) · 18 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
import numpy as np
import torch
from astropy.table import Table
class APerr():
"""
apogee dr16 aspcap instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')):
self.dic = np.load(npydata, allow_pickle=True)
self.total_num = total_num
self.part_train = part_train
self.device = device
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.dic)
return num_sets
def __getitem__(self, idx: int):
# idx = self.dic[idx]['OBJ']
flux = self.dic[idx]['flux']
e_flux = self.dic[idx]['fluxerr']
wave = self.dic[idx]['wave']
prlx, e_prlx = self.dic[idx]['Gaia_parallax'], self.dic[idx]['Gaia_parallax_err']
prlx_hogg, e_prlx_hogg = self.dic[idx]['spec_parallax'], self.dic[idx]['spec_parallax_err']
flux = np.where(flux>0., flux, 0.)
flux = torch.tensor(flux.reshape(-1,1).astype(np.float32))
# prlx = torch.tensor(prlx.reshape(-1,1).astype(np.float32))
output = np.vstack([prlx, e_prlx])
output = torch.tensor(output.reshape(-1,1).astype(np.float32))
return flux.to(self.device), output.to(self.device)
class AP_norm_old():
"""
apogee dr16 aspcap instance
"""
def __init__(self, npydata, total_num=6000, device=torch.device('cpu')):
self.dic = np.load(npydata, allow_pickle=True)
self.total_num = total_num
self.device = device
def __len__(self) -> int:
# num_sets = len(self.dic)
num_sets = self.total_num
return num_sets
def __getitem__(self, idx: int):
# idx = self.dic[idx]['OBJ']
flux = self.dic[idx]['flux']
e_flux = self.dic[idx]['fluxerr']
wave = self.dic[idx]['wave']
prlx, e_prlx = self.dic[idx]['Gaia_parallax'], self.dic[idx]['Gaia_parallax_err']
prlx_hogg, e_prlx_hogg = self.dic[idx]['spec_parallax'], self.dic[idx]['spec_parallax_err']
flux = np.where(flux>0., flux, 0.)
flux = torch.tensor(flux.reshape(-1,1).astype(np.float32))
prlx = torch.tensor(prlx.reshape(-1,1).astype(np.float32))
return flux.to(self.device), prlx.to(self.device)
class AP_norm():
"""
apogee dr14 apogee instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')):
self.dic = np.load(npydata, allow_pickle=True)
self.total_num = total_num
self.device = device
self.part_train = part_train
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.dic)
return num_sets
def __getitem__(self, idx: int):
# idx = self.dic[idx]['OBJ']
flux = self.dic[idx]['norm_spec']
e_flux = self.dic[idx]['norm_spec_err']
prlx, e_prlx = self.dic[idx]['Gaia_parallax'], self.dic[idx]['Gaia_parallax_err']
prlx_hogg, e_prlx_hogg = self.dic[idx]['spec_parallax'], self.dic[idx]['spec_parallax_err']
mag = self.dic[idx]['mag']
flux = np.where(flux>0., flux, 1e-3)
inpt = np.hstack([np.log(flux), mag])
inpt = torch.tensor(inpt.reshape(-1,1).astype(np.float32))
# flux = torch.tensor(flux.reshape(-1,1).astype(np.float32))
# prlx = torch.tensor(prlx.reshape(-1,1).astype(np.float32))
output = np.vstack([float(prlx), float(e_prlx)])
output = torch.tensor(output.reshape(-1,1).astype(np.float32))
return {'x':inpt.to(self.device), 'y':output.to(self.device), 'id':self.dic[idx]['tmass_id']}
class AP_cat():
"""
apogee dr14 apogee instance
"""
def __init__(self, npydata, cat_name=None, total_num=6000, part_train=True, device=torch.device('cpu')):
self.dic = np.load(npydata, allow_pickle=True)
self.ids = np.array([d['tmass_id'] for d in self.dic])
self.total_num = total_num
self.device = device
self.part_train = part_train
self.cat = Table.read(cat_name)
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.cat)
return num_sets
def __getitem__(self, idx: int):
match = np.nonzero(self.ids==self.cat['2MASS_ID'][idx])[0][0]
flux = self.dic[match]['norm_spec']
# e_flux = self.dic[match]['norm_spec_err']
prlx, e_prlx = self.dic[match]['Gaia_parallax'], self.dic[match]['Gaia_parallax_err']
# prlx_hogg, e_prlx_hogg = self.dic[match]['spec_parallax'], self.dic[match]['spec_parallax_err']
mag = self.dic[match]['mag']
flux = np.where(flux>0., flux, 1e-3)
inpt = np.hstack([np.log(flux), mag])
inpt = torch.tensor(inpt.reshape(-1,1).astype(np.float32))
output = np.vstack([float(prlx), float(e_prlx)])
output = torch.tensor(output.reshape(-1,1).astype(np.float32))
return {'x':inpt.to(self.device), 'y':output.to(self.device), 'id':self.dic[match]['tmass_id']}
class AP_norm_mag():
"""
apogee dr14 apogee instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')):
self.dic = np.load(npydata, allow_pickle=True)
self.total_num = total_num
self.device = device
self.part_train = part_train
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.dic)
return num_sets
def __getitem__(self, idx: int):
# idx = self.dic[idx]['OBJ']
flux = self.dic[idx]['norm_spec']
e_flux = self.dic[idx]['norm_spec_err']
prlx, e_prlx = self.dic[idx]['Gaia_parallax'], self.dic[idx]['Gaia_parallax_err']
prlx_hogg, e_prlx_hogg = self.dic[idx]['spec_parallax'], self.dic[idx]['spec_parallax_err']
mag = self.dic[idx]['mag']
flux = np.where(flux>0., flux, 1e-3)
inpt = np.hstack([np.log(flux), mag])
inpt = torch.tensor(inpt.reshape(-1,1).astype(np.float32))
# output = np.vstack([float(prlx), float(e_prlx)])
absmag_pseudo = prlx * np.power(10, 0.2*mag)
e_absmag_pseudo = e_prlx * np.power(10, 0.2*mag)
output = np.vstack([absmag_pseudo, e_absmag_pseudo])
output = torch.tensor(output.reshape(-1,1).astype(np.float32))
return inpt.to(self.device), output.to(self.device)
# class AP_fakeprlx():
# """
# apogee dr16 aspcap instance
# """
# def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')):
# self.dic = np.load(npydata, allow_pickle=True)
# self.fake_prlx = torch.rand(len(self.dic), generator=torch.Generator().manual_seed(42))
# self.total_num = total_num
# self.part_train = part_train
# self.device = device
# def __len__(self) -> int:
# if self.part_train:
# num_sets = self.total_num
# else:
# num_sets = len(self.dic)
# return num_sets
# def __getitem__(self, idx: int):
# # idx = self.dic[idx]['OBJ']
# flux = self.dic[idx]['norm_spec']
# flux = np.where(flux>0., flux, 0.)
# flux = torch.tensor(flux.reshape(-1,1).astype(np.float32))
# prlx = self.fake_prlx[idx]
# output = np.vstack([prlx, 0.1*prlx])
# output = torch.tensor(output.reshape(-1,1).astype(np.float32))
# return {'x':flux.to(self.device), 'y':output.to(self.device)}
class GaiaXPlabel():
"""Gaia DR3 XP spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.spec = self.data['norm_spec']
self.total_num = total_num
self.part_train = part_train
self.device = device
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.spec)
return num_sets
def __getitem__(self, idx: int):
lnflux = self.spec[idx,:,1]
lnflux[np.isnan(lnflux)] = np.mean(lnflux)
lnflux = torch.tensor(lnflux.reshape(-1,1).astype(np.float32))
moh = self.data['moh'][idx]
aom = self.data['aom'][idx]
output = np.vstack([moh, aom])
output = torch.tensor(output.reshape(-1,1).astype(np.float32))
return {'x':lnflux.to(self.device), 'y':output.to(self.device), 'id':self.data['source_id'][idx]}
class GaiaXPlabel_v2():
"""Gaia DR3 XP spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.spec = self.data['norm_spec']
self.total_num = total_num
self.part_train = part_train
self.device = device
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.spec)
return num_sets
def __getitem__(self, idx: int):
lnflux = self.spec[idx,:]
lnflux[np.isnan(lnflux)] = np.mean(lnflux)
photo = np.vstack([self.data['J'][idx],
self.data['H'][idx],
self.data['K'][idx]]).reshape(-1)
lnflux = torch.tensor(
np.hstack([lnflux, photo]).reshape(1,-1).astype(np.float32)
)
abundance = np.vstack([self.data['moh'][idx], self.data['aom'][idx]])
output = torch.tensor(abundance.reshape(1,-1).astype(np.float32))
return {'x':lnflux.to(self.device), 'y':output.to(self.device), 'id':self.data['source_id'][idx]}
class GaiaXPlabel_cont_v0():
"""Gaia DR3 XP continuous spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.bp = self.data['norm_bp_coef']
self.rp = self.data['norm_rp_coef']
self.df = self.data['df']
self.total_num = total_num
self.part_train = part_train
self.device = device
self.teff_max = self.df['TEFF'].max()
self.J_max = self.df['J'].max()
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.df)
return num_sets
def __getitem__(self, idx: int):
coeffs = np.hstack([self.bp[idx][:8], self.rp[idx][:8]])
coeffs[np.isnan(coeffs)] = np.mean(coeffs)
photo = self.df[['J','H','K']].values[idx]/self.J_max
coeffs = torch.tensor(
np.hstack([coeffs, photo]).reshape(1,-1).astype(np.float32)
)
output = self.df[['TEFF', 'LOGG', 'M_H','ALPHA_M']].values[idx]
e_output = self.df[['TEFF_ERR', 'LOGG_ERR', 'M_H_ERR', 'ALPHA_M_ERR']].values[idx]
e_output[0]= e_output[0]/self.teff_max
output[0] = output[0]/self.teff_max
output = torch.tensor(output.reshape(-1).astype(np.float32))
e_output = torch.tensor(e_output.reshape(-1).astype(np.float32))
return {'x':coeffs.to(self.device), 'y':output.to(self.device), 'e_y':e_output.to(self.device), 'id':self.df['source_id'].values[idx]}
class GaiaXPlabel_cont():
"""Gaia DR3 XP continuous spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.bp = self.data['norm_bp_coef']
self.rp = self.data['norm_rp_coef']
self.df = self.data['df']
self.total_num = total_num
self.part_train = part_train
self.device = device
self.teff_max = self.df['TEFF'].max()
self.J_max = self.df['J'].max()
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.df)
return num_sets
def __getitem__(self, idx: int):
coeffs = np.hstack([self.bp[idx][:14], self.rp[idx][:13]])
coeffs[np.isnan(coeffs)] = np.mean(coeffs)
photo = self.df[['J','H','K']].values[idx]/self.J_max
coeffs = torch.tensor(
np.hstack([coeffs, photo]).reshape(1,-1).astype(np.float32)
)
output = self.df[['TEFF', 'LOGG', 'M_H','ALPHA_M']].values[idx]
e_output = self.df[['TEFF_ERR', 'LOGG_ERR', 'M_H_ERR', 'ALPHA_M_ERR']].values[idx]
e_output[0]= e_output[0]/self.teff_max
output[0] = output[0]/self.teff_max
output = torch.tensor(output.reshape(-1).astype(np.float32))
e_output = torch.tensor(e_output.reshape(-1).astype(np.float32))
return {'x':coeffs.to(self.device), 'y':output.to(self.device), 'e_y':e_output.to(self.device), 'id':self.df['source_id'].values[idx]}
class GaiaXPlabel_forcast():
"""Gaia DR3 XP continuous spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.bp = self.data['norm_bp_coef']
self.rp = self.data['norm_rp_coef']
self.df = self.data['df']
self.total_num = total_num
self.part_train = part_train
self.device = device
self.teff_max = self.df['TEFF'].max()
self.J_max = self.df['J'].max()
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.df)
return num_sets
def __getitem__(self, idx: int):
coeffs = np.hstack([self.bp[idx][:14], self.rp[idx][:13]])
coeffs[np.isnan(coeffs)] = np.mean(coeffs)
photo = self.df[['J','H','K']].values[idx]/self.J_max
coeffs = torch.tensor(
np.hstack([coeffs, photo]).reshape(1,-1).astype(np.float32)
)
output = self.df[['TEFF', 'LOGG', 'M_H','ALPHA_M']].values[idx]
e_output = self.df[['TEFF_ERR', 'LOGG_ERR', 'M_H_ERR', 'ALPHA_M_ERR']].values[idx]
e_output[0]= e_output[0]/self.teff_max
output[0] = output[0]/self.teff_max
tgt = torch.tensor(np.hstack([photo[-1], output[:-1]]))
output = torch.tensor(output.reshape(-1).astype(np.float32))
e_output = torch.tensor(e_output.reshape(-1).astype(np.float32))
return {'x':coeffs.to(self.device), 'y':output.to(self.device), 'e_y':e_output.to(self.device), 'tgt':tgt.to(self.device), 'id':self.df['source_id'].values[idx]}
class GaiaXPlabel_cont_infer():
"""Gaia DR3 XP continuous spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.bp = self.data['norm_bp_coef']
self.rp = self.data['norm_rp_coef']
self.df = self.data['df']
self.total_num = total_num
self.part_train = part_train
self.device = device
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.df)
return num_sets
def __getitem__(self, idx: int):
coeffs = np.hstack([self.bp[idx], self.rp[idx]])
coeffs[np.isnan(coeffs)] = np.mean(coeffs)
photo = self.df[['Jmag','Hmag','Kmag']].values[idx]
coeffs = torch.tensor(
np.hstack([coeffs, photo]).reshape(1,-1).astype(np.float32)
)
return {'x':coeffs.to(self.device), 'id':self.df['source_id'].values[idx]}
class GaiaXPlabel_cont_norm():
"""Gaia DR3 XP continuous spectrum to stellar labels instance
"""
def __init__(self, npydata, total_num=6000, part_train=True, device=torch.device('cpu')) -> None:
self.data = np.load(npydata, allow_pickle=True).item()
self.bp = self.data['norm_bp_coef']
self.rp = self.data['norm_rp_coef']
self.df = self.data['df']
self.total_num = total_num
self.part_train = part_train
self.device = device
self.J_max = self.df['J'].max()
def __len__(self) -> int:
if self.part_train:
num_sets = self.total_num
else:
num_sets = len(self.df)
return num_sets
def __getitem__(self, idx: int):
coeffs = np.hstack([self.bp[idx][:14], self.rp[idx][:13]])
coeffs[np.isnan(coeffs)] = np.mean(coeffs)
photo = self.df[['J','H','K']].values[idx]/self.J_max
coeffs = torch.tensor(
np.hstack([coeffs, photo]).reshape(1,-1).astype(np.float32)
).to(self.device)
output = self.df[['TEFF', 'LOGG', 'M_H','ALPHA_M']].values[idx]
e_output = self.df[['TEFF_ERR', 'LOGG_ERR', 'M_H_ERR', 'ALPHA_M_ERR']].values[idx]
"""
normalize stellar labels
raw:
Teff [3000-6500] (3500), Logg [0-5] (5), [M/H] [-2-0.5] (2.5)
[a/M] [-0.2-0.4] (0.6)
after normalization:
(Teff, Logg, [M/H], [a/M]) => (35, 25, 25, 30)
"""
label_norm = torch.tensor(np.array([1e-2, 5., 10., 50.].astype(np.float32)))
# output[0], e_output[0]= output[0]*1e-2, e_output[0]*1e-2
# output[1], e_output[1]= output[1]*5., e_output[1]*5.
# output[2], e_output[2]= output[2]*10., e_output[2]*10.
# output[3], e_output[3]= output[3]*50., e_output[3]*50.
output = torch.tensor(output.reshape(-1).astype(np.float32)).to(self.device)
e_output = torch.tensor(e_output.reshape(-1).astype(np.float32)).to(self.device)
output *= label_norm
e_output *= label_norm
return {'x':coeffs, 'y':output, 'e_y':e_output, 'id':self.df['source_id'].values[idx]}