You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix for calculation of true disp to conform to the normal conventions.
Training and predictions worked before but was rotated 180 degrees to the usual definition
Add support for ctapipe coordinate transformation in the training of disp regressors.
From now on, the configuration key disp_config.coordinate_transformatin is required and can be either FACT or CTA.
If you want to use the CTA coordinate trafo conventions, ctapipe is required, use pip install aict-tools[cta] to make sure, this is the case.
Allow application of multiple cuts to the same variable in aict_apply_cuts, the old format is still supported, but new files should use a list of cuts instead of a dict:
Old:
selection:
width: ['<=', 20]
New:
selection:
- width: ['<=', 20]
- width: ['>=', 5] # now possible
call tight_layout before saving plots in aict_plot_*_performance#113
Add option for an alternative definition of the true value of disp, see #106
aict-tools can now apply models stored using onnx or pmml. However, application of models stored to pickle is still the fastest option for most models.