Spaces:
Sleeping
Sleeping
def collect_datasets(): | |
datasets = [ | |
{"name": "Customer Support Chat Data", "url": "https://www.kaggle.com/datasets/customer-support-chat"}, | |
{"name": "Operational Metrics Dataset", "url": "https://huggingface.co/datasets/operations-metrics"}, | |
{"name": "Supply Chain Transparency Dataset", "url": "https://github.com/datasets/supply-chain"} | |
] | |
resource_file = 'resources.md' | |
with open(resource_file, 'w') as f: | |
f.write("# Resource Links\n\n") | |
for dataset in datasets: | |
f.write(f"- [{dataset['name']}]({dataset['url']})\n") | |
return resource_file | |