Releases: philgooch/abbreviation-extraction
Releases · philgooch/abbreviation-extraction
v0.2.5 Release
v0.2.4 Release
- Adds options to return best definition in cases of multiple definitions for each term:
- Adds
most_common_definition
option to return most frequently encountered definition for each term - Adds
first_definition
option to return the first encountered definition for each term - Default is as before: for each term, return most recently encountered definition
- Also removes quotes around potential candidate terms
v0.2.3 Release
- Enforces leading whitespace before opening parenthesis
- This avoids erroneous matching within mathematical and chemical formulae
v0.2.2 Release
- Guarantee that tokens are not empty strings (#17)
Updates README and License
Original source is gone, I've updated the license to MIT
v0.1.5 Release
- Allows abbreviation to be delimited by ';' or ':' within parentheses, e.g.
Theory of mind (ToM; Premack 1978)
- Tokenises definition candidates on both whitespace and hyphens
v0.1.4 Release
Fixed incorrect Candidate definition so that it correctly extends the str
base class
v0.1.3 Release
- HOTFIX: Catch IndexError exceptions
v0.1.2 Release
- Updates abbreviation candidate logic so that all checks run
- Candidate fails if any of the candidate conditions fails
v0.1.1 Release
- Adds setup and Travis CI