Update README.md
Browse files
README.md
CHANGED
@@ -102,7 +102,7 @@ dataset = load_dataset("McAuley-Lab/Amazon-Reviews-2023", "raw_review_All_Beauty
|
|
102 |
print(dataset["full"][0])
|
103 |
```
|
104 |
|
105 |
-
```
|
106 |
{'rating': 5.0,
|
107 |
'title': 'Such a lovely scent but not overpowering.',
|
108 |
'text': "This spray is really nice. It smells really good, goes on really fine, and does the trick. I will say it feels like you need a lot of it though to get the texture I want. I have a lot of hair, medium thickness. I am comparing to other brands with yucky chemicals so I'm gonna stick with this. Try it!",
|
@@ -117,12 +117,12 @@ print(dataset["full"][0])
|
|
117 |
|
118 |
### Load Item Metadata
|
119 |
|
120 |
-
```
|
121 |
dataset = load_dataset("McAuley-Lab/Amazon-Reviews-2023", "raw_meta_All_Beauty", split="full", trust_remote_code=True)
|
122 |
print(dataset[0])
|
123 |
```
|
124 |
|
125 |
-
```
|
126 |
{'main_category': 'All Beauty',
|
127 |
'title': 'Howard LC0008 Leather Conditioner, 8-Ounce (4-Pack)',
|
128 |
'average_rating': 4.8,
|
|
|
102 |
print(dataset["full"][0])
|
103 |
```
|
104 |
|
105 |
+
```json
|
106 |
{'rating': 5.0,
|
107 |
'title': 'Such a lovely scent but not overpowering.',
|
108 |
'text': "This spray is really nice. It smells really good, goes on really fine, and does the trick. I will say it feels like you need a lot of it though to get the texture I want. I have a lot of hair, medium thickness. I am comparing to other brands with yucky chemicals so I'm gonna stick with this. Try it!",
|
|
|
117 |
|
118 |
### Load Item Metadata
|
119 |
|
120 |
+
```python
|
121 |
dataset = load_dataset("McAuley-Lab/Amazon-Reviews-2023", "raw_meta_All_Beauty", split="full", trust_remote_code=True)
|
122 |
print(dataset[0])
|
123 |
```
|
124 |
|
125 |
+
```json
|
126 |
{'main_category': 'All Beauty',
|
127 |
'title': 'Howard LC0008 Leather Conditioner, 8-Ounce (4-Pack)',
|
128 |
'average_rating': 4.8,
|