Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 880 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 880 Bytes

Terms

Get related terms to a word.

Live version here

About

I was asked to come up with a Neural Network capable of giving related terms to a word. This is useful when you're doing a systematic review since related terms can help you build your search string. So, instead of a Neural Network, I came up with this. This script get the related terms from Wikipedia. It's kinda silly, but it works.

How to use it

Insert the script to your project

<script src="js/terms.js"></script>

Since the script will make 3 requests to Wikipedia, you should call it with async (feel free to change the code to use then).

const terms = await getRelatedTerms('your_term_here');