doberst commited on
Commit
1c95b4c
·
verified ·
1 Parent(s): b464b6b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -7
README.md CHANGED
@@ -5,7 +5,7 @@ license: apache-2.0
5
 
6
  <!-- Provide a quick summary of what the model is/does. -->
7
 
8
- industry-bert-contracts-v0.1 is part of a series of industry-fine-tuned sentence_transformer embedding models.
9
 
10
  ## Model Details
11
 
@@ -13,9 +13,8 @@ industry-bert-contracts-v0.1 is part of a series of industry-fine-tuned sentence
13
 
14
  <!-- Provide a longer summary of what this model is. -->
15
 
16
- industry-bert-contracts-v0.1 is a domain fine-tuned BERT-based 768-parameter Sentence Transformer model, intended to as a "drop-in"
17
- substitute for contractual and legal domains. This model was trained on a wide range of publicly available commercial contracts,
18
- including open source contract datasets.
19
 
20
  - **Developed by:** llmware
21
  - **Model type:** BERT-based Industry domain fine-tuned Sentence Transformer architecture
@@ -27,13 +26,13 @@ including open source contract datasets.
27
 
28
  from transformers import AutoTokenizer, AutoModel
29
 
30
- tokenizer = AutoTokenizer.from_pretrained("llmware/industry-bert-contracts-v0.1")
31
- model = AutoModel.from_pretrained("llmware/industry-bert-contracts-v0.1")
32
 
33
 
34
  ## Bias, Risks, and Limitations
35
 
36
- This is a semantic embedding model, fine-tuned on public domain contracts and related documents. Results may vary if used outside of this
37
  domain, and like any embedding model, there is always the potential for anomalies in the vector embedding space. No specific safeguards have
38
  put in place for safety or mitigate potential bias in the dataset.
39
 
 
5
 
6
  <!-- Provide a quick summary of what the model is/does. -->
7
 
8
+ industry-bert-loans is part of a series of industry-fine-tuned sentence_transformer embedding models.
9
 
10
  ## Model Details
11
 
 
13
 
14
  <!-- Provide a longer summary of what this model is. -->
15
 
16
+ industry-bert-loans is a domain fine-tuned BERT-based 768-parameter Sentence Transformer model, intended to as a "drop-in"
17
+ substitute optimized for loan agreements. This model was trained on a wide range of publicly available commercial lending agreements.
 
18
 
19
  - **Developed by:** llmware
20
  - **Model type:** BERT-based Industry domain fine-tuned Sentence Transformer architecture
 
26
 
27
  from transformers import AutoTokenizer, AutoModel
28
 
29
+ tokenizer = AutoTokenizer.from_pretrained("llmware/industry-bert-loan")
30
+ model = AutoModel.from_pretrained("llmware/industry-bert-loan")
31
 
32
 
33
  ## Bias, Risks, and Limitations
34
 
35
+ This is a semantic embedding model, fine-tuned on publicly available loan, security, credit and underwriting agreements. Results may vary if used outside of this
36
  domain, and like any embedding model, there is always the potential for anomalies in the vector embedding space. No specific safeguards have
37
  put in place for safety or mitigate potential bias in the dataset.
38