truongphan commited on
Commit
e1f9165
1 Parent(s): 3ae7bf4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -1
README.md CHANGED
@@ -1,7 +1,9 @@
1
  # Vietnam Tourism Named Entity Recognition
2
  We fine-tuned BERT to train Vietnam tourism dataset for a question answering system. The model was called NER2QUES because it detected tourism NER in a sentence. From that, the system generated questions corresponding to NER types.
3
  # How to use
4
- You can use the model directly with a pipeline
 
 
5
  from simpletransformers.ner import NERModel, NERArgs
6
 
7
  line = "King Garden is located in Thanh Thuy, Phu Tho"
@@ -20,7 +22,11 @@ You can use the model directly with a pipeline
20
  l.append(line)
21
  predictions, raw_outputs = model.predict(l)
22
  print(predictions)
 
 
23
 
 
 
24
  # Authors
25
 
26
  1. Phuc Do, University of Information Technology, Ho Chi Minh national university, Vietnam
 
1
  # Vietnam Tourism Named Entity Recognition
2
  We fine-tuned BERT to train Vietnam tourism dataset for a question answering system. The model was called NER2QUES because it detected tourism NER in a sentence. From that, the system generated questions corresponding to NER types.
3
  # How to use
4
+ ## You can use the model directly within local machine
5
+
6
+
7
  from simpletransformers.ner import NERModel, NERArgs
8
 
9
  line = "King Garden is located in Thanh Thuy, Phu Tho"
 
22
  l.append(line)
23
  predictions, raw_outputs = model.predict(l)
24
  print(predictions)
25
+
26
+ ## You can use in Transformers
27
 
28
+
29
+
30
  # Authors
31
 
32
  1. Phuc Do, University of Information Technology, Ho Chi Minh national university, Vietnam