Upload README.md
Browse files
README.md
CHANGED
@@ -1,118 +1,85 @@
|
|
1 |
---
|
2 |
-
license:
|
3 |
-
inference: false
|
4 |
---
|
5 |
|
6 |
-
#
|
7 |
|
8 |
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
|
10 |
-
|
11 |
|
12 |
-
|
13 |
|
|
|
14 |
|
15 |
-
|
16 |
|
17 |
-
Evaluated against the benchmark test: [RAG-Instruct-Benchmark-Tester](https://www.huggingface.co/datasets/llmware/rag_instruct_benchmark_tester)
|
18 |
-
Average of 2 Test Runs with 1 point for correct answer, 0.5 point for partial correct or blank / NF, 0.0 points for incorrect, and -1 points for hallucinations.
|
19 |
|
20 |
-
|
21 |
-
--Not Found Classification: 95.0%
|
22 |
-
--Boolean: 97.5%
|
23 |
-
--Math/Logic: 80.0%
|
24 |
-
--Complex Questions (1-5): 4 (Above Average - multiple-choice, causal)
|
25 |
-
--Summarization Quality (1-5): 4 (Above Average)
|
26 |
-
--Hallucinations: No hallucinations observed in test runs.
|
27 |
|
28 |
-
|
|
|
|
|
|
|
29 |
|
30 |
-
### Model Description
|
31 |
|
32 |
-
|
|
|
33 |
|
34 |
-
|
35 |
-
|
36 |
-
- **Language(s) (NLP):** English
|
37 |
-
- **License:** Apache 2.0
|
38 |
-
- **Finetuned from model:** Microsoft Phi-3
|
39 |
|
40 |
-
|
|
|
41 |
|
42 |
-
|
|
|
|
|
43 |
|
44 |
-
|
|
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
BLING is designed for enterprise automation use cases, especially in knowledge-intensive industries, such as financial services,
|
56 |
-
legal and regulatory industries with complex information sources.
|
57 |
-
|
58 |
-
BLING models have been trained for common RAG scenarios, specifically: question-answering, key-value extraction, and basic summarization as the core instruction types
|
59 |
-
without the need for a lot of complex instruction verbiage - provide a text passage context, ask questions, and get clear fact-based responses.
|
60 |
-
|
61 |
-
|
62 |
-
## Bias, Risks, and Limitations
|
63 |
-
|
64 |
-
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
65 |
-
|
66 |
-
Any model can provide inaccurate or incomplete information, and should be used in conjunction with appropriate safeguards and fact-checking mechanisms.
|
67 |
-
|
68 |
-
|
69 |
-
## How to Get Started with the Model
|
70 |
-
|
71 |
-
The fastest way to get started with BLING is through direct import in transformers:
|
72 |
-
|
73 |
-
from transformers import AutoTokenizer, AutoModelForCausalLM
|
74 |
-
tokenizer = AutoTokenizer.from_pretrained("bling-phi-2-v0", trust_remote_code=True)
|
75 |
-
model = AutoModelForCausalLM.from_pretrained("bling-phi-2-v0", trust_remote_code=True)
|
76 |
-
|
77 |
-
Please refer to the generation_test .py files in the Files repository, which includes 200 samples and script to test the model. The **generation_test_llmware_script.py** includes built-in llmware capabilities for fact-checking, as well as easy integration with document parsing and actual retrieval to swap out the test set for RAG workflow consisting of business documents.
|
78 |
-
|
79 |
-
The dRAGon model was fine-tuned with a simple "\<human> and \<bot> wrapper", so to get the best results, wrap inference entries as:
|
80 |
-
|
81 |
-
full_prompt = "<human>: " + my_prompt + "\n" + "<bot>:"
|
82 |
-
|
83 |
-
The BLING model was fine-tuned with closed-context samples, which assume generally that the prompt consists of two sub-parts:
|
84 |
-
|
85 |
-
1. Text Passage Context, and
|
86 |
-
2. Specific question or instruction based on the text passage
|
87 |
|
88 |
-
|
89 |
|
90 |
-
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
-
If you are using a HuggingFace generation script:
|
94 |
|
95 |
-
# prepare prompt packaging used in fine-tuning process
|
96 |
-
new_prompt = "<human>: " + entries["context"] + "\n" + entries["query"] + "\n" + "<bot>:"
|
97 |
|
98 |
-
|
99 |
-
|
100 |
|
101 |
-
|
102 |
-
|
|
|
103 |
|
104 |
-
|
105 |
-
inputs.input_ids.to(device),
|
106 |
-
eos_token_id=tokenizer.eos_token_id,
|
107 |
-
pad_token_id=tokenizer.eos_token_id,
|
108 |
-
do_sample=True,
|
109 |
-
temperature=0.3,
|
110 |
-
max_new_tokens=100,
|
111 |
-
)
|
112 |
-
|
113 |
-
output_only = tokenizer.decode(outputs[0][start_of_output:],skip_special_tokens=True)
|
114 |
|
|
|
115 |
|
|
|
116 |
## Model Card Contact
|
117 |
|
118 |
-
Darren Oberst & llmware team
|
|
|
|
|
|
1 |
---
|
2 |
+
license: cc-by-sa-4.0
|
3 |
+
inference: false
|
4 |
---
|
5 |
|
6 |
+
# SLIM-EXTRACT
|
7 |
|
8 |
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
|
10 |
+
**slim-extract** implements a specialized function-calling customizable 'extract' capability that takes as an input a context passage, a customized key, and outputs a python dictionary with key that corresponds to the customized key, with a value consisting of a list of items extracted from the text corresponding to that key, e.g.,
|
11 |
|
12 |
+
`{'universities': ['Berkeley, Stanford, Yale, University of Florida, ...'] }`
|
13 |
|
14 |
+
This model is fine-tuned on top of [**llmware/bling-stable-lm-3b-4e1t-v0**](https://huggingface.co/llmware/bling-stable-lm-3b-4e1t-v0), which in turn, is a fine-tune of stabilityai/stablelm-3b-4elt.
|
15 |
|
16 |
+
For fast inference use, we would recommend the 'quantized tool' version, e.g., [**'slim-extract-tool'**](https://huggingface.co/llmware/slim-extract-tool).
|
17 |
|
|
|
|
|
18 |
|
19 |
+
## Prompt format:
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
`function = "extract"`
|
22 |
+
`params = "{custom key}"`
|
23 |
+
`prompt = "<human> " + {text} + "\n" + `
|
24 |
+
`"<{function}> " + {params} + "</{function}>" + "\n<bot>:"`
|
25 |
|
|
|
26 |
|
27 |
+
<details>
|
28 |
+
<summary>Transformers Script </summary>
|
29 |
|
30 |
+
model = AutoModelForCausalLM.from_pretrained("llmware/slim-extract")
|
31 |
+
tokenizer = AutoTokenizer.from_pretrained("llmware/slim-extract")
|
|
|
|
|
|
|
32 |
|
33 |
+
function = "extract"
|
34 |
+
params = "company"
|
35 |
|
36 |
+
text = "Tesla stock declined yesterday 8% in premarket trading after a poorly-received event in San Francisco yesterday, in which the company indicated a likely shortfall in revenue."
|
37 |
+
|
38 |
+
prompt = "<human>: " + text + "\n" + f"<{function}> {params} </{function}>\n<bot>:"
|
39 |
|
40 |
+
inputs = tokenizer(prompt, return_tensors="pt")
|
41 |
+
start_of_input = len(inputs.input_ids[0])
|
42 |
|
43 |
+
outputs = model.generate(
|
44 |
+
inputs.input_ids.to('cpu'),
|
45 |
+
eos_token_id=tokenizer.eos_token_id,
|
46 |
+
pad_token_id=tokenizer.eos_token_id,
|
47 |
+
do_sample=True,
|
48 |
+
temperature=0.3,
|
49 |
+
max_new_tokens=100
|
50 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
+
output_only = tokenizer.decode(outputs[0][start_of_input:], skip_special_tokens=True)
|
53 |
|
54 |
+
print("output only: ", output_only)
|
55 |
|
56 |
+
# here's the fun part
|
57 |
+
try:
|
58 |
+
output_only = ast.literal_eval(llm_string_output)
|
59 |
+
print("success - converted to python dictionary automatically")
|
60 |
+
except:
|
61 |
+
print("fail - could not convert to python dictionary automatically - ", llm_string_output)
|
62 |
+
|
63 |
+
</details>
|
64 |
+
|
65 |
+
<details>
|
66 |
|
|
|
67 |
|
|
|
|
|
68 |
|
69 |
+
|
70 |
+
<summary>Using as Function Call in LLMWare</summary>
|
71 |
|
72 |
+
from llmware.models import ModelCatalog
|
73 |
+
slim_model = ModelCatalog().load_model("llmware/slim-extract")
|
74 |
+
response = slim_model.function_call(text,params=["company"], function="extract")
|
75 |
|
76 |
+
print("llmware - llm_response: ", response)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
+
</details>
|
79 |
|
80 |
+
|
81 |
## Model Card Contact
|
82 |
|
83 |
+
Darren Oberst & llmware team
|
84 |
+
|
85 |
+
[Join us on Discord](https://discord.gg/MhZn5Nc39h)
|