tagay1n commited on
Commit
b4facdb
1 Parent(s): e68d0c9

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -9
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
- - **Column**:
20
- - `text`: Separated by paragraphs content of all books(with empty lines)
21
- - **Total Size**: 78 MB
 
22
  - **License**: MIT
23
 
24
  ### Structure
25
 
26
- The dataset is stored as a single Parquet file for efficient storage and quick data access. Each row in the Parquet file represents an individual paragraph from Tatar books, containing only the `text` column.
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/0000.parquet", engine="pyarrow")
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
- | Каргалыдагы татарларның казаклы төркемнәре 1870 еллардагы урыс-төрек сугышында катнашып кайткач Каргалы елгасының икенче ягында аерым бер бистә булып яши башлыйлар. Алар шул Дунай буйларында дан алып кайткач, торган бистәләрен дә истәлеккә Дунай (Дүнә) ягы дип атап йөргәннәр. Дүнә ягы зураеп, аның үзенең зираты да үсеп киткән. Әлеге зиратны 2005 елда беркадәр өйрәнеп аның материалларын да бу китапка кертүне кирәк дип саныйбыз. Дүнә зираты да бик зур мәйдан биләп тора, анда тарихыбыз өчен кирәкле сәхифәләр саклана. Биредә без 13 ташбилгене укып тасвирладык. |
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.