-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from fact-project/optional_altitude
Optional altitude
- Loading branch information
Showing
9 changed files
with
134 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# seed for the random number generators, to make things reproducible | ||
seed: 0 | ||
|
||
# define th number of cross validations to perform | ||
n_cross_validations : 5 | ||
|
||
|
||
disp: | ||
disp_regressor : | | ||
ensemble.RandomForestRegressor( | ||
n_estimators=30, | ||
max_features='sqrt', | ||
n_jobs=-1, | ||
max_depth=20, | ||
) | ||
sign_classifier: | | ||
ensemble.RandomForestClassifier( | ||
n_estimators=30, | ||
max_features='sqrt', | ||
n_jobs=-1, | ||
max_depth=20, | ||
) | ||
coordinate_transformation: FACT | ||
# columns containing coordinates of the source and of the pointing | ||
source_az_column: source_position_az | ||
source_alt_column: source_position_alt | ||
pointing_az_column: pointing_position_az | ||
pointing_alt_column: pointing_position_alt | ||
|
||
|
||
# randomly sample the data if you dont want to use the whole set | ||
n_signal : 500 | ||
|
||
features: | ||
- concentration_cog | ||
- concentration_core | ||
- delta | ||
- leakage1 | ||
- leakage2 | ||
- length | ||
- skewness_long | ||
- kurtosis_long | ||
- num_islands | ||
- size | ||
- width |
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
Binary file not shown.
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