wiki:private/NlpInPracticeCourse/InformationExtraction

Extracting structured information from text

IA161 NLP in Practice Course, Course Guarantee: Aleš Horák

Prepared by: Zuzana Nevěřilová

State of the Art

Information extraction (IE) is a technology based on analyzing natural language in order to extract snippets of information. The process takes texts (and sometimes speech) as input and produces fixed-format, unambiguous data as output. This data may be used directly for display to users, or may be stored in a database or spreadsheet for later analysis, or may be used for indexing purposes in information retrieval (IR) applications such as Internet search engines like Google.

References

  1. Piskorski, J. and Yangarber, R. Information Extraction: Past, Present and Future, pages 23–49. Springer Berlin Heidelberg, Berlin, Heidelberg, 2013.
  2. Aydar, Mehmet, Ozge Bozal, and Furkan Ozbay. Neural relation extraction: a survey. arXiv e-prints (2020).
  3. Li, Qing, et al. "A comprehensive exploration of semantic relation extraction via pre-trained CNNs." Knowledge-Based Systems (2020): 105488.

Practical Session

The task will proceed using Python notebook run in web browser in the Google Colaboratory environment with the MU G-Suite disk access.

In case of running the codes in a local environment, the requirements are Python 3, and NLTK module.

  1. Create <YOUR_FILE>, a text file named ia161-UCO-08.txt where UCO is your university ID.
  2. Access the Python notebook in the Google Colab environment and make your own copy. Do not forget to save your work if you want to see your changes later, leaving the browser will throw away all changes!
  3. The colab reads file input.txt (each line is word|definition) and outputs hypernym for each word.
  4. Default approach is naive: first noun in definition is hypernym
  5. Using the gold standard, evaluate the naive approach.
  6. Improve the find_hyper() function to provide better results. Evaluate the new version.
  7. Copy the updated function find_hyper() and the output into <YOUR_FILE>. Please don't submit the whole notebook.

Gold standard to evaluate your result: gold_en.txt

Last modified 6 months ago Last modified on Sep 18, 2023, 3:05:05 PM

Attachments (9)

Download all attachments as: .zip