Spaces:
Runtime error
Runtime error
File size: 210 Bytes
8f8a944 |
1 2 3 4 5 6 7 8 9 |
# Copyright (c) OpenMMLab. All rights reserved.
def pretrain_map_fn(example):
return {
'conversation': [{
'input': '',
'output': example['toy_text'].strip()
}]
}
|