Spaces:
Runtime error
Runtime error
File size: 411 Bytes
476ac07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Copyright (c) OpenMMLab. All rights reserved.
from xtuner.dataset.map_fns import DATASET_FORMAT_MAPPING
def main():
dataset_format = DATASET_FORMAT_MAPPING.keys()
print('======================DATASET_FORMAT======================')
for format in dataset_format:
print(format)
print('==========================================================')
if __name__ == '__main__':
main()
|