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

feature_method and budget in docs #175

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions docs/learn_loop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,15 @@ following the same algorithm described in `Ishida et al., 2019 <https://cosmosta
>>> classifier = 'RandomForest'
>>> n_estimators = 1000 # number of trees in the forest

>>> feature_method = 'bazin'
>>> feature_extraction_method = 'bazin'
>>> screen = False # if True will print many things for debuging
>>> fname_pattern = ['day_', '.csv'] # pattern on filename where different days
# are stored

>>> queryable= True # if True, check brightness before considering
# an object queryable

>>> budgets = (6. * 3600, 6. * 3600) # budget of 6 hours per night of observation


>>> # run time domain loop
Expand All @@ -167,7 +169,8 @@ following the same algorithm described in `Ishida et al., 2019 <https://cosmosta
>>> classifier=classifier,
>>> sep_files=sep_files, budgets=budgets,
>>> screen=screen, initial_training=training,
>>> survey=survey, queryable=queryable, n_estimators=n_estimators)
>>> survey=survey, queryable=queryable, n_estimators=n_estimators,
>>> feature_extraction_method=feature_extraction_method)


Make sure you check the full documentation of the module to understand which variables are required depending on the case you wish to run.
Expand Down
Loading