OMG-LLaVA / xtuner /tools /list_dataset_format.py
zhangtao-whu's picture
Upload folder using huggingface_hub
476ac07 verified
raw
history blame contribute delete
411 Bytes
# 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()