doberst commited on
Commit
a6e8617
1 Parent(s): 3eecc7a

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +113 -3
README.md CHANGED
@@ -1,3 +1,113 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ inference: false
4
+ ---
5
+
6
+ # DRAGON-MISTRAL-0.3
7
+
8
+ <!-- Provide a quick summary of what the model is/does. -->
9
+
10
+ dragon-mistral-0.3 is part of the dRAGon ("Delivering RAG On ...") model series, RAG-instruct trained on top of a Mistral 7b (0.3) 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
+
14
+
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 temperature = 0.0 and sample = False) 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
+ --**Accuracy Score**: **99.5** correct out of 100
21
+ --Not Found Classification: 95.0%
22
+ --Boolean: 82.5%
23
+ --Math/Logic: 67.5%
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
+ 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-mistral-0.3-gguf](https://www.huggingface.co/llmware/dragon-mistral-0.3-gguf).
31
+
32
+ Note: compare results with [dragon-mistral-7b](https://www.huggingface.co/llmware/dragon-mistral-7b-v0).
33
+
34
+
35
+ ### Model Description
36
+
37
+ <!-- Provide a longer summary of what this model is. -->
38
+
39
+ - **Developed by:** llmware
40
+ - **Model type:** mistral
41
+ - **Language(s) (NLP):** English
42
+ - **License:** Apache 2.0
43
+ - **Finetuned from model:** Mistral-7b-base-0.3
44
+
45
+
46
+ ### Direct Use
47
+
48
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
49
+
50
+ DRAGON is designed for enterprise automation use cases, especially in knowledge-intensive industries, such as financial services,
51
+ legal and regulatory industries with complex information sources.
52
+
53
+ DRAGON models have been trained for common RAG scenarios, specifically: question-answering, key-value extraction, and basic summarization as the core instruction types
54
+ without the need for a lot of complex instruction verbiage - provide a text passage context, ask questions, and get clear fact-based responses.
55
+
56
+
57
+ ## Bias, Risks, and Limitations
58
+
59
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
60
+
61
+ Any model can provide inaccurate or incomplete information, and should be used in conjunction with appropriate safeguards and fact-checking mechanisms.
62
+
63
+
64
+ ## How to Get Started with the Model
65
+
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-mistral-0.3")
70
+ model = AutoModelForCausalLM.from_pretrained("dragon-mistral-0.3")
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
+
74
+ The dRAGon model was fine-tuned with a simple "\<human> and \<bot>" wrapper, so to get the best results, wrap inference entries as:
75
+
76
+ full_prompt = "<human>: " + my_prompt + "\n" + "<bot>:"
77
+
78
+ The BLING model was fine-tuned with closed-context samples, which assume generally that the prompt consists of two sub-parts:
79
+
80
+ 1. Text Passage Context, and
81
+ 2. Specific question or instruction based on the text passage
82
+
83
+ To get the best results, package "my_prompt" as follows:
84
+
85
+ my_prompt = {{text_passage}} + "\n" + {{question/instruction}}
86
+
87
+
88
+ If you are using a HuggingFace generation script:
89
+
90
+ # prepare prompt packaging used in fine-tuning process
91
+ new_prompt = "<human>: " + entries["context"] + "\n" + entries["query"] + "\n" + "<bot>:"
92
+
93
+ inputs = tokenizer(new_prompt, return_tensors="pt")
94
+ start_of_output = len(inputs.input_ids[0])
95
+
96
+ # temperature: set at 0.3 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=True,
104
+ temperature=0.3,
105
+ max_new_tokens=100,
106
+ )
107
+
108
+ output_only = tokenizer.decode(outputs[0][start_of_output:],skip_special_tokens=True)
109
+
110
+
111
+ ## Model Card Contact
112
+
113
+ Darren Oberst & llmware team