search-dataset / README.md
karan3691's picture
Upload README.md with huggingface_hub
6c56413 verified
---
language: en
license: mit
tags:
- web-scraping
- text
- dataset
---
# Dataset: ai_research_papers
This dataset was automatically created using the dataset-builder tool.
## Dataset Description
- **Number of examples:** 8
- **Average content length:** 11372 characters
- **Unique sources:** 1
- **Created on:** 2025-04-17 15:15:18
## Dataset Structure
The dataset contains the following columns:
- `url`: Source URL of the content
- `title`: Title of the article/content
- `content`: Main text content
- `author`: Author information (if available)
- `publish_date`: Publication date (if available)
- `source`: Website domain or explicit source name
## Usage
```python
from datasets import load_dataset
# Load from Hugging Face Hub if uploaded
# dataset = load_dataset("karan3691/search-dataset")
# Or load from local directory
dataset = load_dataset("path/to/ai_research_papers_20250417_151518")
# Access data
for item in dataset["train"]:
print("Title: " + item['title'])
print("Content: " + item['content'][:100] + "...")
```
## Citation
Please cite this dataset as:
```
@misc{ai_research_papers},
author = {Dataset Builder},
title = {ai_research_papers},
year = {2025},
url = {https://github.com/yourusername/dataset-builder}
}
```