LZHgrla commited on
Commit
ff35221
1 Parent(s): d8a7d36

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -4
README.md CHANGED
@@ -116,13 +116,12 @@ def main(args):
116
  image_processor = vision_tower.image_processor
117
 
118
  conv = Conversation(
119
- system=system='<|start_header_id|>system<|end_header_id|>\n\nAnswer the questions.',
120
- roles=('<|start_header_id|>user<|end_header_id|>\n\n',
121
- '<|start_header_id|>assistant<|end_header_id|>\n\n'),
122
  messages=[],
123
  offset=0,
124
  sep_style=SeparatorStyle.MPT,
125
- sep='<|eot_id|>',
126
  )
127
  roles = conv.roles
128
 
 
116
  image_processor = vision_tower.image_processor
117
 
118
  conv = Conversation(
119
+ system=system='<|system|>\nAnswer the questions.',
120
+ roles=('<|user|>\n', '<|assistant|>\n'),
 
121
  messages=[],
122
  offset=0,
123
  sep_style=SeparatorStyle.MPT,
124
+ sep='<|end|>',
125
  )
126
  roles = conv.roles
127