Ibtehaj10 commited on
Commit
dbff9a2
1 Parent(s): 728880d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -21
README.md CHANGED
@@ -1,23 +1,32 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: case_details
7
- dtype: string
8
- - name: embeddings
9
- sequence: float64
10
- - name: citation_number
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 42684850
15
- num_examples: 1414
16
- download_size: 25068229
17
- dataset_size: 42684850
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - legal
4
+ - embeddings
5
+ - text-data
6
+ license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+
9
+ # Dataset Card for Pak-Law Dataset
10
+
11
+ ## Description
12
+
13
+ This dataset contains legal documents related to Pakistani law. It includes text data, case details, embeddings generated using the `mixedbread-ai/mxbai-embed-large-v1` model, and citation numbers.
14
+
15
+ ## Dataset Structure
16
+
17
+ The dataset has the following features:
18
+ - `text`: The text of the legal documents.
19
+ - `case_details`: Details about the legal cases.
20
+ - `embeddings`: Embeddings of the text, generated using the `mixedbread-ai/mxbai-embed-large-v1` model.
21
+ - `citation_number`: Citation numbers for the legal cases.
22
+
23
+ The dataset contains 1,414 rows.
24
+
25
+ ## Usage
26
+
27
+ You can load the dataset using the `datasets` library:
28
+
29
+ ```python
30
+ from datasets import load_dataset
31
+
32
+ dataset = load_dataset("your-username/your-dataset-name")