Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OrcaSong
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Machine Learning
OrcaSong
Commits
6ecca664
Commit
6ecca664
authored
3 years ago
by
Stefan Reck
Browse files
Options
Downloads
Patches
Plain Diff
docs
parent
5aca3b39
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/getting_started.rst
+4
-1
4 additions, 1 deletion
docs/getting_started.rst
examples/orcasong_example.toml
+14
-5
14 additions, 5 deletions
examples/orcasong_example.toml
with
18 additions
and
6 deletions
docs/getting_started.rst
+
4
−
1
View file @
6ecca664
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
examples/orcasong_example.toml
+
14
−
5
View file @
6ecca664
...
...
@@ -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 c
an
go here. None in this case.
# arguments for setting up the extractor function c
ould
go here. None in this case.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment