Karols commited on
Commit
7f2d500
1 Parent(s): 4c8b5b6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -3
README.md CHANGED
@@ -26,7 +26,7 @@ import torch
26
 
27
  base_model_name = "bardsai/jaskier-7b-dpo-v5.6"
28
  chatbot = pipeline("conversational", model=base_model_name, torch_dtype=torch.float16, device_map="auto")
29
- conversation = Conversation("Can Poland run into space?")
30
  conversation = chatbot(conversation)
31
  print(conversation.messages[-1]["content"])
32
 
@@ -34,8 +34,7 @@ print(conversation.messages[-1]["content"])
34
 
35
  ## Output
36
 
37
- "Poland, as a nation, doesn't physically run or possess the capability to physically travel into space. However, Poland, like many other countries, supports scientific research and space exploration through its institutions and collaborations with international space agencies."
38
-
39
  If you still find any issues with "INST" character chain appearing in generated output, try our newest model: https://huggingface.co/bardsai/jaskier-7b-dpo-v6.1 . Re-tasking the prompt can also help.
40
  ## Changelog
41
 
 
26
 
27
  base_model_name = "bardsai/jaskier-7b-dpo-v5.6"
28
  chatbot = pipeline("conversational", model=base_model_name, torch_dtype=torch.float16, device_map="auto")
29
+ conversation = Conversation("Is bard an ML engineer?")
30
  conversation = chatbot(conversation)
31
  print(conversation.messages[-1]["content"])
32
 
 
34
 
35
  ## Output
36
 
37
+ "There is no direct personal connection between the concept of a "bard" and an "ML engineer." A bard is a mythical or literary figure, often a storyteller or musician, while an ML engineer refers to a Machine Learning engineer, a professional in the tech industry. They are unrelated entities, one fictional and the other a real-world occupation."
 
38
  If you still find any issues with "INST" character chain appearing in generated output, try our newest model: https://huggingface.co/bardsai/jaskier-7b-dpo-v6.1 . Re-tasking the prompt can also help.
39
  ## Changelog
40