sguarnaccio commited on
Commit
647b45a
·
1 Parent(s): 61773de

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -1
README.md CHANGED
@@ -7,4 +7,32 @@ metrics:
7
  pipeline_tag: text-classification
8
  tags:
9
  - legal
10
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pipeline_tag: text-classification
8
  tags:
9
  - legal
10
+ ---
11
+ # Model Card for Model ID
12
+
13
+ <!-- Provide a quick summary of what the model is/does. -->
14
+
15
+ Model to predict and extract governing law from legal documents.
16
+
17
+ ## Model Details
18
+
19
+ ### Model Description
20
+
21
+ <!-- Provide a longer summary of what this model is. -->
22
+
23
+ - **Developed by:** Sean Guarnaccio
24
+ - **Model type:** Text Classification/NER
25
+ - **Language(s) (NLP):** Pytorch
26
+ - **License:** [More Information Needed]
27
+ - **Finetuned from model [optional]:** nlpaueb/bert-base-uncased-contracts
28
+
29
+ ### Direct Use
30
+
31
+ Identify the section of a legal contract that contains the governing law and extract then extract the value.
32
+ ## How to Get Started with the Model
33
+
34
+ Use the code below to get started with the model.
35
+ ```python
36
+ from clf_ner import clf_ner
37
+ clf_ner.predict("This agreement shall be governed by the laws of the State of New Jersey")
38
+ ```