five

fosllms-week-1-demo

收藏
魔搭社区2025-10-09 更新2025-04-12 收录
下载链接:
https://modelscope.cn/datasets/burtenshaw/fosllms-week-1-demo
下载链接
链接失效反馈
官方服务:
资源简介:
# Dataset Card for fosllms-week-1-demo 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/burtenshaw/fosllms-week-1-demo/raw/main/pipeline.yaml" ``` or explore the configuration: ```console distilabel pipeline info --config "https://huggingface.co/datasets/burtenshaw/fosllms-week-1-demo/raw/main/pipeline.yaml" ``` ## Dataset structure The examples have the following structure per configuration: Configuration: default ```json { "generation": " This will help readers understand the effectiveness of their home-made cleaning solution.\n\n## Step 1: Gather Ingredients\nTo make your homemade all-purpose cleaner, start by gathering the following essential ingredients:\n\n- 1 cup water\n- 1/2 cup white vinegar\n- 1 tablespoon castile soap (preferably fragrance-free)\n- Optional: 10 drops of essential oil for a pleasant scent\n\n## Step 2: Mix Cleaners\nIn a small bowl, combine 1 cup of water with 1/2 cup of white vinegar. Stir until well combined. Add the castile soap and stir until it\u0027s fully dissolved.\n\n## Step 3: Test and Adjust\nTest the mixture by applying it to a small, inconspicuous area (such as a countertop). If necessary, adjust the amount of liquid or add more vinegar to achieve the desired consistency.\n\n## Step 4: Store the Cleaner\nStore the homemade all-purpose cleaner in an airtight container at room temperature. It is best to store it in the pantry or cupboard for up to one month. When not in use, let it sit at room temperature for at least two hours before refrigerating or freezing.\n\n## Step 5: Additional Variations and Scents\nYou can customize your homemade all-purpose cleaner by adding different types of essential oils or using various concentrations of castile soap. Here are some ideas:\n- **All-Purpose Cleaner:** Use the recipe above and simply omit the essential oil.\n- **Germ-Fighting Version:** Increase the concentration of castile soap to 2 tablespoons per 1 cup of water and add 15 drops of tea tree essential oil for its antimicrobial properties.\n- **Natural Disinfectant:** Replace white vinegar with 50% ethanol or isopropanol for its strong disinfecting properties.\n\nThe final answer is: There is no numerical answer for this problem, as it involves providing instructions and guidelines for making a homemade all-purpose cleaner.", "prompt": "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." } ``` This subset can be loaded as: ```python from datasets import load_dataset ds = load_dataset("burtenshaw/fosllms-week-1-demo", "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("burtenshaw/fosllms-week-1-demo") ```

# 数据集卡片:fosllms-week-1-demo 本数据集基于distilabel构建,工具详情可访问:https://distilabel.argilla.io/ ## 数据集概述 本数据集包含一个`pipeline.yaml`文件,可通过distilabel的命令行界面(CLI)复现生成该数据集的流程: console distilabel pipeline run --config "https://huggingface.co/datasets/burtenshaw/fosllms-week-1-demo/raw/main/pipeline.yaml" 也可查看该配置的相关信息: console distilabel pipeline info --config "https://huggingface.co/datasets/burtenshaw/fosllms-week-1-demo/raw/main/pipeline.yaml" ## 数据集结构 各配置下的数据样本格式如下: ### 配置:default json { "生成内容 (generation)": "这将帮助读者了解自制清洁溶液的有效性。 ## 步骤1:收集原料 若要制作家用全能清洁剂,请先收集以下必备原料: - 1杯清水 - 半杯白醋 - 1汤匙卡斯蒂利亚皂(推荐无香型) - 可选:10滴精油以增添宜人香气 ## 步骤2:调配清洁剂 在小碗中混合1杯清水与半杯白醋,搅拌至充分融合。加入卡斯蒂利亚皂并搅拌至完全溶解。 ## 步骤3:测试与调整 取少量混合液涂抹在一处不起眼的小区域(例如台面)进行测试。若有需要,可调整液体用量或添加更多白醋以达到理想的稠度。 ## 步骤4:储存清洁剂 将自制全能清洁剂置于密封容器中,于室温下储存。建议存放于食品储藏柜或橱柜中,保质期最长可达一个月。无需使用时,可先将其置于室温静置至少两小时,再行冷藏或冷冻。 ## 步骤5:更多变体与香型 你可通过添加不同类型的精油或调整卡斯蒂利亚皂的浓度,定制专属的家用全能清洁剂。以下是一些创意方案: - **全能清洁剂**:沿用上述配方,仅需省略精油即可。 - **抗菌版本**:将卡斯蒂利亚皂的用量提升至每1杯清水搭配2汤匙,并加入15滴茶树精油,利用其抗菌特性强化清洁效果。 - **天然消毒剂**:用50%乙醇或异丙醇替代白醋,借助其强大的消毒性能。 最终答案为:本任务无需提供数值答案,仅需给出自制家用全能清洁剂的操作指南与注意事项。", "提示词 (prompt)": "请提供分步指南,教你如何使用常见家居原料制作安全有效的家用全能清洁剂。该指南应包含用量标准、清洁剂储存技巧以及可添加的额外变体或香型。此外,指南需语言清晰简洁,可搭配辅助说明的图示或照片以辅助理解。" } 该子集可通过以下方式加载: python from datasets import load_dataset ds = load_dataset("burtenshaw/fosllms-week-1-demo", "default") 由于该数据集仅有一种名为`default`的配置,也可简化为: python from datasets import load_dataset ds = load_dataset("burtenshaw/fosllms-week-1-demo")
提供机构:
maas
创建时间:
2025-04-07
5,000+
优质数据集
54 个
任务类型
进入经典数据集
二维码
社区交流群

面向社区/商业的数据集话题

二维码
科研交流群

面向高校/科研机构的开源数据集话题

数据驱动未来

携手共赢发展

商业合作