There was an error while loading. Please reload this page.
RDA contents are usually R environments.
load("data/dimodis.rda") ls(dimodis) str(dimodis$works$ergoes) # reach the actual text data
We will fix this interface soon. Suggest your preferred formats in the issues.
PKL files can be used via pickle.load()
pickle.load()
import pickle with open("result_sentences.pkl", "rb") as f: sentences = pickle.load(f)
See the scripts section on how to further use the files.