-
Notifications
You must be signed in to change notification settings - Fork 18
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
author name breaks search when including first name in unfielded search #222
Comments
See a fully parsed query example below. Note that the author field expansion always contains JWST. We can adjust query processing in a number of ways to resolve this:
Query: |
If you put in a first and last name before a keyword (unfielded) the search system is unable to retrieve relevant results, in some cases only finding a single or no document (e.g. for stephanie jarmak JWST the only record returned is one where "JWST," is an author).
The author name should be parsed into the author field and the non-author term into the abs field.
Examples:
Unfielded Query: "Stephanie Jarmak JWST" produced a result about starshade alignment.
Corrected Query: author:"Jarmak, Stephanie" AND abs:"JWST" yielded relevant papers on JWST observations and research.
Unfielded Query: "Anna Kelbert modem" led to irrelevant outcomes, including authors named "Modem" unrelated to her work.
Corrected Query: author:"Kelbert, Anna" AND abs:"modem" resulted in pertinent research related to electromagnetic and geophysical studies.
Unfielded Query: "Josh Colwell Saturn" brought up unrelated environmental science topics.
Corrected Query: author:"Colwell, Josh" AND abs:"Saturn" returned relevant studies on Saturn’s rings and related research.
Unfielded Query: "Erin Leonard Europa" found a 1963 paper on chondrites, entirely unrelated to Europa exploration.
Corrected Query: abs:"europa" AND abs:"Erin Leonard" provided accurate results on the Europa Clipper mission and Erin Leonard's contributions.
Unfielded Query: "Tracy Becker Saturn" produced irrelevant results, such as studies on brain flexibility and Z-pinches.
Corrected Query: abs:"saturn" AND author:"Tracy Becker" led to relevant research on Saturn's rings and moon-induced
The text was updated successfully, but these errors were encountered: