Datasets:
ismail31415
commited on
Commit
•
a985671
1
Parent(s):
d22deb6
Update README.md
Browse files
README.md
CHANGED
@@ -113,7 +113,26 @@ Users should be aware of potential biases in the dataset, as it may not represen
|
|
113 |
### Recommendations
|
114 |
|
115 |
Users should consider the biases, risks, and limitations of the dataset. It is recommended to use the dataset in conjunction with other data sources to ensure robust analysis.
|
|
|
|
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
## Citation
|
118 |
|
119 |
If you use this dataset in your research, please cite it as follows:
|
|
|
113 |
### Recommendations
|
114 |
|
115 |
Users should consider the biases, risks, and limitations of the dataset. It is recommended to use the dataset in conjunction with other data sources to ensure robust analysis.
|
116 |
+
## Usage
|
117 |
+
To load and use this dataset, you can use the following code snippets in Python:
|
118 |
|
119 |
+
### Loading the dataset with Hugging Face Datasets library
|
120 |
+
|
121 |
+
```python
|
122 |
+
from datasets import load_dataset
|
123 |
+
|
124 |
+
# Load the dataset
|
125 |
+
dataset = load_dataset("ismail31415/uniGame")
|
126 |
+
|
127 |
+
# Access the training and testing sets
|
128 |
+
train_df = dataset['train']
|
129 |
+
test_df = dataset['test']
|
130 |
+
|
131 |
+
# Display the first few rows of the training set
|
132 |
+
print(train_df.head())
|
133 |
+
|
134 |
+
# Display the first few rows of the testing set
|
135 |
+
print(test_df.head())
|
136 |
## Citation
|
137 |
|
138 |
If you use this dataset in your research, please cite it as follows:
|