doberst commited on
Commit
954707d
1 Parent(s): cccaae8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -6,7 +6,7 @@ license: apache-2.0
6
 
7
  <!-- Provide a quick summary of what the model is/does. -->
8
 
9
- dragon-mistral-7b-v0 part of the dRAGon ("Delivering RAG On ...") model series, RAG-instruct trained on top of a Mistral-7B base model.
10
 
11
  DRAGON models are fine-tuned with high-quality custom instruct datasets, designed for production quality use in RAG scenarios.
12
 
@@ -16,10 +16,10 @@ DRAGON models are fine-tuned with high-quality custom instruct datasets, designe
16
  Evaluated against the benchmark test: [RAG-Instruct-Benchmark-Tester](https://www.huggingface.co/datasets/llmware/rag_instruct_benchmark_tester)
17
  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.
18
 
19
- --**Accuracy Score**: **94.75** correct out of 100
20
  --Not Found Classification: 95.0%
21
- --Boolean: 94.0%
22
- --Math/Logic: 77.5%
23
  --Complex Questions (1-5): 4 (Low-Medium)
24
  --Summarization Quality (1-5): 4 (Coherent, extractive)
25
  --Hallucinations: No hallucinations observed in test runs.
@@ -31,10 +31,10 @@ For test run results (and good indicator of target use cases), please see the fi
31
  <!-- Provide a longer summary of what this model is. -->
32
 
33
  - **Developed by:** llmware
34
- - **Model type:** Mistral-7B
35
  - **Language(s) (NLP):** English
36
  - **License:** Apache 2.0
37
- - **Finetuned from model:** Mistral-7B-Base
38
 
39
  ## Uses
40
 
@@ -72,8 +72,8 @@ Any model can provide inaccurate or incomplete information, and should be used i
72
  The fastest way to get started with dRAGon is through direct import in transformers:
73
 
74
  from transformers import AutoTokenizer, AutoModelForCausalLM
75
- tokenizer = AutoTokenizer.from_pretrained("dragon-mistral-7b-v0")
76
- model = AutoModelForCausalLM.from_pretrained("dragon-mistral-7b-v0")
77
 
78
  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.
79
 
 
6
 
7
  <!-- Provide a quick summary of what the model is/does. -->
8
 
9
+ dragon-deci-7b-v0 part of the dRAGon ("Delivering RAG On ...") model series, RAG-instruct trained on top of a Deci-7B base model.
10
 
11
  DRAGON models are fine-tuned with high-quality custom instruct datasets, designed for production quality use in RAG scenarios.
12
 
 
16
  Evaluated against the benchmark test: [RAG-Instruct-Benchmark-Tester](https://www.huggingface.co/datasets/llmware/rag_instruct_benchmark_tester)
17
  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.
18
 
19
+ --**Accuracy Score**: **97.5** correct out of 100
20
  --Not Found Classification: 95.0%
21
+ --Boolean: 92.5%
22
+ --Math/Logic: 91.25%
23
  --Complex Questions (1-5): 4 (Low-Medium)
24
  --Summarization Quality (1-5): 4 (Coherent, extractive)
25
  --Hallucinations: No hallucinations observed in test runs.
 
31
  <!-- Provide a longer summary of what this model is. -->
32
 
33
  - **Developed by:** llmware
34
+ - **Model type:** Deci-7B
35
  - **Language(s) (NLP):** English
36
  - **License:** Apache 2.0
37
+ - **Finetuned from model:** Deci-7B-Base
38
 
39
  ## Uses
40
 
 
72
  The fastest way to get started with dRAGon is through direct import in transformers:
73
 
74
  from transformers import AutoTokenizer, AutoModelForCausalLM
75
+ tokenizer = AutoTokenizer.from_pretrained("dragon-deci-7b-v0")
76
+ model = AutoModelForCausalLM.from_pretrained("dragon-deci-7b-v0")
77
 
78
  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.
79