ksvmuralidhar commited on
Commit
72ffeb3
1 Parent(s): 7dd67ed

Update README.md

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