dataset-examples
dataset-examples copied to clipboard
Samples for users of the Yelp Academic Dataset
Convert subjson string into dict and changes so that the file is compatible with python3. Round 12
To fix the 'TypeError: argument of type 'NoneType' is not iterable' when the sub_dict values are None
Hi all, I'm currently having some issues with the JSON to CSV --> my main objective is to create a flat file where hours, categories, and attributes are also completely...
For the file business.json, there are records (for example the 4th record) where for example the key `hours` exists but its value is None. This causes an exception in the...
where is the label if the review is positive or negative? we that they used it for sentiment supervised classification in this paper https://arxiv.org/abs/1509.01626 Character-level Convolutional Networks for Text Classification...
When merging the review and business datasets, I've noticed that the 'review_count' dataset in the business level data is often different than the actual # of reviews in the data...
Hi, I loaded Yelp dataset into MySQL and I inferred the schema from it. According to my understanding of the schema, the table "friend" should be a join table joining...
mysql -u root -p yelp_db < yelp_db.sql aborting with the error: ERROR 1064 (42000) at line 881: You have an error in your SQL syntax; check the manual that corresponds...
with open('yelp_dataset_challenge_academic_dataset',encoding='utf-8') as f: jsondata=json.load(f) I try to import the dataset into python with the code above, but failed. The error is that 'utf-8' codec can't decode byte 0xb5. I...