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

Update configuration files #74

Merged
merged 8 commits into from
Nov 2, 2020
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
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
5 changes: 3 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@ categories:
- title: '🚀 General features'
labels:
- 'enhancement'
- title: 'Pipeline applications'
- title: '🔭 Pipeline applications'
labels:
- 'pipeline applications'
- 'divergent pointing'
- title: 'GRID support'
- title: '🌐 GRID support'
labels:
- 'grid'
- title: '🐛 Bug Fixes'
labels:
- 'bug'
- 'wrong behaviour'
- 'fix'
- title: '🧰 Maintenance'
labels:
- 'maintenance'
Expand Down
10 changes: 10 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Michele Peresano <michele.peresano@cea.fr> Michele Peresano <michele.peresano@.cea.fr>
Michele Peresano <michele.peresano@cea.fr> Michele Peresano <peresano.michele@gmail.com>
Julien Lefaucheur <julien.lefaucheur@obspm.fr>
Thierry Stolarczyk <thierry.stolarczyk@cea.fr>
Gaia Verna <gverna94@gmail.com> gaia-verna <51763341+gaia-verna@users.noreply.github.com>
Gaia Verna <gverna94@gmail.com> gaia-verna <gverna94@gmail.com>
David Landriu <landriu@sapcta.extra.cea.fr>
Karl Kosack <kosack@users.noreply.github.com>
Thomas Vuillaume <thomas.vuillaume@gmail.com> vuillaut <thomas.vuillaume@gmail.com>
Alice Donini <alice.donini@ts.infn.it>
73 changes: 0 additions & 73 deletions protopipe/aux/example_config_files/grid/grid.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ General:
# WARNING: for simulations containing multiple copies of the telescopes,
# only 'full_array' or custom list are supported options!
array: full_array
cam_id_list : ['LSTCam'] # List of camera IDs to be used
cam_id_list : ['LSTCam', 'NectarCam'] # List of camera IDs to be used

# Cleaning for reconstruction
ImageCleaning:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
General:
model_type: 'classifier'
# [...] = your analysis local path
# Please, refer to directory structure shown at Lugano
data_dir: '[...]/data/DL1/for_classification/'
data_sig_file: 'dl1_tail_gamma_merged.h5'
data_bkg_file: 'dl1_tail_proton_merged.h5'
# [...] = your analysis local full path OUTSIDE the Vagrant box
data_dir: '[...]/data/TRAINING/for_particle_classification/'
data_sig_file: 'TRAINING_classification_tail_gamma_merged.h5'
data_bkg_file: 'TRAINING_classification_tail_proton_merged.h5'
cam_id_list: ['LSTCam', 'NectarCam']
table_name_template: 'feature_events_' # Will be completed with cam_ids
outdir: '[...]/estimators/gamma_hadron_classifier'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
general:
# Directory with input data file
# [...] = your analysis local path
# Please refer to directory structure shown at Lugano
# [...] = your analysis local full path OUTSIDE the Vagrant box
indir: '[...]/data/DL2'
# Template name for input file
template_input_file: 'dl2_{}_{}_merged.h5' # filled with mode and particle type
template_input_file: 'DL2_{}_{}_merged.h5' # filled with mode and particle type
# Directory for output files
outdir: '[...]/performance'
outdir: '[...]/data/DL3'
# Output table name
output_table_name: 'table_best_cutoff'

Expand Down
7 changes: 3 additions & 4 deletions protopipe/aux/example_config_files/protopipe/regressor.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
General:
model_type: 'regressor'
# [...] = your analysis local path
# Please, refer to directory structure shown at Lugano
data_dir: '[...]/data/DL1/for_energy_estimation'
data_file: 'dl1_{}_gamma_merged.h5'
# [...] = your analysis local full path OUTSIDE the Vagrant box
data_dir: '[...]/data/TRAINING/for_energy_estimation'
data_file: 'TRAINING_energy_{}_gamma_merged.h5'
outdir: '[...]/estimators/energy_regressor'
cam_id_list: ['LSTCam', 'NectarCam']
table_name_template: 'feature_events_'
Expand Down