Datasets:
jacob-recastai
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -28,6 +28,9 @@ configs:
|
|
28 |
data_files:
|
29 |
- split: train
|
30 |
path: data/train-*
|
|
|
|
|
|
|
31 |
---
|
32 |
# Dataset Card for "databricks-dolly-15k-chatml"
|
33 |
## Dataset Summary
|
@@ -50,7 +53,7 @@ from datasets import load_dataset
|
|
50 |
dataset = load_dataset("recastai/databricks-dolly-15k-chatml", split="train")
|
51 |
```
|
52 |
|
53 |
-
## Processing applied to original
|
54 |
```python
|
55 |
INSTRUCTIONS = """You are an expert Q&A system that is trusted around the world. You always answer the user's query in a helpful and friendly way.
|
56 |
Some rules you always follow:
|
@@ -91,4 +94,4 @@ def process_chatml_fn(example, validation=False):
|
|
91 |
]
|
92 |
|
93 |
return message
|
94 |
-
```
|
|
|
28 |
data_files:
|
29 |
- split: train
|
30 |
path: data/train-*
|
31 |
+
task_categories:
|
32 |
+
- question-answering
|
33 |
+
- text2text-generation
|
34 |
---
|
35 |
# Dataset Card for "databricks-dolly-15k-chatml"
|
36 |
## Dataset Summary
|
|
|
53 |
dataset = load_dataset("recastai/databricks-dolly-15k-chatml", split="train")
|
54 |
```
|
55 |
|
56 |
+
## Processing applied to original dataset
|
57 |
```python
|
58 |
INSTRUCTIONS = """You are an expert Q&A system that is trusted around the world. You always answer the user's query in a helpful and friendly way.
|
59 |
Some rules you always follow:
|
|
|
94 |
]
|
95 |
|
96 |
return message
|
97 |
+
```
|