Error loading the DB
#2
by
adohsj
- opened
In the README of this repository, database name is wrong:
Right now is this:
dataset = load_dataset("divar/real-estate-ads")
but should be:
dataset = load_dataset("divaroffical/real-estate-ads")
Also the name of user has a typo in it. Should be "official" instead of "offical"
Hey there! Thanks so much. I've gone ahead and corrected it. Appreciate you taking the time to make the dataset documentation more accurate!
Hey there! I just wanted to let you know that the quickstart example is still incorrect.
The quickstart in your dataset card uses:
load_dataset("divarofficial/real-estate-ads")
But that’s incorrect and results in a DatasetNotFoundError
.
The correct version is:
dataset = load_dataset("divarofficial/real_estate_ads")
It confused me so it might confuse others as well. Would be great if you could fix that.