You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

How to loading dataset?

from datasets import load_dataset
datasets = load_dataset("minskiter/msra",save_infos=True)
train,test = datasets['train'],datasets['test']
# convert label to str
print(train.features['labels'].feature.int2str(0))

Force update

from datasets import load_dataset
datasets = load_dataset("minskiter/msra", download_mode="force_redownload")

Fit your train

def transform(example):
  # edit example here
  return example
for key in datasets:
  datasets[key] = datasets.map(transform)
Downloads last month
0