Spaces:
Sleeping
Sleeping
File size: 343 Bytes
c85b3bc | 1 2 3 4 5 6 7 8 9 10 | from utils.data_utils import augment_data_with_llm, add_column_metadata
import json
# with open('data/id_to_metadata.json', 'r') as f:
# id_to_metadata = json.load(f)
# add_column_metadata(id_to_metadata)
with open('data/id_to_metadata_col.json', 'r') as f:
id_to_metadata_col = json.load(f)
augment_data_with_llm(id_to_metadata_col) |