Update README.md
Browse files
README.md
CHANGED
@@ -81,6 +81,8 @@ The fastest way to get started with BLING is through direct import in transforme
|
|
81 |
model = AutoModelForCausalLM.from_pretrained("llmware/bling-falcon-1b-0.1")
|
82 |
|
83 |
|
|
|
|
|
84 |
The BLING model was fine-tuned with a simple "\<human> and \<bot> wrapper", so to get the best results, wrap inference entries as:
|
85 |
|
86 |
full_prompt = "\<human>\: " + my_prompt + "\n" + "\<bot>\:"
|
|
|
81 |
model = AutoModelForCausalLM.from_pretrained("llmware/bling-falcon-1b-0.1")
|
82 |
|
83 |
|
84 |
+
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.
|
85 |
+
|
86 |
The BLING model was fine-tuned with a simple "\<human> and \<bot> wrapper", so to get the best results, wrap inference entries as:
|
87 |
|
88 |
full_prompt = "\<human>\: " + my_prompt + "\n" + "\<bot>\:"
|