SmartCaseAI / dataset_collection.py
Hyma7's picture
Create dataset_collection.py
fc2e980 verified
raw
history blame contribute delete
618 Bytes
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