abhilash88 commited on
Commit
3854004
Β·
verified Β·
1 Parent(s): 1bb2113

Upload Dataset documentation

Browse files
Files changed (1) hide show
  1. README.md +218 -0
README.md ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ - text-generation
6
+ - question-answering
7
+ - summarization
8
+ language:
9
+ - en
10
+ tags:
11
+ - artificial-intelligence
12
+ - machine-learning
13
+ - deep-learning
14
+ - nlp
15
+ - computer-vision
16
+ - data-science
17
+ - technical-articles
18
+ - analytics-india-magazine
19
+ - ai-models
20
+ - programming
21
+ size_categories:
22
+ - 10K<n<100K
23
+ pretty_name: Analytics India Magazine Technical Articles Dataset
24
+
25
+ ---
26
+
27
+ # Analytics India Magazine Technical Articles Dataset πŸš€
28
+
29
+ ## Dataset Description
30
+
31
+ This comprehensive dataset contains **25,685 high-quality technical articles** from Analytics India Magazine, one of India's leading publications covering artificial intelligence, machine learning, data science, and emerging technologies.
32
+
33
+ ### ✨ Dataset Highlights
34
+
35
+ - **πŸ“š Comprehensive Coverage**: Latest AI models, frameworks, and tools
36
+ - **πŸ”¬ Technical Depth**: Extracted keywords and complexity scoring
37
+ - **🏭 Industry Focus**: Real-world applications and insights
38
+ - **⚑ Multiple Formats**: JSON and optimized Parquet files
39
+ - **🎯 ML Ready**: Pre-processed and split for training
40
+
41
+ ## Dataset Statistics
42
+
43
+ | Metric | Value |
44
+ |--------|-------|
45
+ | **Total Articles** | 25,685 |
46
+ | **Technical Articles** | 25,647 |
47
+ | **Average Word Count** | 724 words |
48
+ | **Language** | English |
49
+ | **Source** | [Analytics India Magazine](https://analyticsindiamag.com/) |
50
+
51
+ ## 🎯 Technologies Covered
52
+
53
+ ### AI & Machine Learning
54
+ - **Large Language Models**: GPT, Claude, Gemini, Llama
55
+ - **Frameworks**: TensorFlow, PyTorch, Hugging Face
56
+ - **MLOps Tools**: MLflow, Weights & Biases, Kubeflow
57
+ - **Agent Frameworks**: LangChain, AutoGen, CrewAI
58
+
59
+ ### Programming & Tools
60
+ - **Languages**: Python, JavaScript, SQL
61
+ - **Cloud Platforms**: AWS, Azure, GCP
62
+ - **Development**: APIs, Docker, Kubernetes
63
+
64
+ ## πŸ“Š Dataset Structure
65
+
66
+ ### Core Fields
67
+ - `title`: Article title
68
+ - `content`: Full article content (cleaned)
69
+ - `excerpt`: Article summary
70
+ - `author_name`: Article author
71
+ - `publish_date`: Publication date
72
+ - `url`: Original article URL
73
+
74
+ ### Technical Metadata
75
+ - `extracted_tech_keywords`: Technical terms found in content
76
+ - `technical_depth`: Number of technical keywords
77
+ - `complexity_score`: Technical complexity (0-4)
78
+ - `word_count`: Article length
79
+ - `categories`: Article categories
80
+ - `tags`: Content tags
81
+
82
+ ### Quality Indicators
83
+ - `has_code_examples`: Contains code snippets
84
+ - `has_tutorial_content`: Tutorial or how-to content
85
+ - `is_research_content`: Research or analysis
86
+ - `has_external_links`: Contains external references
87
+
88
+ ## πŸ“‹ Dataset Splits
89
+
90
+ | Split | Examples | Purpose |
91
+ |-------|----------|---------|
92
+ | **Train** | 19,221 | Model training |
93
+ | **Validation** | 2,136 | Hyperparameter tuning |
94
+ | **Test** | 3,769 | Final evaluation |
95
+
96
+ ## πŸš€ Quick Start
97
+
98
+ ### Using Hugging Face Datasets
99
+ ```python
100
+ from datasets import load_dataset
101
+
102
+ # Load the dataset
103
+ dataset = load_dataset("abhilash88/aim-technical-articles")
104
+
105
+ # Access splits
106
+ train_data = dataset["train"]
107
+ test_data = dataset["test"]
108
+
109
+ # Filter technical articles
110
+ technical_articles = dataset.filter(
111
+ lambda x: x["technical_depth"] >= 3
112
+ )
113
+ ```
114
+
115
+ ### Using Pandas
116
+ ```python
117
+ import pandas as pd
118
+
119
+ # Load from JSON
120
+ df = pd.read_json("aim_full_dataset.json")
121
+
122
+ # Load from Parquet (faster)
123
+ df = pd.read_parquet("aim_full_dataset.parquet")
124
+
125
+ # Convert list columns back from JSON strings
126
+ import json
127
+ df['categories'] = df['categories'].apply(json.loads)
128
+ df['extracted_tech_keywords'] = df['extracted_tech_keywords'].apply(json.loads)
129
+ ```
130
+
131
+ ## 🎯 Use Cases
132
+
133
+ ### Machine Learning
134
+ - **Text Classification**: Topic classification, difficulty assessment
135
+ - **Content Generation**: Article summarization, content creation
136
+ - **Recommendation Systems**: Technical content recommendations
137
+ - **Question Answering**: Technical QA systems
138
+
139
+ ### Business Intelligence
140
+ - **Trend Analysis**: Technology trend identification
141
+ - **Market Research**: Industry insights and analysis
142
+ - **Content Strategy**: Editorial planning and optimization
143
+
144
+ ### Education & Research
145
+ - **Curriculum Development**: AI/ML course creation
146
+ - **Knowledge Mining**: Technical concept extraction
147
+ - **Academic Research**: Technology adoption studies
148
+
149
+ ## πŸ“¦ Available Files
150
+
151
+ ### Standard Formats
152
+ - `aim_full_dataset.json` - Complete dataset
153
+ - `aim_full_dataset.csv` - CSV format
154
+ - `aim_full_dataset.parquet` - Optimized Parquet format
155
+
156
+ ### Specialized Subsets
157
+ - `aim_quality_dataset.json` - High-quality articles (300+ words)
158
+ - `aim_technical_dataset.json` - Highly technical content
159
+ - `aim_tutorial_dataset.json` - Educational content
160
+ - `aim_research_dataset.json` - Research and analysis articles
161
+
162
+ ### ML-Ready Splits
163
+ - `train.json` / `train.parquet` - Training data
164
+ - `test.json` / `test.parquet` - Test data
165
+ - `validation.json` / `validation.parquet` - Validation data (if available)
166
+
167
+ ## πŸ“ˆ Content Quality
168
+
169
+ - **Duplicate Removal**: All articles are unique by ID
170
+ - **Content Filtering**: Minimum word count requirements
171
+ - **Technical Validation**: Verified technical keywords
172
+ - **Clean Processing**: HTML removed, text normalized
173
+ - **Rich Metadata**: Comprehensive article classification
174
+
175
+ ## βš–οΈ Ethics & Usage
176
+
177
+ ### Licensing
178
+ - **License**: MIT License
179
+ - **Attribution**: Analytics India Magazine
180
+ - **Usage**: Educational and research purposes recommended
181
+
182
+ ### Content Guidelines
183
+ - All content is publicly available from the source
184
+ - Original URLs provided for attribution
185
+ - Respects robots.txt and rate limiting
186
+ - No personal or private information included
187
+
188
+ ## πŸ“š Citation
189
+
190
+ ```bibtex
191
+ @dataset{aim_technical_articles_2025,
192
+ title={Analytics India Magazine Technical Articles Dataset},
193
+ author={Abhilash Sahoo},
194
+ year={2025},
195
+ publisher={Hugging Face},
196
+ url={https://huggingface.co/datasets/abhilash88/aim-technical-articles}
197
+ }
198
+ ```
199
+
200
+ ## 🀝 Contact & Support
201
+
202
+ - **Dataset Creator**: Abhilash Sahoo
203
+ - **Hugging Face**: [@abhilash88](https://huggingface.co/abhilash88)
204
+ - **Source**: [Analytics India Magazine](https://analyticsindiamag.com/)
205
+
206
+ For questions, issues, or suggestions, please open a discussion on the Hugging Face dataset page.
207
+
208
+ ## πŸ”„ Updates & Versions
209
+
210
+ - **Version 2.0** (Current): Enhanced processing, technical depth scoring
211
+ - **Last Updated**: 2025-07-11
212
+ - **Processing Pipeline**: Optimized extraction with 2025 tech coverage
213
+
214
+ ---
215
+
216
+ **🎯 Ready to power your next AI project with comprehensive technical knowledge!**
217
+
218
+ *This dataset captures the cutting edge of AI and technology discourse, perfect for training models, research, and building intelligent applications.*