Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade calibration benchmarks #59

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e3aa7de
Update simtel related sections.
HealthyPear Jun 8, 2020
54f210a
Add uproot to environment for plottin ROOT-based reference data in th…
HealthyPear Jun 8, 2020
849f756
Add CTA-MARS reference data for calibration benchmarks
HealthyPear Jun 8, 2020
da42a38
Updated all notebook. Last benchmark has problems.
HealthyPear Jun 10, 2020
2ce8107
Add jupyter notebook to environment
HealthyPear Jun 11, 2020
864c65a
Upgrade ctapipe dependency
HealthyPear Jun 11, 2020
bd8df6d
Added new approach to cleaning thresholds; cleaned format
HealthyPear Jul 7, 2020
70b2017
Update calibration benchmarking
HealthyPear Jul 30, 2020
87e9581
Merge branch 'upgrade-towards_protopipe_03' into upgrade-benchmarks_c…
HealthyPear Jul 30, 2020
9c49c2c
Explicitly request ctapipe 0.8.0
Aug 3, 2020
a106952
Merge branch 'upgrade-benchmarks_calibration' of https://github.com/H…
Aug 3, 2020
7210529
Add support for all cameras
Aug 5, 2020
4533840
Formatting and update of static doc benchmark
Aug 5, 2020
aab9f9b
Add permissions to protopipe.scripts.data_training
HealthyPear Aug 6, 2020
c3906a7
Merge branch 'upgrade-benchmarks_calibration' of https://github.com/H…
HealthyPear Aug 6, 2020
a3cc789
Make directory creation compatible with recent changes about config f…
Aug 6, 2020
b44a2c6
Never execute notebooks
Aug 17, 2020
a138a29
Update static calibration notebook
Aug 17, 2020
3dc2319
fix missing config on travis
Aug 17, 2020
73b32b9
Merge branch 'upgrade-towards_protopipe_03' into upgrade-benchmarks_c…
Aug 17, 2020
7f599a4
Update gird.yaml comments
Aug 17, 2020
eec69fe
Update calibration notebook format
Aug 18, 2020
bd5d7ce
Merge branch 'upgrade-towards_protopipe_03' into upgrade-benchmarks_c…
HealthyPear Sep 7, 2020
85b67e7
Merge branch 'upgrade-towards_protopipe_03' into upgrade-benchmarks_c…
HealthyPear Sep 8, 2020
aa7e31b
Merge branch 'upgrade-towards_protopipe_03' into upgrade-benchmarks_c…
HealthyPear Sep 9, 2020
ea6d038
Merge branch 'master' into upgrade-benchmarks_calibration
HealthyPear Dec 1, 2020
f6a24a9
Remove auxiliary script mistakenly re-added during merge conflicts re…
HealthyPear Dec 1, 2020
9f6038c
Add small update to docs about current version of GRID interface
HealthyPear Dec 1, 2020
9815e6f
Remove ASWG reference data, keep requirements
HealthyPear Dec 4, 2020
0faa39b
Improve input handling and update docs
HealthyPear Dec 7, 2020
fe96092
Add calibration config files and update notebook
HealthyPear Dec 7, 2020
d4d31bb
Add missing modifications from previous commit
HealthyPear Dec 7, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
998 changes: 680 additions & 318 deletions benchmarks/DL1/benchmarks_DL1_calibration.ipynb

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions benchmarks/DL1/protopipe_CTAMARS_1stPass_calibration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"Stage1ProcessorTool": {
"output_path": "events_protopipe_CTAMARS_calibration_1stPass.dl1.h5",
"overwrite": true,
"write_images": true,
"write_parameters": false,
"progress_bar": true,
"log_level": 30,
"split_datasets_by": "tel_type",
"image_extractor_type": "TwoPassWindowSum"
},
"TwoPassWindowSum": {
"core_threshold" : [
["type", "*", 6.0],
["type", "LST_LST_LSTCam", 6.0],
["type", "MST_MST_NectarCam", 8.0]
],
"disable_second_pass": true
}
}
20 changes: 20 additions & 0 deletions benchmarks/DL1/protopipe_CTAMARS_2ndPass_calibration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"Stage1ProcessorTool": {
"output_path": "events_protopipe_CTAMARS_calibration_2ndPass.dl1.h5",
"overwrite": true,
"write_images": true,
"write_parameters": false,
"progress_bar": true,
"log_level": 30,
"split_datasets_by": "tel_type",
"image_extractor_type": "TwoPassWindowSum"
},
"TwoPassWindowSum": {
"core_threshold" : [
["type", "*", 6.0],
["type", "LST_LST_LSTCam", 16.0],
["type", "MST_MST_NectarCam", 18.0]
],
"disable_second_pass": false
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
"IPython.sphinxext.ipython_console_highlighting",
]

# nbsphinx
nbsphinx_execute = 'never'

# sphinx_automodapi: avoid having methods and attributes of classes being shown
# multiple times.
numpydoc_show_class_members = False
Expand Down