ychenNLP commited on
Commit
65a05e2
1 Parent(s): 13f9bc5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -26,6 +26,10 @@ datasets:
26
  | | 89.4 |
27
 
28
  ## How to use
 
 
 
 
29
  ```python
30
  >>> from transformers import pipeline, AutoModelForTokenClassification, AutoTokenizer, AuotoModelForSequenceClassification
31
 
 
26
  | | 89.4 |
27
 
28
  ## How to use
29
+ Workflow of a relation extraction model:
30
+ 1. Input --> NER model --> Entities
31
+ 2. Input sentence + Entity 1 + Entity 2 --> Relation Classification Model --> Relation Type
32
+
33
  ```python
34
  >>> from transformers import pipeline, AutoModelForTokenClassification, AutoTokenizer, AuotoModelForSequenceClassification
35