File size: 5,163 Bytes
6f9493c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
---

license: mit
task_categories:
- text-classification
- text-generation
- summarization
- question-answering
- feature-extraction
language:
- en
tags:
- technology-news
- techcrunch
- news-dataset
- journalism
- media-analysis
- bias-analysis
- content-generation
- nlp
- business-intelligence
- startup-news
- funding-analysis
size_categories:
- 10K<n<100K
source_datasets:
- original
multilinguality:
- monolingual
pretty_name: TechCrunch News Articles Dataset
dataset_info:
  features:
  - name: title
    dtype: string
  - name: content
    dtype: string
  - name: publish_date
    dtype: timestamp[s]
  - name: url
    dtype: string
  - name: word_count
    dtype: int64
  - name: quality_score
    dtype: float64
  - name: content_hash
    dtype: string
  - name: bias_analysis
    dtype: string
  num_rows: 10265
  num_examples: 10265
  download_size: 54294941
  dataset_size: 27560611
configs:
- config_name: default
  data_files:
  - split: train
    path: "data/techcrunch.parquet"
viewer: true
---


# TechCrunch News Articles Dataset

## 📊 Dataset Overview

This dataset contains **10,265 high-quality news articles** scraped from TechCrunch, one of the leading technology news websites. The dataset includes comprehensive article content, metadata, and quality assessments suitable for various NLP tasks including text classification, sentiment analysis, summarization, and content generation.

## 🎯 Key Features

- **10,265 articles** with full text content
- **High-quality filtering** with quality scores (avg: 0.96)
- **Content cleaned** and optimized for ML applications
- **Rich metadata** including publish date, bias analysis, and quality metrics
- **Comprehensive bias analysis** for ethical AI development
- **Ready for NLP tasks** including classification, summarization, and generation
- **HuggingFace optimized** format for seamless integration

## 📈 Dataset Statistics

| Metric | Value |
|--------|-------|
| Total Articles | 10,265 |
| Average Content Length | 4,263 characters |
| Average Word Count | 686 words |
| Average Quality Score | 0.957 |
| Date Range | 2023-04-10 to 2025-07-09 |
| File Size (JSON) | 51.8 MB |
| File Size (Parquet) | 26.3 MB |

## 🏗️ Data Structure

The dataset contains the following columns:

- **`title`**: Article headline
- **`content`**: Full article text content (cleaned)
- **`publish_date`**: Publication timestamp

- **`url`**: Original article URL

- **`word_count`**: Number of words in content
- **`quality_score`**: Automated quality assessment (0-1)

- **`content_hash`**: MD5 hash for deduplication
- **`bias_analysis`**: JSON string containing comprehensive bias assessment



## 🔍 Quality Assurance



This dataset implements multiple quality control measures:



- **Content Filtering**: Minimum 16 words per article

- **Content Cleaning**: Navigation elements and website artifacts removed

- **Quality Scoring**: Automated assessment based on content length, structure, and readability

- **Deduplication**: Content hash-based duplicate removal

- **Bias Analysis**: Comprehensive bias detection and scoring

- **Manual Review**: Sample validation for quality assurance



### Quality Score Distribution



- **Minimum**: 0.600

- **Average**: 0.957  

- **Maximum**: 1.000



## 🚀 Getting Started



### Loading the Dataset



```python

# Using datasets library (recommended)

from datasets import load_dataset

dataset = load_dataset('abhilash88/techcrunch-articles')



# Using pandas for Parquet format

import pandas as pd

df = pd.read_parquet('path/to/techcrunch_articles.parquet')



# Access the training split

df = dataset['train'].to_pandas()

```



### Basic Analysis



```python

# Dataset overview

print(f"Total articles: {len(dataset['train']):,}")

print(f"Features: {dataset['train'].features}")



# Convert to pandas for analysis

df = dataset['train'].to_pandas()

print(f"Average word count: {df['word_count'].mean():.0f}")

print(f"Date range: {df['publish_date'].min()} to {df['publish_date'].max()}")



# Quality distribution

print(f"Quality score distribution:")

print(df['quality_score'].describe())

```



## 📜 Legal and Attribution



### Data Source

- **Original Source**: TechCrunch (techcrunch.com)

- **Scraping Method**: Respectful automated collection with rate limiting

- **Usage Rights**: Educational and research purposes

- **Attribution**: Please cite this dataset in academic work



### Recommended Citation



```bibtex

@dataset{techcrunch_articles_2025,

  title={TechCrunch News Articles Dataset},

  author={Abhilash Sahoo},

  year={2025},

  publisher={Hugging Face},

  url={https://huggingface.co/datasets/abhilash88/techcrunch-articles},

  note={10,265 high-quality technology news articles with bias analysis}

}

```



## 📞 Contact



- **Creator**: Abhilash Sahoo

- **Hugging Face**: [@abhilash88](https://huggingface.co/abhilash88)

- **Issues**: Please use the dataset discussion section



---



**🚀 Ready to build amazing NLP applications with high-quality technology news content!**