File size: 260 Bytes
3a3131c | 1 2 3 4 5 6 7 | from datasets import load_dataset
# Load the CSV dataset from the Hugging Face Space URL
dataset = load_dataset('csv', data_files='https://huggingface.co/spaces/Avinash109/BN/resolve/main/BANKNIFTY_OPTION_CHAIN_data.csv')
# Inspect the dataset
print(dataset) |