holylovenia commited on
Commit
8ff12e6
·
verified ·
1 Parent(s): d96c1c3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -16
README.md CHANGED
@@ -1,25 +1,61 @@
 
1
  ---
2
- license: unknown
3
- tags:
4
- - legal-classification
5
- language:
6
  - ind
 
 
 
 
 
7
  ---
8
 
9
- # indo_law
10
-
11
  This study presents predictions of first-level judicial decisions by utilizing a collection of Indonesian court decision documents.
12
-
13
  We propose using multi-level learning, namely, CNN+attention, using decision document sections as features to predict the category and the length of punishment in Indonesian courts.
14
-
15
  Our results demonstrate that the decision document sections that strongly affected the accuracy of the prediction model were prosecution history, facts, legal facts, and legal considerations.
16
 
 
 
 
 
 
 
 
 
 
17
  ## Dataset Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- Run `pip install nusacrowd` before loading the dataset through HuggingFace's `load_dataset`.
20
 
21
  ## Citation
22
 
 
23
  ```
24
  @article{nuranti2022predicting,
25
  title={Predicting the Category and the Length of Punishment in Indonesian Courts Based on Previous Court Decision Documents},
@@ -31,13 +67,14 @@ Run `pip install nusacrowd` before loading the dataset through HuggingFace's `lo
31
  year={2022},
32
  publisher={Multidisciplinary Digital Publishing Institute}
33
  }
34
- ```
35
-
36
- ## License
37
-
38
- Unknown
39
 
40
 
41
- ### NusaCatalogue
 
 
 
 
 
 
42
 
43
- For easy indexing and metadata: [https://indonlp.github.io/nusa-catalogue](https://indonlp.github.io/nusa-catalogue)
 
1
+
2
  ---
3
+ language:
 
 
 
4
  - ind
5
+ pretty_name: Indo Law
6
+ task_categories:
7
+ - legal-classification
8
+ tags:
9
+ - legal-classification
10
  ---
11
 
 
 
12
  This study presents predictions of first-level judicial decisions by utilizing a collection of Indonesian court decision documents.
 
13
  We propose using multi-level learning, namely, CNN+attention, using decision document sections as features to predict the category and the length of punishment in Indonesian courts.
 
14
  Our results demonstrate that the decision document sections that strongly affected the accuracy of the prediction model were prosecution history, facts, legal facts, and legal considerations.
15
 
16
+
17
+ ## Languages
18
+
19
+ ind
20
+
21
+ ## Supported Tasks
22
+
23
+ Legal Classification
24
+
25
  ## Dataset Usage
26
+ ### Using `datasets` library
27
+ ```
28
+ from datasets import load_dataset
29
+ dset = datasets.load_dataset("SEACrowd/indo_law", trust_remote_code=True)
30
+ ```
31
+ ### Using `seacrowd` library
32
+ ```import seacrowd as sc
33
+ # Load the dataset using the default config
34
+ dset = sc.load_dataset("indo_law", schema="seacrowd")
35
+ # Check all available subsets (config names) of the dataset
36
+ print(sc.available_config_names("indo_law"))
37
+ # Load the dataset using a specific config
38
+ dset = sc.load_dataset_by_config_name(config_name="<config_name>")
39
+ ```
40
+
41
+ More details on how to load the `seacrowd` library can be found [here](https://github.com/SEACrowd/seacrowd-datahub?tab=readme-ov-file#how-to-use).
42
+
43
+
44
+ ## Dataset Homepage
45
+
46
+ []()
47
+
48
+ ## Dataset Version
49
+
50
+ Source: 1.0.0. SEACrowd: 2024.06.20.
51
+
52
+ ## Dataset License
53
 
54
+ Unknown
55
 
56
  ## Citation
57
 
58
+ If you are using the **Indo Law** dataloader in your work, please cite the following:
59
  ```
60
  @article{nuranti2022predicting,
61
  title={Predicting the Category and the Length of Punishment in Indonesian Courts Based on Previous Court Decision Documents},
 
67
  year={2022},
68
  publisher={Multidisciplinary Digital Publishing Institute}
69
  }
 
 
 
 
 
70
 
71
 
72
+ @article{lovenia2024seacrowd,
73
+ title={SEACrowd: A Multilingual Multimodal Data Hub and Benchmark Suite for Southeast Asian Languages},
74
+ author={Holy Lovenia and Rahmad Mahendra and Salsabil Maulana Akbar and Lester James V. Miranda and Jennifer Santoso and Elyanah Aco and Akhdan Fadhilah and Jonibek Mansurov and Joseph Marvin Imperial and Onno P. Kampman and Joel Ruben Antony Moniz and Muhammad Ravi Shulthan Habibi and Frederikus Hudi and Railey Montalan and Ryan Ignatius and Joanito Agili Lopo and William Nixon and Börje F. Karlsson and James Jaya and Ryandito Diandaru and Yuze Gao and Patrick Amadeus and Bin Wang and Jan Christian Blaise Cruz and Chenxi Whitehouse and Ivan Halim Parmonangan and Maria Khelli and Wenyu Zhang and Lucky Susanto and Reynard Adha Ryanda and Sonny Lazuardi Hermawan and Dan John Velasco and Muhammad Dehan Al Kautsar and Willy Fitra Hendria and Yasmin Moslem and Noah Flynn and Muhammad Farid Adilazuarda and Haochen Li and Johanes Lee and R. Damanhuri and Shuo Sun and Muhammad Reza Qorib and Amirbek Djanibekov and Wei Qi Leong and Quyet V. Do and Niklas Muennighoff and Tanrada Pansuwan and Ilham Firdausi Putra and Yan Xu and Ngee Chia Tai and Ayu Purwarianti and Sebastian Ruder and William Tjhi and Peerat Limkonchotiwat and Alham Fikri Aji and Sedrick Keh and Genta Indra Winata and Ruochen Zhang and Fajri Koto and Zheng-Xin Yong and Samuel Cahyawijaya},
75
+ year={2024},
76
+ eprint={2406.10118},
77
+ journal={arXiv preprint arXiv: 2406.10118}
78
+ }
79
 
80
+ ```