Upload README.md
Browse files
README.md
CHANGED
@@ -16,14 +16,15 @@ This dataset, hosted by [Yasalma](https://huggingface.co/neurotatarlar), is a cu
|
|
16 |
|
17 |
- **Language**: Tatar (Cyrillic script)
|
18 |
- **Format**: Single Parquet file
|
19 |
-
- **
|
20 |
-
- `
|
21 |
-
-
|
|
|
22 |
- **License**: MIT
|
23 |
|
24 |
### Structure
|
25 |
|
26 |
-
The dataset is
|
27 |
|
28 |
## Potential Use Cases
|
29 |
|
@@ -39,7 +40,7 @@ Here’s how to load and use the dataset in Python with `pandas`:
|
|
39 |
import pandas as pd
|
40 |
|
41 |
# Load the Parquet file
|
42 |
-
df = pd.read_parquet("path/to/
|
43 |
|
44 |
# View the first few rows
|
45 |
print(df.head())
|
@@ -47,9 +48,9 @@ print(df.head())
|
|
47 |
|
48 |
Example of a sample entry:
|
49 |
|
50 |
-
| text
|
51 |
-
|
52 |
-
|
|
53 |
|
54 |
## Usage
|
55 |
|
@@ -63,4 +64,4 @@ dataset = load_dataset("neurotatarlar/tt-books-cyrillic")
|
|
63 |
|
64 |
## Contributions and Acknowledgements
|
65 |
|
66 |
-
This dataset is maintained by the Yasalma team. Contributions, feedback, and suggestions are welcome to improve and expand the dataset.
|
|
|
16 |
|
17 |
- **Language**: Tatar (Cyrillic script)
|
18 |
- **Format**: Single Parquet file
|
19 |
+
- **Columns**:
|
20 |
+
- `file_name`: The original name of each book’s file
|
21 |
+
- `text`: The full content of each book
|
22 |
+
- **Total Size**: 75 MB
|
23 |
- **License**: MIT
|
24 |
|
25 |
### Structure
|
26 |
|
27 |
+
The dataset is organized so that each row in the Parquet file represents an individual Tatar book, with columns for the book’s filename (`file_name`) and its content (`text`).
|
28 |
|
29 |
## Potential Use Cases
|
30 |
|
|
|
40 |
import pandas as pd
|
41 |
|
42 |
# Load the Parquet file
|
43 |
+
df = pd.read_parquet("path/to/train-00000-of-00001.parquet", engine="pyarrow")
|
44 |
|
45 |
# View the first few rows
|
46 |
print(df.head())
|
|
|
48 |
|
49 |
Example of a sample entry:
|
50 |
|
51 |
+
| file_name | text |
|
52 |
+
|------------------------|---------------------------------------------------|
|
53 |
+
| Корымлы Бармак_tat.txt | Кояш Тимбикова\nКОРЫМЛЫ БАРМАК\n\nӨйләнешүебез... |
|
54 |
|
55 |
## Usage
|
56 |
|
|
|
64 |
|
65 |
## Contributions and Acknowledgements
|
66 |
|
67 |
+
This dataset is maintained by the Yasalma team. Contributions, feedback, and suggestions are welcome to improve and expand the dataset.
|