-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathconfig.defaults.yaml
2249 lines (2242 loc) · 54.2 KB
/
config.defaults.yaml
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
kowalski:
hosts:
# Add/remove Kowalski host names and a corresponding token below
kowalski:
token:
gloria:
token:
melman:
token:
port: 443
protocol: https
timeout: 300
collections:
gaia: Gaia_EDR3
# Current sources are from DR20 (on melman)
sources: ZTF_sources_20240117
# Current features generated from DR16 (on gloria)
features: ZTF_source_features_DR16
# Current classifications are from DR16 (on gloria)
classifications: ZTF_source_classifications_DR16
# Current alerts (on kowalski)
alerts: ZTF_alerts
# If cutting off light curve at a given data release, enter the max HJD below
# (JD corrected for Earth/Sun light travel time)
# By default, this is set at the end of DR16 (2459951.5)
max_timestamp_hjd: 2459951.5
fritz:
token:
protocol: https
host: fritz.science
max_attempts: 10
sleep_time: 5
wandb:
entity: ztf-scope
project: scope
# Get your W&B token at https://wandb.ai/authorize
token:
sweep_config_dnn:
method: bayes
metric:
goal: minimize
name: val_loss
run_cap: 10
parameters:
# For bayes method, use min/max instead of values
lr:
#values: [3.e-2, 3.e-3, 3.e-4]
min: 3.e-4
max: 3.e-2
epsilon:
#values: [1.e-7, 1.e-8, 1.e-9]
min: 1.e-9
max: 1.e-7
amsgrad:
#values: [3.e-3, 3.e-4, 3.e-5]
min: 3.e-5
max: 3.e-3
decay:
value: 0.0
beta_1:
value: 0.9
beta_2:
value: 0.999
epochs:
value: 50
dense_branch:
value: True
conv_branch:
value: True
loss:
value: binary_crossentropy
optimizer:
value: adam
momentum:
value: 0.9
monitor:
value: val_loss
patience:
value: 20
callbacks:
value:
- reduce_lr_on_plateau
- early_stopping
run_eagerly:
value: False
taxonomy:
class: tds
name: time domain source type
subclasses:
- class: phenomenological
name: phenomenological
description: |
What can be said about an object given *only* ZTF data.
subclasses:
- class: vnv
name: variable
description: |
Any ZTF source that shows detectable variability in its light curve
due to an astrophysical origin. This excludes variability due to blended photometry,
bright nearby stars, or any CCD artifact.
subclasses:
- class: pnp
name: periodic
description: |
The ZTF light curve features astrophysical periodic variability.
These are typically pulsators, rotating stars and (eclipsing) binaries.
This does not include semi-periodic or quasi-periodic variability. This
excludes variability due to a varying background (e.g. due to the moon),
or spurious periodic variability due to nearby bright stars or other artifacts.
subclasses:
- class: sin
name: sinusoidal
subclasses:
- class: el
name: ellipsoidal
- class: saw
name: sawtooth
- class: mp
name: multi periodic
- class: longt
name: long timescale
description: |
Any object which shows variability on timescales of ~100+ days. This can be a steady
increase/decrease in luminosity, e.g., AGN and CVs.
Long timescale period variable like Miras and the more
irregular semi-regular variables are generally included in this category.
- class: e
name: eclipsing
description: |
Any source that shows eclipses in the light curve.
These are predominately eclipsing binaries.
Eclipsing planetisimals or planets with large rings would also
fall in this category.
subclasses:
- class: ea
name: detached binary
- class: eb
name: semi-detached binary
- class: ew
name: overcontact binary
- class: wp
name: wrong period
subclasses:
- class: hp
name: half period
- class: dp
name: double period
- class: i
name: irregular
description: |
Objects which show irregular/stochastic variability.
These are mostly accreting objects, AGN, CVs, and YSOs.
subclasses:
- class: fla
name: flaring
description: |
Any ZTF light curve that shows flares, rapidly rising and fading events.
These are mostly cataclysmic variables, some young stellar objects, M-dwarfs, and some AGN.
- class: dip
name: dipping
- class: nonvar
name: non-variable
subclasses:
- class: bogus
name: bogus
description: |
Any light curve that seems variable, but is not due to any astrophysical variability.
These are galaxies that can seem to vary due to PSF variations,
image artifacts like ghosts, blended stars, or diffraction spikes.
subclasses:
- class: ext
name: extended
- class: blend
name: blend
- class: bright
name: bright star
- class: artfct
name: ccd artifact
- class: ontological
name: ontological
description: |
What can be said about an object given *not only* ZTF data
subclasses:
- class: accr
name: Accretor
description: |
Any kind of accreting system.
subclasses:
- class: agn
name: AGN
description: |
Extra-galactic objects which tend to vary irregularly. Often show slowly rising
or fading light curves, and can also show outbursts in rare cases.
- class: cv
name: CV
description: |
A binary star that consists of two components:
a white dwarf primary, and a mass transferring secondary.
- class: yso
name: YSO
description: |
Pre-main-sequence stars. They typically have an accretion disk and dust around
them. This results in a light curve which shows irregular behavior,
sometimes with outbursts or dust obscuration events.
- class: bis
name: Non-accreting binary
description: |
Any object that is a non-accreting binary system.
subclasses:
- class: blyr
name: Beta Lyrae
description: |
Binary systems where one of the components has evolved into a subgiant or giant star and
is filling its Roche lobe transferring mass in a disk.
The light curve of these systems is of type EB. The period
ranges between 0.3 days and 200 days.
Systems with a period of >100 days contains a supergiant.
- class: rscvn
name: RS CVn
description: |
A binary star where at least one of the components
has large stellar spots. The light curve shape is sinusoidal
with periods of a few hours to 14 days.
The shape of the light curve changes over timescales of months to years.
- class: wuma
name: W Ursae Maj
description: |
Eclipsing close binary stars of spectral types F, G, or K that share a common envelope
of material and are thus in contact with one another.
- class: hwvir
name: HW Vir
- class: emsms
name: detached MS-MS
description: |
Detached eclipsing MS-MS binary.
- class: peccb
name: Peculiar compact binary
subclasses:
- class: nnser
name: NN Ser
- class: puls
name: Pulsator
description: |
Any kind of pulsating star.
subclasses:
- class: rrlyr
name: RR Lyrae
description: |
RR Lyrae are radial pulsators on the horizontal branch; they are helium core burning and
hydrogen shell burning. The pulsation period ranges between 0.2 and 1.0 days.
subclasses:
- class: rrab
name: RRab
- class: rrc
name: RRc
- class: rrd
name: RRd
- class: rre
name: RRe
- class: rrblz
name: Blazhko
- class: lpv
name: long period variable
description: |
Long Period Variables are cool giant stars. Nearly all stars of this type show
some variability.
subclasses:
- class: mira
name: Mira
description: |
AGB stars which show very high amplitude (> 2.5), long period (80-1000
days) variability.
- class: srv
name: Semiregular
description: |
Show more irregular, and lower amplitude variability than Miras.
- class: osarg
name: OSARG
description: |
OGLE small-amplitude red giant.
- class: rvtau
name: RV Tau
- class: dscu
name: Delta Scuti
description: |
Delta Scuti are pulsating A&F main sequence stars. The pulsation period ranges between
0.03 between 0.3 days, and the amplitude is typically 0.2 mag but can reach up to 0.8mag.
Their light curves are asymmetric, with a rapid rise and slow decay.
- class: ceph2
name: Population II Cepheid
subclasses:
- class: blher
name: BL Her
- class: wvir
name: W Vir
- class: ceph
name: Cepheid
description: |
Cepheids are radially pulsating giant stars in the instability strip.
Period range between 1 and 50 days, with extreme examples of 200 days.
Light curves shapes range from asymmetric with a steep rise
and slow decay, to almost sinusoidal light curve shapes.
subclasses:
- class: f
name: Fundamental
- class: o
name: Overtone
docs:
field_guide:
rr_lyr_ab:
coordinates: [254.9327, 30.8264]
period: 0.6299307435824886
title: RR Lyrae ab
rr_lyr_c:
coordinates: [254.7213, 32.8341]
period: 0.31087445597147706
title: RR Lyrae c
w_uma:
coordinates: [270.4229, 7.1722]
period: 0.26901030387060865
title: W UMa
beta_lyr:
coordinates: [116.79866129999999, 51.4231961]
period: 1.836431252123213
title: Beta Lyrae
bogus_1:
coordinates: [328.1595911, 69.6487077]
title: Bogus ``flaring'' from saturation ghosts
bogus_2:
coordinates: [209.584254, 40.4601446]
title: Bogus ``flaring'' from a different artifact
delta_scuti:
coordinates: [279.9154053, 60.7140833]
period: 0.064050575
title: Delta Scuti
cepheid_F:
coordinates: [ 0.441542, 62.424306 ]
period: 3.8785736
title: Fundamental-mode classical Cepheid
cepheid_F_1:
coordinates: [ 4.260375, 60.802722 ]
period: 6.7987667
title: Fundamental-mode classical Cepheid with a secondary bump
cepheid_1O:
coordinates: [ 321.964458, 24.422528 ]
period: 0.7703319
title: First-overtone classical Cepheid
cepheid_F1O:
coordinates: [ 292.005292, 19.949889 ]
period: 4.0442931
title: Double-mode classical Cepheid
flaring_dwarfnova:
coordinates: [ 266.8566657, 63.0465916 ]
title: Dwarf Nova (Flaring)
flaring_mdwarf:
coordinates: [ 103.289525, 10.194726 ]
title: M dwarf (Flaring)
cv_U_Gem:
coordinates: [ 18.884181, 37.626534 ]
title: Cataclysmic variable (U Gem dwarf nova)
cv_Z_Cam:
coordinates: [ 269.093260, 2.967803 ]
title: Cataclysmic variable (Z Cam dwarf nova)
cv_SU_UMa:
coordinates: [ 170.883476, 43.288214 ]
title: Cataclysmic variable (SU UMa/WZ Sge dwarf nova)
cv_Novalike:
coordinates: [ 322.961689, 49.233813 ]
title: Cataclysmic variable (Novalike)
mira:
coordinates: [ 9.1523, 68.0221 ]
period: 212.0066035
title: A Mira (Long Period Variable)
periodic:
coordinates: [ 288.5243027, 1.51191 ]
period: 0.350072813283344
title: Periodic variable
srv:
coordinates: [ 330.302266, 66.153712 ]
title: Semi Regular Variable
variable:
coordinates: [ 102.5537728, 44.1032507 ]
title: Variable stars
features:
info:
period_suffix: ELS_ECE_EAOV
phenomenological:
ad:
include: true
dtype: float
periodic: false
ccd:
include: false
dtype: Int64
periodic: false
chi2red:
include: true
dtype: float
periodic: false
dec:
include: false
dtype: float
periodic: false
f1_BIC:
include: true
dtype: float
periodic: true
f1_a:
include: true
dtype: float
periodic: true
f1_amp:
include: true
dtype: float
periodic: true
f1_b:
include: true
dtype: float
periodic: true
f1_phi0:
include: true
dtype: float
periodic: true
f1_power:
include: true
dtype: float
periodic: true
f1_relamp1:
include: true
dtype: float
periodic: true
f1_relamp2:
include: true
dtype: float
periodic: true
f1_relamp3:
include: true
dtype: float
periodic: true
f1_relamp4:
include: true
dtype: float
periodic: true
f1_relphi1:
include: true
dtype: float
periodic: true
f1_relphi2:
include: true
dtype: float
periodic: true
f1_relphi3:
include: true
dtype: float
periodic: true
f1_relphi4:
include: true
dtype: float
periodic: true
field:
include: false
dtype: Int64
periodic: false
i60r:
include: true
dtype: float
periodic: false
i70r:
include: true
dtype: float
periodic: false
i80r:
include: true
dtype: float
periodic: false
i90r:
include: true
dtype: float
periodic: false
inv_vonneumannratio:
include: true
dtype: float
periodic: false
iqr:
include: true
dtype: float
periodic: false
mean_ztf_alert_braai:
include: false
dtype: float
periodic: false
median:
include: true
dtype: float
periodic: false
median_abs_dev:
include: true
dtype: float
periodic: false
n:
include: false
dtype: float
periodic: false
n_ztf_alerts:
include: false
dtype: Int64
periodic: false
norm_excess_var:
include: true
dtype: float
periodic: false
norm_peak_to_peak_amp:
include: true
dtype: float
periodic: false
pdot:
include: false
dtype: float
periodic: true
period:
include: false
dtype: float
periodic: true
quad:
include: false
dtype: Int64
periodic: false
ra:
include: false
dtype: float
periodic: false
roms:
include: true
dtype: float
periodic: false
significance:
include: false
dtype: float
periodic: true
skew:
include: true
dtype: float
periodic: false
smallkurt:
include: true
dtype: float
periodic: false
stetson_j:
include: true
dtype: float
periodic: false
stetson_k:
include: true
dtype: float
periodic: false
sw:
include: true
dtype: float
periodic: false
welch_i:
include: true
dtype: float
periodic: false
wmean:
include: true
dtype: float
periodic: false
wstd:
include: true
dtype: float
periodic: false
ontological:
ad:
include: true
dtype: float
impute_strategy: None
periodic: false
ccd:
include: false
dtype: Int64
impute_strategy: None
periodic: false
chi2red:
include: true
dtype: float
impute_strategy: None
periodic: false
dec:
include: false
dtype: float
impute_strategy: None
periodic: false
f1_BIC:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_a:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_amp:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_b:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_phi0:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_power:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relamp1:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relamp2:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relamp3:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relamp4:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relphi1:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relphi2:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relphi3:
include: true
dtype: float
impute_strategy: None
periodic: true
f1_relphi4:
include: true
dtype: float
impute_strategy: None
periodic: true
field:
include: false
dtype: Int64
impute_strategy: None
periodic: false
i60r:
include: true
dtype: float
impute_strategy: None
periodic: false
i70r:
include: true
dtype: float
impute_strategy: None
periodic: false
i80r:
include: true
dtype: float
impute_strategy: None
periodic: false
i90r:
include: true
dtype: float
impute_strategy: None
periodic: false
inv_vonneumannratio:
include: true
dtype: float
impute_strategy: None
periodic: false
iqr:
include: true
dtype: float
impute_strategy: None
periodic: false
mean_ztf_alert_braai:
include: true
dtype: float
impute_strategy: zero
periodic: false
median:
include: true
dtype: float
impute_strategy: None
periodic: false
median_abs_dev:
include: true
dtype: float
impute_strategy: None
periodic: false
n:
include: false
dtype: float
impute_strategy: None
periodic: false
n_ztf_alerts:
include: true
dtype: Int64
impute_strategy: zero
periodic: false
norm_excess_var:
include: true
dtype: float
impute_strategy: None
periodic: false
norm_peak_to_peak_amp:
include: true
dtype: float
impute_strategy: None
periodic: false
pdot:
include: false
dtype: float
impute_strategy: None
periodic: true
period:
include: true
dtype: float
impute_strategy: None
periodic: true
quad:
include: false
dtype: Int64
impute_strategy: None
periodic: false
ra:
include: false
dtype: float
impute_strategy: None
periodic: false
roms:
include: true
dtype: float
impute_strategy: None
periodic: false
significance:
include: true
dtype: float
impute_strategy: None
periodic: true
skew:
include: true
dtype: float
impute_strategy: None
periodic: false
smallkurt:
include: true
dtype: float
impute_strategy: None
periodic: false
stetson_j:
include: true
dtype: float
impute_strategy: None
periodic: false
stetson_k:
include: true
dtype: float
impute_strategy: None
periodic: false
sw:
include: true
dtype: float
impute_strategy: None
periodic: false
welch_i:
include: true
dtype: float
impute_strategy: None
periodic: false
wmean:
include: true
dtype: float
impute_strategy: None
periodic: false
wstd:
include: true
dtype: float
impute_strategy: None
periodic: false
AllWISE___id:
include: false
dtype: Int64
impute_strategy: None
periodic: false
AllWISE__ph_qual:
include: false
dtype: str
impute_strategy: None
periodic: false
AllWISE__w1mpro:
include: true
dtype: float
impute_strategy: regress
periodic: false
AllWISE__w1sigmpro:
include: true
dtype: float
impute_strategy: median
periodic: false
AllWISE__w2mpro:
include: true
dtype: float
impute_strategy: regress
periodic: false
AllWISE__w2sigmpro:
include: true
dtype: float
impute_strategy: median
periodic: false
AllWISE__w3mpro:
include: true
dtype: float
impute_strategy: regress
periodic: false
# The below magnitude error is missing from the majority of training sources; we therefore exclude it by default.
AllWISE__w3sigmpro:
include: false
dtype: float
impute_strategy: None
periodic: false
AllWISE__w4mpro:
include: true
dtype: float
impute_strategy: regress
periodic: false
# The below magnitude error is missing from the majority of training sources; we therefore exclude it by default.
AllWISE__w4sigmpro:
include: false
dtype: float
impute_strategy: None
periodic: false
Gaia_EDR3___id:
include: false
dtype: Int64
impute_strategy: None
periodic: false
Gaia_EDR3__astrometric_excess_noise:
include: false
dtype: float
impute_strategy: None
periodic: false
Gaia_EDR3__parallax:
include: true
dtype: float
impute_strategy: regress
periodic: false
Gaia_EDR3__parallax_error:
include: true
dtype: float
impute_strategy: median
periodic: false
Gaia_EDR3__phot_bp_mean_mag:
include: true
dtype: float
impute_strategy: regress
periodic: false
Gaia_EDR3__phot_bp_rp_excess_factor:
include: true
dtype: float
impute_strategy: median
periodic: false
Gaia_EDR3__phot_g_mean_mag:
include: true
dtype: float
impute_strategy: regress
periodic: false
Gaia_EDR3__phot_rp_mean_mag:
include: true
dtype: float
impute_strategy: regress
periodic: false
Gaia_EDR3__pmdec:
include: false
dtype: float
impute_strategy: None
periodic: false
Gaia_EDR3__pmdec_error:
include: false
dtype: float
impute_strategy: None
periodic: false
Gaia_EDR3__pmra:
include: false
dtype: float
impute_strategy: None
periodic: false
Gaia_EDR3__pmra_error:
include: false
dtype: float
impute_strategy: None
periodic: false
PS1_DR1___id:
include: false
dtype: Int64
impute_strategy: None
periodic: false
PS1_DR1__gMeanPSFMag:
include: true
dtype: float
impute_strategy: regress
periodic: false
PS1_DR1__gMeanPSFMagErr:
include: true
dtype: float
impute_strategy: median
periodic: false
PS1_DR1__iMeanPSFMag:
include: true
dtype: float
impute_strategy: regress
periodic: false
PS1_DR1__iMeanPSFMagErr:
include: true
dtype: float
impute_strategy: median
periodic: false
PS1_DR1__qualityFlag:
include: false
dtype: Int64
impute_strategy: None
periodic: false
PS1_DR1__rMeanPSFMag:
include: true
dtype: float
impute_strategy: regress
periodic: false
PS1_DR1__rMeanPSFMagErr:
include: true
dtype: float
impute_strategy: median
periodic: false
PS1_DR1__yMeanPSFMag:
include: true
dtype: float
impute_strategy: regress
periodic: false
PS1_DR1__yMeanPSFMagErr:
include: true
dtype: float
impute_strategy: median
periodic: false
PS1_DR1__zMeanPSFMag:
include: true
dtype: float
impute_strategy: regress
periodic: false
PS1_DR1__zMeanPSFMagErr:
include: true
dtype: float
impute_strategy: median
periodic: false
_id:
include: false
dtype: int
impute_strategy: None
periodic: false
coordinates:
include: false
dtype: object
impute_strategy: None
periodic: false
# This feature is included separately by nn.py, but the dtype is specified here for get_features.py
dmdt:
include: false
dtype: object
impute_strategy: None
periodic: false
feature_stats:
# d15-based
ra:
min: 0.000637
max: 359.9959065
median: 260.57838475
mean: 203.8537195009122