agentlans commited on
Commit
509ee80
·
verified ·
1 Parent(s): f9116e6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -39
README.md CHANGED
@@ -18,6 +18,8 @@ tags:
18
  - rslora
19
  - liger
20
  - sociology
 
 
21
  ---
22
 
23
  # Qwen2.5-1.5B-Instruct-Short-Answer-Maker
@@ -36,7 +38,8 @@ This model is fine-tuned to generate short answer questions in XML format based
36
 
37
  ### Dataset
38
 
39
- The training dataset was derived from open-source sociology textbooks using a custom prompt powered by the [agentlans/Llama3.1-LexiHermes-SuperStorm](https://huggingface.co/agentlans/Llama3.1-LexiHermes-SuperStorm) model. It contains 4,447 entries. Due to licensing restrictions, the dataset is not included in this repository.
 
40
 
41
  ### Fine-Tuning Methodology
42
 
@@ -60,8 +63,9 @@ Generate benchmark datasets to train and evaluate NLP models on tasks such as qu
60
  1. **Human Review Required**: Outputs should be manually reviewed for accuracy and relevance.
61
  2. **Context Dependency**: Some questions and answers may lack standalone context or refer ambiguously to "this text" or "this excerpt."
62
  3. **Redundancy**: The model generates comprehensive outputs that may include repetitive questions.
63
- 4. **Format Constraints**: XML output is verbose but ensures stricter validation compared to JSON; additional processing may be required.
64
  5. **No Multipart Questions**: Does not support multipart questions with partial marks.
 
65
 
66
  ## Usage Instructions
67
 
@@ -86,7 +90,7 @@ The model will produce output in XML format:
86
  <question>Question 2?</question>
87
  <answer>Answer 2.</answer>
88
  </short-answer>
89
- ... more <short-answer></short-answer> tags
90
  </quiz>
91
  ```
92
 
@@ -107,60 +111,45 @@ Output:
107
  ```xml
108
  <quiz>
109
  <short-answer>
110
- <question>What is the primary goal of cultural relativism?</question>
111
- <answer>Cultural relativism aims to understand cultural practices and beliefs within their own context.</answer>
112
  </short-answer>
113
-
114
  <short-answer>
115
- <question>How does cultural relativism challenge ethnocentrism?</question>
116
- <answer>Cultural relativism rejects viewing one's own culture as superior or normative, focusing on appreciating cultural diversity.</answer>
117
  </short-answer>
118
-
119
  <short-answer>
120
- <question>According to cultural relativism, what determines the meaning and value of cultural practices?</question>
121
- <answer>Their historical, social, and environmental contexts shape the meanings and values associated with those practices.</answer>
122
  </short-answer>
123
-
124
  <short-answer>
125
- <question>In what ways do cultural differences sometimes clash with universal human rights standards?</question>
126
- <answer>Certain cultural practices can be seen as conflicting with basic human rights, requiring balance between respect for tradition and advocacy for freedom and wellbeing.</answer>
127
  </short-answer>
128
-
129
  <short-answer>
130
- <question>What role do scholars play in addressing conflicts between cultural traditions and universal human rights?</question>
131
- <answer>Scholars advocate for a balanced approach that respects cultural specifics while promoting dialogue about shared values and ethical principles.</answer>
132
  </short-answer>
133
-
134
  <short-answer>
135
- <question>Why is cultural relativism considered crucial in today's globalized world?</question>
136
- <answer>Cultural relativism helps navigate complexity, fostering empathy and engaging with diverse societies through rigorous study and practical application.</answer>
137
  </short-answer>
138
-
139
  <short-answer>
140
- <question>What type of interaction encourages learning from different cultures according to cultural relativism?</question>
141
- <answer>Diverse interactions, including scholarly research and practical engagement, promote cross-cultural understanding and knowledge exchange.</answer>
142
  </short-answer>
143
-
144
  <short-answer>
145
- <question>Which two concepts are directly opposed by cultural relativism?</question>
146
- <answer>Ethnocentrism (viewing one’s own culture as superior) and cultural relativism itself (respecting other cultures).</answer>
147
  </short-answer>
148
-
149
- <short-answer>
150
- <question>What kind of tensions arise due to cultural relativism regarding practice versus principle?</question>
151
- <answer>Tensions emerge when certain culturally specific practices conflict with universally accepted moral or legal standards.</answer>
152
- </short-answer>
153
-
154
  <short-answer>
155
- <question>Who benefits most from embracing cultural relativism?</question>
156
- <answer>All individuals involved in studying and interacting with various cultures gain from this perspective.</answer>
157
  </short-answer>
158
-
159
  <short-answer>
160
- <question>What outcome results from applying cultural relativism effectively?</question>
161
- <answer>A more nuanced comprehension of human experience across different cultures leads to greater tolerance and mutual respect among people worldwide.</answer>
162
  </short-answer>
163
-
164
  </quiz>
165
  ```
166
- </details>
 
18
  - rslora
19
  - liger
20
  - sociology
21
+ datasets:
22
+ - agentlans/finewebedu-short-answer
23
  ---
24
 
25
  # Qwen2.5-1.5B-Instruct-Short-Answer-Maker
 
38
 
39
  ### Dataset
40
 
41
+ - The training dataset was derived from open-source sociology textbooks using a custom prompt powered by the [agentlans/Llama3.1-LexiHermes-SuperStorm](https://huggingface.co/agentlans/Llama3.1-LexiHermes-SuperStorm) model. It contains 4447 entries. Due to licensing restrictions, the dataset is not included in this repository.
42
+ - The model was further trained on [agentlans/finewebedu-short-answer](https://huggingface.co/datasets/agentlans/finewebedu-short-answer) using the same settings but with an additional 0.2 LoRA dropout.
43
 
44
  ### Fine-Tuning Methodology
45
 
 
63
  1. **Human Review Required**: Outputs should be manually reviewed for accuracy and relevance.
64
  2. **Context Dependency**: Some questions and answers may lack standalone context or refer ambiguously to "this text" or "this excerpt."
65
  3. **Redundancy**: The model generates comprehensive outputs that may include repetitive questions.
66
+ 4. **Format Constraints**: XML output is verbose but ensures stricter validation compared to JSON. Additional processing may be required.
67
  5. **No Multipart Questions**: Does not support multipart questions with partial marks.
68
+ 6. **Performance Varies With Input Length**: For best results, use 1000-12000 character length texts and always follow the input format below.
69
 
70
  ## Usage Instructions
71
 
 
90
  <question>Question 2?</question>
91
  <answer>Answer 2.</answer>
92
  </short-answer>
93
+ ...
94
  </quiz>
95
  ```
96
 
 
111
  ```xml
112
  <quiz>
113
  <short-answer>
114
+ <question>What is the main concept of cultural relativism in anthropology?</question>
115
+ <answer>The importance of understanding cultural practices and beliefs within their own context rather than judging them by external standards.</answer>
116
  </short-answer>
 
117
  <short-answer>
118
+ <question>What is ethnocentrism, and how does cultural relativism challenge it?</question>
119
+ <answer>Ethnocentrism is the tendency to view one's own culture as superior or normative. Cultural relativism promotes an appreciation for the diversity of human experiences and expressions, challenging ethnocentrism by recognizing that values, norms, and traditions are shaped by unique historical, social, and environmental factors.</answer>
120
  </short-answer>
 
121
  <short-answer>
122
+ <question>How do cultural relativism and universal human rights standards relate to each other?</question>
123
+ <answer>Cultural relativism fosters empathy and cross-cultural understanding, while also raising complex ethical questions when certain practices conflict with universal human rights standards.</answer>
124
  </short-answer>
 
125
  <short-answer>
126
+ <question>What are some examples of practices that may seem peculiar or incomprehensible to outsiders but hold profound significance within their communities?</question>
127
+ <answer>Practices such as dietary restrictions, marriage customs, or religious rituals may seem peculiar or even incomprehensible to outsiders but hold profound significance within the communities that uphold them.</answer>
128
  </short-answer>
 
129
  <short-answer>
130
+ <question>What is the challenge of reconciling cultural specificity with promoting dialogue about shared values and ethical principles?</question>
131
+ <answer>Scholars have sought to reconcile these challenges by advocating for a balanced approach that acknowledges cultural specificity while promoting dialogue about shared values and ethical principles.</answer>
132
  </short-answer>
 
133
  <short-answer>
134
+ <question>How does cultural relativism serve as a critical tool for navigating globalization and multiculturalism?</question>
135
+ <answer>Cultural relativism encourages both academic inquiry and practical engagement with diverse societies, helping to navigate the complexities of globalization and multiculturalism in an increasingly interconnected world.</answer>
136
  </short-answer>
 
137
  <short-answer>
138
+ <question>What are some examples of cultural practices that have been the subject of debate and discussion, particularly in relation to universal human rights standards?</question>
139
+ <answer>Examples include female genital mutilation and child marriage.</answer>
140
  </short-answer>
 
141
  <short-answer>
142
+ <question>How do cultural practices and beliefs vary across different societies?</question>
143
+ <answer>Cultural practices and beliefs are shaped by historical, social, and environmental factors unique to each society, meaning they vary across different societies.</answer>
144
  </short-answer>
 
 
 
 
 
 
145
  <short-answer>
146
+ <question>What is the significance of understanding cultural practices and beliefs within their own context?</question>
147
+ <answer>Understanding cultural practices and beliefs within their own context helps to avoid judging them by external standards and fosters empathy and cross-cultural understanding.</answer>
148
  </short-answer>
 
149
  <short-answer>
150
+ <question>How does cultural relativism promote dialogue about shared values and ethical principles?</question>
151
+ <answer>Cultural relativism promotes dialogue about shared values and ethical principles by acknowledging cultural specificity while promoting a balanced approach that respects cultural traditions while also advocating for individual freedoms and well-being.</answer>
152
  </short-answer>
 
153
  </quiz>
154
  ```
155
+ </details>