ksvmuralidhar commited on
Commit
9cd8b9a
1 Parent(s): 7b7fed2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -7
README.md CHANGED
@@ -10,12 +10,13 @@ pinned: false
10
  license: mit
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
14
 
15
- #### New Summarization & NER
 
 
 
 
16
 
17
- News summarization and NER application that uses "facebook/bart-base" that is fine-tuned using TensorFlow for summarization
18
- and "microsoft/deberta-base" that is fine-tuned using TensorFlow for token classification (NER).
19
-
20
- The notebook to fine-tune "facebook/bart-base" on CNN news summarization can be found <a href="https://github.com/ksv-muralidhar/hugging_face_tf_fine_tuning/blob/main/bart_en_summarization.ipynb">here</a><br>
21
- The notebook to fine-tune "microsoft/deberta-base" can be found <a href="https://github.com/ksv-muralidhar/hugging_face_tf_fine_tuning/blob/main/ner_deberta.ipynb">here</a>
 
10
  license: mit
11
  ---
12
 
13
+ #### New Summarization and NER
14
 
15
+ News summarization uses "facebook/bart-base" that is fine-tuned using TensorFlow for summarization using
16
+ <a href = "https://www.kaggle.com/datasets/gowrishankarp/newspaper-text-summarization-cnn-dailymail" target="_blank">CNN news articles</a> dataset.<br><br>
17
+ NER uses "microsoft/deberta-base" that is fine-tuned using TensorFlow for token classification (NER) using this
18
+ <a href="https://www.kaggle.com/datasets/saurabhprajapat/named-entity-recognition" target="_blank">dataset</a>.<br>The fine-tuning dataset contains annotated sentences.<br>
19
+ During inference, the input text is split into sentences using Spacy and entities are identified in each sentence.<br>
20
 
21
+ The notebook to fine-tune "facebook/bart-base" for news summarization can be found <a href="https://github.com/ksv-muralidhar/hugging_face_tf_fine_tuning/blob/main/bart_en_summarization.ipynb">here</a>.<br>
22
+ The notebook to fine-tune "microsoft/deberta-base" for NER can be found <a href="https://github.com/ksv-muralidhar/hugging_face_tf_fine_tuning/blob/main/ner_deberta.ipynb">here</a>.