kaysss commited on
Commit
201c64e
·
verified ·
1 Parent(s): fb6fbc3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -3
README.md CHANGED
@@ -1,3 +1,78 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ - text-generation
6
+ - sentence-similarity
7
+ language:
8
+ - en
9
+ tags:
10
+ - code
11
+ pretty_name: gfg
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ ### Dataset Summary
17
+
18
+ The `geeksforgeeks` dataset is a curated collection of **9,438 educational articles** scraped from [GeeksforGeeks](https://www.geeksforgeeks.org), a widely-used platform for learning programming, computer science, and data science topics. Each entry includes metadata such as publication date, title, full text, topic, URL, and precomputed vector embeddings **(OpenAI's text-embedding-3-large)**.
19
+
20
+
21
+ ---
22
+
23
+ ### Dataset Structure
24
+
25
+ Each entry includes the following fields:
26
+
27
+ | Field Name | Type | Description |
28
+ |------------------|-------------|-----------------------------------------------------------------------------|
29
+ | `date` | string | Date the article was published (format: DD MMM, YYYY). |
30
+ | `text` | string | Full article content. |
31
+ | `topic` | string | Specific topic/category of the article. |
32
+ | `url` | string | Original URL of the article. |
33
+ | `root_topic` | string | Higher-level umbrella topic (e.g., "Data Science & ML"). |
34
+ | `heading` | string | Title of the article. |
35
+ | `related_topics` | list[string]| Additional relevant tags/topics. |
36
+ | `author` | string | Article author (It's just Geeks for Geeks). |
37
+ | `vector` | list[float] | Vector embedding (OpenAI's text-embedding-3-large) |
38
+
39
+ ---
40
+
41
+ ### Dataset Stats
42
+
43
+ - **9,438** unique articles
44
+ - **9,399** distinct vector embeddings (some rows may be missing embeddings)
45
+ - **63** root topic categories
46
+
47
+ This dataset is useful for:
48
+ - Text embedding search
49
+ - Educational content recommendation
50
+ - Topic modeling
51
+ - Sentence similarity training
52
+ - LLM evaluation datasets
53
+ - Knowledge graph construction
54
+ ---
55
+
56
+ ### Data Collection
57
+
58
+ Articles were collected using a hybrid scraping approach via **Selenium** and **BeautifulSoup**, capturing dynamic and static content across GeeksforGeeks’. Only publicly accessible, educational content was included.
59
+
60
+ ---
61
+
62
+
63
+ ### Intended Uses
64
+
65
+ This dataset is released without a specific target application. Researchers and developers may find it valuable for:
66
+ - Educational NLP tasks
67
+ - Search engine benchmarking
68
+ - Semantic similarity experiments
69
+ - Dataset distillation
70
+ - LLM performance evaluation
71
+
72
+ ---
73
+
74
+ ### License
75
+
76
+ No explicit license has been assigned to this dataset. Users are encouraged to **use it for educational and research purposes only** and **respect the rights of the original content owners (GeeksforGeeks.org)**.
77
+
78
+ ---