Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -52,7 +52,7 @@ This dataset contains **282,761 customer reviews** from **364 Kudu restaurant lo
|
|
| 52 |
| `reviewUrl` | string | Direct URL to the review |
|
| 53 |
| `reviewOrigin` | string | Origin platform (Google) |
|
| 54 |
| `stars` | int | Overall rating (1-5) |
|
| 55 |
-
| `rating` | null |
|
| 56 |
| `responseFromOwnerDate` | datetime | When owner responded (if applicable) |
|
| 57 |
| `responseFromOwnerText` | string | Owner's response to review |
|
| 58 |
| `reviewImageUrls` | list | URLs of images attached to review |
|
|
@@ -95,7 +95,9 @@ print(f"Average rating: {df['stars'].mean():.2f}")
|
|
| 95 |
```python
|
| 96 |
import pandas as pd
|
| 97 |
|
| 98 |
-
df = pd.read_parquet(
|
|
|
|
|
|
|
| 99 |
```
|
| 100 |
|
| 101 |
## Dataset Statistics
|
|
@@ -176,7 +178,7 @@ If you use this dataset in your research, please cite:
|
|
| 176 |
```bibtex
|
| 177 |
@dataset{kudu_reviews_2025,
|
| 178 |
title={Kudu Restaurant Reviews Dataset},
|
| 179 |
-
author={[
|
| 180 |
year={2025},
|
| 181 |
publisher={HuggingFace},
|
| 182 |
url={https://huggingface.co/datasets/Musaed1/kudu-google-maps-reviews}
|
|
@@ -191,4 +193,5 @@ If you use this dataset in your research, please cite:
|
|
| 191 |
|
| 192 |
## Contact
|
| 193 |
|
| 194 |
-
For questions or
|
|
|
|
|
|
| 52 |
| `reviewUrl` | string | Direct URL to the review |
|
| 53 |
| `reviewOrigin` | string | Origin platform (Google) |
|
| 54 |
| `stars` | int | Overall rating (1-5) |
|
| 55 |
+
| `rating` | (int or null) | kept only for compatibility with original source. |
|
| 56 |
| `responseFromOwnerDate` | datetime | When owner responded (if applicable) |
|
| 57 |
| `responseFromOwnerText` | string | Owner's response to review |
|
| 58 |
| `reviewImageUrls` | list | URLs of images attached to review |
|
|
|
|
| 95 |
```python
|
| 96 |
import pandas as pd
|
| 97 |
|
| 98 |
+
df = pd.read_parquet(
|
| 99 |
+
"hf://datasets/Musaed1/kudu-google-maps-reviews/kudu_reviews_cleaned.parquet"
|
| 100 |
+
)
|
| 101 |
```
|
| 102 |
|
| 103 |
## Dataset Statistics
|
|
|
|
| 178 |
```bibtex
|
| 179 |
@dataset{kudu_reviews_2025,
|
| 180 |
title={Kudu Restaurant Reviews Dataset},
|
| 181 |
+
author={[Musaed Albedhani]},
|
| 182 |
year={2025},
|
| 183 |
publisher={HuggingFace},
|
| 184 |
url={https://huggingface.co/datasets/Musaed1/kudu-google-maps-reviews}
|
|
|
|
| 193 |
|
| 194 |
## Contact
|
| 195 |
|
| 196 |
+
For questions, issues, or collaboration requests, please reach out at:
|
| 197 |
+
**[[email protected]](mailto:[email protected])**
|