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']
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):
return example
for key in datasets:
datasets[key] = datasets.map(transform)