DevopediaOrg / webapp

A dummy repo as a placeholder for Devopedia webapp. It will be used mainly to track issues.
7 stars 0 forks source link

Acronym tooltip disambiguation #468

Open arvindpdmn opened 3 years ago

arvindpdmn commented 3 years ago

Suppose an article uses the acronym "CSS". On mouse hover, the expanded form is shown as a tooltip. If there are multiple expansions (such as Cascading Style Sheets and Chirp Spread Spectrum), all the expansions are shown. This is a limitation of Devopedia platform. Instead, only the most relevant expansion should be shown. In the article titled CSS Grid Layout, the only sensible expansion of CSS is Cascading Style Sheets.

The job of the NLP model is to look at the current article context or even paragraph context to know which is the correct expansion.

Where do the expansions come from? Devopedia maintains acronyms in two database tables:

In other words, an acronym and it's expansion doesn't enter the Devopedia system until it's defined in some article. All article content plus the two acronym tables will be shared as data for this task.

Optional: The scope of this work can be expanded to acronyms that are not in the system. In these case, the expansions would have to come from external sources (databases, Wikipedia, Google search, etc.) This means that if a new acronym is used by an author without defining, we'll still be able to show the correct expansion.

arvindpdmn commented 3 years ago

Examples Extracted by Devopedia

Examples Not Extracted by Devopedia

Other Issues

arvindpdmn commented 3 years ago

Adeft links:

Oracle links:

Other links:

Ideas:

arvindpdmn commented 3 years ago

Our code: https://github.com/teja0508/AcronymLookup A related issue: update article caches when an acronym changes. Eg. A new acronym is used in article A. Later article B defines it for the first time. Article cache of A must be updated.