aimlresearch2023/distilabel_6
收藏Hugging Face2024-04-29 更新2024-06-12 收录
下载链接:
https://hf-mirror.com/datasets/aimlresearch2023/distilabel_6
下载链接
链接失效反馈官方服务:
资源简介:
---
size_categories: n<1K
dataset_info:
features:
- name: instruction
dtype: string
- name: generations
sequence: string
- name: generation_models
sequence: string
- name: ratings
sequence: 'null'
- name: rationales
sequence: 'null'
splits:
- name: train
num_bytes: 7252
num_examples: 3
download_size: 25413
dataset_size: 7252
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
tags:
- synthetic
- distilabel
- rlaif
---
<p align="left">
<a href="https://github.com/argilla-io/distilabel">
<img src="https://raw.githubusercontent.com/argilla-io/distilabel/main/docs/assets/distilabel-badge-light.png" alt="Built with Distilabel" width="200" height="32"/>
</a>
</p>
# Dataset Card for distilabel_6
This dataset has been created with [distilabel](https://distilabel.argilla.io/).
## Dataset Summary
This dataset contains a `pipeline.yaml` which can be used to reproduce the pipeline that generated it in distilabel using the `distilabel` CLI:
```console
distilabel pipeline run --config "https://huggingface.co/datasets/aimlresearch2023/distilabel_6/raw/main/pipeline.yaml"
```
or explore the configuration:
```console
distilabel pipeline info --config "https://huggingface.co/datasets/aimlresearch2023/distilabel_6/raw/main/pipeline.yaml"
```
## Dataset structure
The examples have the following structure per configuration:
<details><summary> Configuration: default </summary><hr>
```json
{
"generation_models": [
"meta-llama/Meta-Llama-3-70B-Instruct",
"meta-llama/Meta-Llama-3-8B-Instruct"
],
"generations": [
null,
"**Homemade All-Purpose Cleaner Recipe**\n\n**Ingredients:**\n\n* 1 cup water\n* 1/2 cup white vinegar\n* 2 tablespoons castile soap (preferably fragrance-free)\n* 10 drops lemon essential oil (optional, for scent)\n\n**Instructions:**\n\n1. **Mix the Water and Vinegar:**\nIn a large bowl or measuring cup, combine 1 cup of water and 1/2 cup of white vinegar. Stir until the vinegar is fully dissolved.\n\n[Visual: A bowl with water and vinegar mixed together]\n\n2. **Add the Castile Soap:**\nAdd 2 tablespoons of castile soap to the water-vinegar mixture. Stir until the soap is fully dissolved and the mixture is smooth.\n\n[Visual: A spoon stirring the mixture]\n\n3. **Add Lemon Essential Oil (Optional):**\nIf you\u0027d like to give your cleaner a fresh citrus scent, add 10 drops of lemon essential oil to the mixture. Stir well to combine.\n\n[Visual: A dropper bottle with lemon essential oil and the mixture]\n\n**Tips for Storing the Cleaner:**\n\n* Transfer the cleaner to a spray bottle with a tight-fitting lid.\n* Store the cleaner in a cool, dry place, such as a pantry or cupboard.\n* Shake the bottle well before each use to ensure the ingredients are fully mixed.\n* Label the bottle with the date and contents.\n\n**Variations and Scents:**\n\n* **Lavender Scent:** Replace the lemon essential oil with 10 drops of lavender essential oil for a calming, floral scent.\n* **Tea Tree Scent:** Add 10 drops of tea tree essential oil for a refreshing, earthy scent.\n* **Citrus Burst:** Increase the amount of lemon essential oil to 20 drops for a stronger citrus scent.\n* **Herbal Scent:** Add 10 drops of peppermint or eucalyptus essential oil for a refreshing, herbal scent.\n\n**Using the Cleaner:**\n\n* Spray the cleaner onto surfaces, such as countertops, sinks, and mirrors.\n* Wipe clean with a lint-free cloth or paper towel.\n* Avoid using the cleaner on unsealed natural stone, marble, or granite surfaces.\n\n**Safety Precautions:**\n\n* Always spot test a small area before using the cleaner on a new surface.\n* Avoid inhaling the cleaner or essential oils, as they can cause respiratory issues.\n* Keep the cleaner out of reach of children and pets.\n\n**Benefits of This Cleaner:**\n\n* Non-toxic and biodegradable\n* Gentle on surfaces and the environment\n* Free from harsh chemicals and artificial fragrances\n* Customizable scents and ingredients\n\nBy following these simple steps, you can create a safe and effective homemade all-purpose cleaner using common household ingredients. Enjoy the benefits of a natural and gentle cleaner, and customize it to your liking with a variety of scents and variations!"
],
"instruction": "Provide step-by-step instructions on how to make a safe and effective homemade all-purpose cleaner from common household ingredients. The guide should include measurements, tips for storing the cleaner, and additional variations or scents that can be added. Additionally, the guide should be written in clear and concise language, with helpful visuals or photographs to aid in the process.",
"ratings": [
null,
null
],
"rationales": [
null,
null
]
}
```
This subset can be loaded as:
```python
from datasets import load_dataset
ds = load_dataset("aimlresearch2023/distilabel_6", "default")
```
Or simply as it follows, since there's only one configuration and is named `default`:
```python
from datasets import load_dataset
ds = load_dataset("aimlresearch2023/distilabel_6")
```
</details>
提供机构:
aimlresearch2023
原始信息汇总
数据集概述
基本信息
- 数据集大小: 小于1KB
- 下载大小: 25413字节
- 数据集大小: 7252字节
数据集结构
- 特征:
- instruction: 字符串类型
- generations: 字符串序列
- generation_models: 字符串序列
- ratings: 空序列
- rationales: 空序列
数据分割
- train:
- 字节数: 7252
- 示例数: 3
配置
- 默认配置:
- 数据文件路径:
data/train-*
- 数据文件路径:
加载方式
python from datasets import load_dataset
ds = load_dataset("aimlresearch2023/distilabel_6")



