WAQASCHANNA commited on
Commit
4bfa4ef
·
verified ·
1 Parent(s): 80aa59b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -0
README.md CHANGED
@@ -19,3 +19,21 @@ This app allows lawyers to quickly analyze legal documents using AI models from
19
  - Upload a document (in .txt format).
20
  - View the summary or analysis generated by the AI model.
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - Upload a document (in .txt format).
20
  - View the summary or analysis generated by the AI model.
21
 
22
+ Technologies:
23
+
24
+ streamlit
25
+ transformers
26
+
27
+ # to classify text as law-related or not using zero-shot classification
28
+ model="facebook/bart-large-mnli"
29
+
30
+ # "summarization"
31
+ model="facebook/bart-large-cnn"
32
+
33
+ #Named Entity Recognition (NER)
34
+ model="dslim/bert-base-NER"
35
+
36
+ Named Entity Recognition (NER) is a Natural Language Processing (NLP) technique used to identify and classify key information (entities)
37
+ in text. In the context of your legal document analysis project, NER plays an important role in extracting relevant entities such as names
38
+ of people, organizations, locations, dates, and more, which are crucial in legal texts.
39
+