Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
adding example for oie in README
Browse files Browse the repository at this point in the history
  • Loading branch information
gkiril committed Sep 13, 2017
1 parent 5a14e26 commit b53ef5a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ An Open Information Extraction system, providing useful extractions:
Open Information Extraction (OIE) systems aim to extract unseen relations and their arguments from unstructured text in unsupervised manner. In its simplest form, given a natural language sentence, they extract information in the form of a triple, consisted of subject (S), relation (R) and object (O).

Suppose we have the following input sentence:
```
AMD, which is based in U.S., is a technology company.
```

An OIE system aims to make the following extractions:

```
("AMD"; "is based in"; "U.S.")
("AMD"; "is"; "technology company")
```

0 comments on commit b53ef5a

Please sign in to comment.