mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-04 01:50:47 +00:00
21 lines
508 B
Python
21 lines
508 B
Python
import json
|
|
import csv
|
|
|
|
# specify input and output file paths
|
|
input_file = 'laion_synthetic_filtered_large.json'
|
|
output_file = 'laion_synthetic_filtered_large.tsv'
|
|
|
|
# load JSON data from input file
|
|
with open(input_file, 'r') as f:
|
|
data = json.load(f)
|
|
|
|
# extract header and data from JSON
|
|
header = data[0].keys()
|
|
rows = [x.values() for x in data]
|
|
|
|
# write data to TSV file
|
|
with open(output_file, 'w') as f:
|
|
writer = csv.writer(f, delimiter='\t')
|
|
writer.writerow(header)
|
|
writer.writerows(rows)
|