roslein commited on
Commit
40c7ccd
·
verified ·
1 Parent(s): 0a700d6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,3 +1,36 @@
1
- ---
2
- license: gpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ language:
4
+ - cs
5
+ tags:
6
+ - legal
7
+ size_categories:
8
+ - 10K<n<100K
9
+ ---
10
+
11
+ ## Czech Legal Corpus Dataset (2025)
12
+
13
+ ### Overview
14
+ This dataset contains a comprehensive collection of Czech legislative documents including laws, edicts, and government notices that were valid as of February 19, 2025. The corpus was scraped from the official Czech Collection of Laws (Sbírka zákonů) portal at e-sbirka.cz.
15
+
16
+ ### Dataset Description
17
+ **Source**: Official Czech Collection of Laws (e-sbirka.cz)
18
+ **Temporal Coverage**: All valid legislation as of 19.02.2025
19
+ **Content**: Laws, edicts, and government notices
20
+ **Format**: CSV file with properly escaped and quoted text
21
+ **Processing**: Text has been cleaned and formatted for:
22
+ - RAG (Retrieval-Augmented Generation) applications
23
+ - Synthetic dataset creation for training purposes
24
+
25
+ ### Loading the Dataset
26
+ The dataset can be easily loaded using pandas:
27
+
28
+ ```
29
+ import pandas as pd
30
+
31
+ df = pd.read_csv('./all_cze_laws.csv',
32
+ quoting=1, # QUOTE_ALL
33
+ quotechar='"',
34
+ escapechar='\\',
35
+ encoding='utf-8')
36
+ ```