reichenbach commited on
Commit
4633c76
1 Parent(s): dede1db

Model Card Updation

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - multimodal-entailment
4
+ - generic
5
+
6
+ ---
7
+ ## Tensorflow Keras Implementation of Named Entity Recognition using Transformers.
8
+
9
+ This repo contains code using the model. [Named Entity Recognition using Transformers](https://keras.io/examples/nlp/ner_transformers/).
10
+
11
+ Credits: [Varun Singh](https://www.linkedin.com/in/varunsingh2/) - Original Author
12
+
13
+ HF Contribution: [Rishav Chandra Varma](https://huggingface.co/reichenbach)
14
+
15
+ ## Background Information
16
+
17
+ ### Introduction
18
+
19
+ Named Entity Recognition (NER) is the process of identifying named entities in text. Example of named entities are: "Person", "Location", "Organization", "Dates" etc. NER is essentially a token classification task where every token is classified into one or more predetermined categories.
20
+
21
+ We will train a simple Transformer based model to perform NER. We will be using the data from CoNLL 2003 shared task. For more information about the dataset, please visit the [dataset website](https://www.clips.uantwerpen.be/conll2003/ner/). However, since obtaining this data requires an additional step of getting a free license, we will be using HuggingFace's datasets library which contains a processed version of this [dataset](https://huggingface.co/datasets/conll2003).