Update README.md
Browse files
README.md
CHANGED
@@ -3,11 +3,11 @@ license: apache-2.0
|
|
3 |
inference: false
|
4 |
---
|
5 |
|
6 |
-
# DRAGON-
|
7 |
|
8 |
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
|
10 |
-
dragon-
|
11 |
|
12 |
DRAGON models have been fine-tuned with the specific objective of fact-based question-answering over complex business and legal documents with an emphasis on reducing hallucinations and providing short, clear answers for workflow automation.
|
13 |
|
@@ -15,21 +15,21 @@ DRAGON models have been fine-tuned with the specific objective of fact-based que
|
|
15 |
### Benchmark Tests
|
16 |
|
17 |
Evaluated against the benchmark test: [RAG-Instruct-Benchmark-Tester](https://www.huggingface.co/datasets/llmware/rag_instruct_benchmark_tester)
|
18 |
-
1 Test Run
|
19 |
-
|
20 |
-
--**Accuracy Score**: **99.
|
21 |
-
--Not Found Classification:
|
22 |
-
--Boolean:
|
23 |
-
--Math/Logic:
|
24 |
-
--Complex Questions (1-5):
|
25 |
-
--Summarization Quality (1-5):
|
26 |
--Hallucinations: No hallucinations observed in test runs.
|
27 |
|
28 |
-
For test run results (and good indicator of target use cases), please see the files ("core_rag_test" and "answer_sheet" in this repo).
|
29 |
|
30 |
-
Please note that these test results were achieved using the 4_K_M quantized version of this model - [dragon-
|
31 |
|
32 |
-
Note: compare results with [dragon-mistral-
|
33 |
|
34 |
|
35 |
### Model Description
|
@@ -37,10 +37,10 @@ Note: compare results with [dragon-mistral-7b](https://www.huggingface.co/llmwar
|
|
37 |
<!-- Provide a longer summary of what this model is. -->
|
38 |
|
39 |
- **Developed by:** llmware
|
40 |
-
- **Model type:**
|
41 |
- **Language(s) (NLP):** English
|
42 |
- **License:** Apache 2.0
|
43 |
-
- **Finetuned from model:**
|
44 |
|
45 |
|
46 |
### Direct Use
|
@@ -66,8 +66,8 @@ Any model can provide inaccurate or incomplete information, and should be used i
|
|
66 |
The fastest way to get started with dRAGon is through direct import in transformers:
|
67 |
|
68 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
69 |
-
tokenizer = AutoTokenizer.from_pretrained("dragon-
|
70 |
-
model = AutoModelForCausalLM.from_pretrained("dragon-
|
71 |
|
72 |
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.
|
73 |
|
@@ -93,15 +93,15 @@ If you are using a HuggingFace generation script:
|
|
93 |
inputs = tokenizer(new_prompt, return_tensors="pt")
|
94 |
start_of_output = len(inputs.input_ids[0])
|
95 |
|
96 |
-
# temperature: set at 0.
|
97 |
# max_new_tokens: set at 100 - may prematurely stop a few of the summaries
|
98 |
|
99 |
outputs = model.generate(
|
100 |
inputs.input_ids.to(device),
|
101 |
eos_token_id=tokenizer.eos_token_id,
|
102 |
pad_token_id=tokenizer.eos_token_id,
|
103 |
-
do_sample=
|
104 |
-
temperature=0.
|
105 |
max_new_tokens=100,
|
106 |
)
|
107 |
|
|
|
3 |
inference: false
|
4 |
---
|
5 |
|
6 |
+
# DRAGON-QWEN-7B
|
7 |
|
8 |
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
|
10 |
+
dragon-qwen-7b is part of the dRAGon ("Delivering RAG On ...") model series, RAG-instruct trained on top of a Qwen2 7b base model.
|
11 |
|
12 |
DRAGON models have been fine-tuned with the specific objective of fact-based question-answering over complex business and legal documents with an emphasis on reducing hallucinations and providing short, clear answers for workflow automation.
|
13 |
|
|
|
15 |
### Benchmark Tests
|
16 |
|
17 |
Evaluated against the benchmark test: [RAG-Instruct-Benchmark-Tester](https://www.huggingface.co/datasets/llmware/rag_instruct_benchmark_tester)
|
18 |
+
1 Test Run with sample=False & temperature=0.0 (deterministic output) - 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 |
+
--**Accuracy Score**: **99.0** correct out of 100
|
21 |
+
--Not Found Classification: 85.0%
|
22 |
+
--Boolean: 100.0%
|
23 |
+
--Math/Logic: 92.5%
|
24 |
+
--Complex Questions (1-5): 5 (Best in Class)
|
25 |
+
--Summarization Quality (1-5): 3 (Average)
|
26 |
--Hallucinations: No hallucinations observed in test runs.
|
27 |
|
28 |
+
For test run results (and good indicator of target use cases), please see the files ("core_rag_test" and "answer_sheet" in this repo).
|
29 |
|
30 |
+
Please note that these test results were achieved using the 4_K_M quantized version of this model - [dragon-qwen-7b-gguf](https://www.huggingface.co/llmware/dragon-qwen-7b-gguf).
|
31 |
|
32 |
+
Note: compare results with [dragon-mistral-0.3-gguf](https://www.huggingface.co/llmware/dragon-mistral-0.3-gguf).
|
33 |
|
34 |
|
35 |
### Model Description
|
|
|
37 |
<!-- Provide a longer summary of what this model is. -->
|
38 |
|
39 |
- **Developed by:** llmware
|
40 |
+
- **Model type:** Qwen
|
41 |
- **Language(s) (NLP):** English
|
42 |
- **License:** Apache 2.0
|
43 |
+
- **Finetuned from model:** Qwen2-7b-base
|
44 |
|
45 |
|
46 |
### Direct Use
|
|
|
66 |
The fastest way to get started with dRAGon is through direct import in transformers:
|
67 |
|
68 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
69 |
+
tokenizer = AutoTokenizer.from_pretrained("dragon-qwen-7b")
|
70 |
+
model = AutoModelForCausalLM.from_pretrained("dragon-qwen-7b")
|
71 |
|
72 |
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.
|
73 |
|
|
|
93 |
inputs = tokenizer(new_prompt, return_tensors="pt")
|
94 |
start_of_output = len(inputs.input_ids[0])
|
95 |
|
96 |
+
# temperature: set at 0.0 for consistency of output
|
97 |
# max_new_tokens: set at 100 - may prematurely stop a few of the summaries
|
98 |
|
99 |
outputs = model.generate(
|
100 |
inputs.input_ids.to(device),
|
101 |
eos_token_id=tokenizer.eos_token_id,
|
102 |
pad_token_id=tokenizer.eos_token_id,
|
103 |
+
do_sample=False,
|
104 |
+
temperature=0.0,
|
105 |
max_new_tokens=100,
|
106 |
)
|
107 |
|