doberst commited on
Commit
58d57fc
1 Parent(s): d995895

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -70,9 +70,9 @@ tokenizer = AutoTokenizer.from_pretrained("llmware/bling-1.4b-0.1")
70
  model = AutoModelForCausalLM.from_pretrained("llmware/bling-1.4b-0.1")
71
 
72
 
73
- The BLING model was fine-tuned with a simple "/<human>/ and '/<bot>/' wrapper", so to get the best results, wrap inference entries as:
74
 
75
- full_prompt = "'/<human>/': " + my_prompt + "\n" + "'/<bot>/': "
76
 
77
  The BLING model was fine-tuned with closed-context samples, which assume generally that the prompt consists of two sub-parts:
78
 
 
70
  model = AutoModelForCausalLM.from_pretrained("llmware/bling-1.4b-0.1")
71
 
72
 
73
+ The BLING model was fine-tuned with a simple "\<human>\ and \<bot>\ wrapper", so to get the best results, wrap inference entries as:
74
 
75
+ full_prompt = "\<human>\: " + my_prompt + "\n" + "\<bot>\: "
76
 
77
  The BLING model was fine-tuned with closed-context samples, which assume generally that the prompt consists of two sub-parts:
78