jasonwu1017/s1k-1.1-text-kg-dataset
S1K Text-KG Dataset This dataset contains questions with: Knowledge graphs generated using GPT-4o Thinking trajectories from DeepSeek Formatted answers Dataset Structure The dataset contains 630 examples with the following fields: question: The original question deepseek_thinking_trajectory: Step-by-step reasoning from DeepSeek deepseek_attempt: The answer from DeepSeek deepseek_grade: Evaluation grade ("Yes" for all examples in this dataset) gpt-4o_graph:… See the full description on the dataset page: https://huggingface.co/datasets/jasonwu1017/s1k-1.1-text-kg-dataset.
011
S1K Text-KG Dataset
This dataset contains questions with:
- Knowledge graphs generated using GPT-4o
- Thinking trajectories from DeepSeek
- Formatted answers
Dataset Structure
The dataset contains 630 examples with the following fields:
question: The original questiondeepseek_thinking_trajectory: Step-by-step reasoning from DeepSeekdeepseek_attempt: The answer from DeepSeekdeepseek_grade: Evaluation grade ("Yes" for all examples in this dataset)gpt-4o_graph: Knowledge graph generated using GPT-4o, with nodes and edgestext: Formatted text that combines all elements in a chat format
Example Usage
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("s1k-text-kg-dataset")
# Access the first example
example = dataset["train"][0]
# Print the question
print(example["question"])
# Get the knowledge graph
kg = example["gpt-4o_graph"]
# Get the formatted text
text = example["text"]
Dataset Creation
This dataset was created by extracting entities and relations from questions and answers using GPT-4o. The knowledge graphs represent the conceptual relationships needed to answer the questions.
