Spaces:
Running
Running
File size: 270 Bytes
a25940e |
1 2 3 4 5 6 7 8 9 10 |
# Copyright (c) OpenMMLab. All rights reserved.
def single_turn_map_fn(example):
return {
'conversation': [{
'system': example['toy_system'],
'input': example['toy_input'],
'output': example['toy_output']
}]
}
|