KaifengGGG commited on
Commit
36c6aba
1 Parent(s): 8973971

Update Example

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md CHANGED
@@ -187,6 +187,21 @@ If you use this dataset in your research, please cite the original sources:
187
  - `messages`: instruction/answer pair in conversation format:
188
  - `content`: String representing the content of a message.
189
  - `role`: String representing the role associated with the message (e.g., sender, receiver).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
191
  ## **Dataset Structure**
192
 
 
187
  - `messages`: instruction/answer pair in conversation format:
188
  - `content`: String representing the content of a message.
189
  - `role`: String representing the role associated with the message (e.g., sender, receiver).
190
+
191
+ Here is an example for a dataset entry:
192
+ | Field | info | modern | classical | english | text | messages |
193
+ |-----------|------------------------|-----------------------------|-----------------------------|-----------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
194
+ | Type | string | string | string | string | string | list |
195
+ | Description | 《辽史·列传·卷二十八》 | 乾统三年,徙封为秦国公。 | 乾统三年,徙封秦国。 | In the third year of the Qingtong Era, he was re-enfeoffed as Prince of the Qin State. | <s>[INST] 将以下现代汉语文本改写为文言文: 乾统三年,徙封为秦国公。 [/INST] 乾统三年,徙封秦国。</s> | [{ "content": "将以下现代汉语文本改写为文言文: 乾统三年,徙封为秦国公。", "role": "user" }, { "content": "乾统三年,徙封秦国。", "role": "assistant" }] |
196
+
197
+ | Field | Type | Description |
198
+ |------------|----------------|------------------------------------------------------------------------------------------|
199
+ | info | string | 《辽史·列传·卷二十八》 |
200
+ | modern | string | 乾统三年,徙封为秦国公。 |
201
+ | classical | string | 乾统三年,徙封秦国。 |
202
+ | english | string | In the third year of the Qingtong Era, he was re-enfeoffed as Prince of the Qin State. |
203
+ | text | string | <s>[INST] 将以下现代汉语文本改写为文言文: 乾统三年,徙封为秦国公。 [/INST] 乾统三年,徙封秦国。</s> |
204
+ | messages | list | [{"content": "将以下现代汉语文本改写为文言文: 乾统三年,徙封为秦国公。", "role": "user"}, {"content": "乾统三年,徙封秦国。", "role": "assistant"}] |
205
 
206
  ## **Dataset Structure**
207