y2lan commited on
Commit
4faf88c
1 Parent(s): f5e5e89

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -1,3 +1,29 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - summarization
5
+ - text-generation
6
+ - question-answering
7
+ language:
8
+ - ja
9
+ size_categories:
10
+ - 1K<n<10K
11
  ---
12
+
13
+ # Japanese Laws
14
+
15
+ This dataset comprises 8.75K law records retrieved from the official Japanese government website [e-Gov](https://elaws.e-gov.go.jp/). Each entry furnishes comprehensive details about a particular law, encapsulating its number, title, unique ID, the date it came into effect, and its complete text.
16
+
17
+ To ensure the dataset's uniqueness, deduplication was executed based on the most recent effective version as of August 1, 2023.
18
+
19
+ A typical entry in this dataset is structured as follows:
20
+
21
+ ```json
22
+ {
23
+ "num": "Law Number (e.g., Reiwa 5th Year Pollution Adjustment Committee Rule No. 1)",
24
+ "title": "Title of the Law",
25
+ "id": "Unique Identifier for the Law",
26
+ "date": "Date the Law Became Effective",
27
+ "body": "Full Text of the Law"
28
+ }
29
+ ```