CodeHima commited on
Commit
e55492a
1 Parent(s): faa190b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -2
README.md CHANGED
@@ -1,2 +1,92 @@
1
-
2
- push
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ tags:
5
+ - llm
6
+ - conversations
7
+ - llama
8
+ - finetuning
9
+ - privacy-policies
10
+ - dataset
11
+ datasets:
12
+ - CodeHima/APP_350_LLM_Formatted
13
+ metrics:
14
+ - accuracy
15
+ - f1
16
+ task_categories:
17
+ - text-generation
18
+ - text-classification
19
+ ---
20
+
21
+ # APP-350 Formatted Dataset for LLM Fine-tuning
22
+
23
+ ## Dataset Summary
24
+
25
+ The **APP-350** dataset consists of structured conversation pairs formatted for fine-tuning Large Language Models (LLMs) like LLaMA. This dataset includes questions and responses between users and an AI assistant. The dataset is particularly designed for privacy policy analysis and fairness evaluation, allowing models to learn from annotated interactions regarding privacy practices.
26
+
27
+ The conversations are organized into the following structure:
28
+ - **User Prompt:** The user initiates the conversation with a question or request.
29
+ - **Assistant Response:** The AI assistant provides a detailed response, including an assessment of the privacy policy clause.
30
+
31
+ ## Intended Use
32
+
33
+ This dataset is ideal for training and fine-tuning conversational models, particularly those aimed at:
34
+ - Privacy policy analysis
35
+ - Legal document interpretation
36
+ - Fairness evaluation in legal and compliance documents
37
+
38
+ The dataset can also be used to develop models that specialize in understanding privacy-related practices and enhancing LLM performance in this domain.
39
+
40
+ ## Dataset Structure
41
+
42
+ Each entry in the dataset is structured as a conversation between a **user** and an **assistant**:
43
+ ```json
44
+ [
45
+ {
46
+ "content": "Analyze the following clause from a privacy policy and determine if it's fair or unfair...",
47
+ "role": "user"
48
+ },
49
+ {
50
+ "content": "This clause is fair. The privacy practices mentioned are: nan.",
51
+ "role": "assistant"
52
+ }
53
+ ]
54
+ ```
55
+
56
+ Each record contains:
57
+ - **content**: The text of the prompt or response.
58
+ - **role**: Specifies whether the content is from the 'user' or the 'assistant'.
59
+
60
+ ## Example Entry
61
+ ```json
62
+ {
63
+ "content": "How do astronomers determine the original wavelength of light emitted by a celestial body at rest...",
64
+ "role": "user"
65
+ },
66
+ {
67
+ "content": "Astronomers make use of the unique spectral fingerprints of elements found in stars...",
68
+ "role": "assistant"
69
+ }
70
+ ```
71
+
72
+ ## Collection Process
73
+
74
+ This dataset was collected from various privacy policy clauses and conversations annotated with fairness labels. The dataset has been structured to reflect user-assistant interactions, making it suitable for training conversational AI systems.
75
+
76
+ ## Licensing
77
+
78
+ The dataset is made available under the **MIT License**, which allows for flexible use, modification, and distribution of the dataset.
79
+
80
+ ## Citation
81
+
82
+ If you use this dataset, please cite it as follows:
83
+
84
+ ```
85
+ @dataset{app350_llm_formatted,
86
+ title = {APP-350 Formatted Dataset for LLM Fine-tuning},
87
+ author = {Himanshu Mohanty},
88
+ year = {2024},
89
+ url = {https://huggingface.co/datasets/CodeHima/APP_350_LLM_Formatted},
90
+ license = {MIT}
91
+ }
92
+ ```