forked from graphnet-team/graphnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into RNN_Attention
merge from main
- Loading branch information
Showing
56 changed files
with
1,449 additions
and
1,229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
"""Modules for converting and ingesting data. | ||
`graphnet.data` enables converting domain-specific data to industry-standard, | ||
intermediate file formats and reading this data. | ||
intermediate file formats and reading this data. | ||
""" | ||
from .filters import I3Filter, I3FilterMask | ||
from .extractors.icecube.utilities.i3_filters import I3Filter, I3FilterMask | ||
from .dataconverter import DataConverter | ||
from .pre_configured import I3ToParquetConverter | ||
from .pre_configured import I3ToSQLiteConverter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
"""Module containing experiment-specific dataclasses.""" | ||
|
||
|
||
from dataclasses import dataclass | ||
|
||
|
||
@dataclass | ||
class I3FileSet: # noqa: D101 | ||
i3_file: str | ||
gcd_file: str |
Oops, something went wrong.