Datasets:
Tasks:
Table Question Answering
Modalities:
Text
Formats:
parquet
Languages:
Azerbaijani
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -22,29 +22,32 @@ pretty_name: Turbo.Az Dataset
|
|
22 |
size_categories:
|
23 |
- 1K<n<10K
|
24 |
---
|
25 |
-
# Turbo Dataset
|
26 |
|
27 |
-
|
28 |
|
29 |
-
|
30 |
-
The dataset includes details such as car name, price, year, engine, distance, and city.
|
31 |
-
. For extracting own realtime dataset, please visit to the [GitHub repository](https://github.com/zmmmdf/turbo2csv/tree/main).
|
32 |
|
33 |
-
|
34 |
-
```py
|
35 |
-
from datasets import load_dataset
|
36 |
|
37 |
-
|
38 |
-
```
|
39 |
|
40 |
-
|
41 |
|
42 |
-
|
|
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
size_categories:
|
23 |
- 1K<n<10K
|
24 |
---
|
|
|
25 |
|
26 |
+
# Turbo Dataset
|
27 |
|
28 |
+
This dataset contains car listings scraped from turbo.az.
|
|
|
|
|
29 |
|
30 |
+
## Introduction
|
|
|
|
|
31 |
|
32 |
+
The dataset includes details such as car name, price, year, engine, distance, and city. For extracting your own real-time dataset, please visit the [GitHub repository](https://github.com/zmmmdf/turbo2csv/tree/main).
|
|
|
33 |
|
34 |
+
## Usage
|
35 |
|
36 |
+
```python
|
37 |
+
from datasets import load_dataset
|
38 |
|
39 |
+
dataset = load_dataset("zmmmdf/turbo.az")
|
40 |
+
print(dataset[0])
|
41 |
+
```
|
42 |
+
|
43 |
+
## Citation
|
44 |
+
|
45 |
+
If you use our work, please cite:
|
46 |
+
|
47 |
+
```
|
48 |
+
@misc{ma2024turboaz,
|
49 |
+
title={Turbo.Az Dataset: Dataset containing car listings scraped from turbo.az.},
|
50 |
+
author={Ziya Mammadov},
|
51 |
+
year={2024},
|
52 |
+
}
|
53 |
+
```
|