Locutusque commited on
Commit
059ca04
1 Parent(s): 24e7240

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -79,4 +79,6 @@ while True:
79
  break
80
  output_text = generate_text(model, tokenizer, prompt)
81
  print(output_text)
82
- ```
 
 
 
79
  break
80
  output_text = generate_text(model, tokenizer, prompt)
81
  print(output_text)
82
+ ```
83
+ ## Deploying and training the model
84
+ The model has been fine-tuned on a specific input format that goes like this ```"<|SYSTEM|> {system prompt} <|USER|> {user prompt} <|ASSISTANT|> {model prediction} <|End|>".``` For the best performance from the model the input text should be as follows ```<|SYSTEM|> {system prompt} <|USER|> {user prompt} <|ASSISTANT|> ``` and the target/label should be as follows ```<|SYSTEM|> {system prompt} <|USER|> {user prompt} <|ASSISTANT|> {dataset output} <|End|>```