-
Notifications
You must be signed in to change notification settings - Fork 0
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
Updates to support end-to-end run with laiss-resspect classifier #90
Conversation
Click here to view all benchmarks. |
… - need to dynamically retrieve the canonical id column name.
…s commit, replacing with dynamic column names.
@@ -391,6 +391,7 @@ def request_TOM_data(url: str = "https://desc-tom-2.lbl.gov", username: str = No | |||
dic['mjd_now'] = mjdnow | |||
if cheat_gentypes is not None: | |||
dic['cheat_gentypes'] = cheat_gentypes | |||
dic['include_hostinfo'] = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AmandaWasserman I wanted to check with you to make sure this is ok to keep here. I assume that this will just pull down more data from the TOM and that it wouldn't hurt anything, but if you can confirm that, I would appreciate it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this will affect anything since we go through and pull out the info that we want separately. Will double check this with the smoke test
* Initial commit to implement a "certainty sampler". * Fix spelling error. * Updating comments and logging messages. * Add test for certainty sampling.
…RY` instead of the hardcoded `VALID_STRATEGY` list.
@@ -391,6 +391,7 @@ def request_TOM_data(url: str = "https://desc-tom-2.lbl.gov", username: str = No | |||
dic['mjd_now'] = mjdnow | |||
if cheat_gentypes is not None: | |||
dic['cheat_gentypes'] = cheat_gentypes | |||
dic['include_hostinfo'] = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this will affect anything since we go through and pull out the info that we want separately. Will double check this with the smoke test
This is a relatively small change, but an important one in order to retrieve data used by the LAISS classifier.
This is a result of the work that @rknop has done, and summarized in this snippet from Slack: "You need to pass the parameter include_hostinfo (set to 1, or, really, something true) to get this additional information."
However, it is also indicative of a broader concern, that each external feature extractor may need to provide a definition of a specific TOM query that is necessary for that specific feature extractor.