CoT_Reasoning_Bushcraft_Survival
收藏资源简介:
# CoT Reasoning — Bushcraft & Survival This dataset is derived from [`mattwesney/CoT_Reasoning_Bushcraft_Survival`](https://huggingface.co/datasets/mattwesney/CoT_Reasoning_Bushcraft_Survival), reformatted into a conversational prompt-only structure for downstream use (e.g. synthetic data generation, evaluation, or completion by an LLM). ## Origin The source dataset contains 3,000 chain-of-thought Q&A pairs on bushcraft and wilderness survival topics — shelter building, fire starting, water purification, navigation, foraging, tool crafting, and more. Each entry includes a question, a detailed answer, and metadata with difficulty ratings and reasoning traces. ## What changed Only the `id` and `question` columns were kept. The `question` was wrapped into a single-turn `messages` list following the ChatML convention: ```json [{"content": "<question text>", "role": "user"}] ``` The `answer` and `metadata` columns were dropped. See [`create_dataset.py`](./create_dataset.py) for the exact transformation. ## Schema | Column | Type | Description | |---|---|---| | `id` | `string` | Unique identifier from the source dataset | | `messages` | `list[{content, role}]` | Single-turn user message containing the question | ## Example ```json { "id": "qa_20250424_065355_653056", "messages": [ { "content": "What are the crucial considerations when selecting a site for building a natural shelter in a wilderness survival scenario, and what are the three basic types of natural shelters a survivor could construct?", "role": "user" } ] } ``` ## Stats - **Rows:** 3,000 - **Split:** train



