Skip to content
Snippets Groups Projects
Commit 6ecca664 authored by Stefan Reck's avatar Stefan Reck
Browse files

docs

parent 5aca3b39
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,10 @@ Step 2: From h5 aanet files to h5 DL files
------------------------------------------
Produce DL h5 files from the aanet h5 files using OrcaSong.
You can either produce images or graphs.
If you have an orcasong config file, you can use it via the command line like this::
It is easiest to use a config file for setting up all the options.
See here https://git.km3net.de/ml/OrcaSong/-/blob/master/examples/orcasong_example.toml for an
example config file.
You can use it via the command line like this::
orcasong run aanet_file.h5 orcasong_config.toml --detx detector.detx
......
......@@ -3,14 +3,23 @@
# the mode to run orcasong in; either 'graph' or 'image'
mode="graph"
# arguments for FileGraph or FileBinner can be put here
# (see orcasong.core for a list of parameters)
# Options for generating either graphs or images can be put here next,
# depending on which mode was chosen.
# For a list and explanation of the availble parameters, see
# orcasong.core.FileGraph (graphs) or orcasong.core.FileBinner (images).
time_window = [-100, 5000]
# can also give the arguments of orcasong.core.BaseProcessor,
# which are shared between modes
# which are the same for both modes (graphs and images). Note that the
# det file should not be listed here, but instead passed via the
# det file option of the 'orcasong run' command.
chunksize=16
# built-in extractor function to use (see orcasong.from_toml.EXTRACTORS)
# Extractor function to use.
# This function is used to e.g. produce the labels that will be used for
# training the networks later. Here, we use a built-in function for neutrinos
# (see orcasong.from_toml.EXTRACTORS for available built-ins).
extractor = "nu_chain_neutrino"
[extractor_config]
# arguments for setting up the extractor function can go here. None in this case.
# arguments for setting up the extractor function could go here. None in this case.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment