Datasets:
Empty content
#2
by
jafarisbarov
- opened
content
column is empty in three records:
from datasets import load_dataset
train = load_dataset("hajili/azerbaijani_review_sentiment_classification", split="train")
print("Total length:", len(train))
train = train.filter(lambda x: x["content"])
print("Length without empty rows:",len(train))
# Total length: 127537
# Length without empty rows: 127534
yes, it is not really cleaned, more for playing with and maybe for learning and research. only 3 empty reviews are actually better than I expected.
hajili
changed discussion status to
closed